mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 15:14:12 +00:00
* feat: init * fix * fix * fix * feat * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: implement icons * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: update init command * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: dialog * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add registry:base item type * feat: rename frame to canva * fix * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fi * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add all colors * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add outfit font * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import * as React from "react"
|
|
import Image from "next/image"
|
|
|
|
import {
|
|
Example,
|
|
ExampleWrapper,
|
|
} from "@/registry/bases/base/components/example"
|
|
import { ScrollArea, ScrollBar } from "@/registry/bases/base/ui/scroll-area"
|
|
import { Separator } from "@/registry/bases/base/ui/separator"
|
|
|
|
const tags = Array.from({ length: 50 }).map(
|
|
(_, i, a) => `v1.2.0-beta.${a.length - i}`
|
|
)
|
|
|
|
const works = [
|
|
{
|
|
artist: "Ornella Binni",
|
|
art: "https://images.unsplash.com/photo-1465869185982-5a1a7522cbcb?auto=format&fit=crop&w=300&q=80",
|
|
},
|
|
{
|
|
artist: "Tom Byrom",
|
|
art: "https://images.unsplash.com/photo-1548516173-3cabfa4607e9?auto=format&fit=crop&w=300&q=80",
|
|
},
|
|
{
|
|
artist: "Vladimir Malyav",
|
|
art: "https://images.unsplash.com/photo-1494337480532-3725c85fd2ab?auto=format&fit=crop&w=300&q=80",
|
|
},
|
|
] as const
|
|
|
|
export default function ScrollAreaExample() {
|
|
return (
|
|
<ExampleWrapper>
|
|
<ScrollAreaVertical />
|
|
<ScrollAreaHorizontal />
|
|
</ExampleWrapper>
|
|
)
|
|
}
|
|
|
|
function ScrollAreaVertical() {
|
|
return (
|
|
<Example title="Vertical">
|
|
<ScrollArea className="mx-auto h-72 w-48 rounded-md border">
|
|
<div className="p-4">
|
|
<h4 className="mb-4 text-sm leading-none font-medium">Tags</h4>
|
|
{tags.map((tag) => (
|
|
<React.Fragment key={tag}>
|
|
<div className="text-sm">{tag}</div>
|
|
<Separator className="my-2" />
|
|
</React.Fragment>
|
|
))}
|
|
</div>
|
|
</ScrollArea>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function ScrollAreaHorizontal() {
|
|
return (
|
|
<Example title="Horizontal">
|
|
<ScrollArea className="mx-auto w-full max-w-96 rounded-md border p-4">
|
|
<div className="flex gap-4">
|
|
{works.map((artwork) => (
|
|
<figure key={artwork.artist} className="shrink-0">
|
|
<div className="overflow-hidden rounded-md">
|
|
<Image
|
|
src={artwork.art}
|
|
alt={`Photo by ${artwork.artist}`}
|
|
className="aspect-[3/4] h-fit w-fit object-cover"
|
|
width={300}
|
|
height={400}
|
|
/>
|
|
</div>
|
|
<figcaption className="text-muted-foreground pt-2 text-xs">
|
|
Photo by{" "}
|
|
<span className="text-foreground font-semibold">
|
|
{artwork.artist}
|
|
</span>
|
|
</figcaption>
|
|
</figure>
|
|
))}
|
|
</div>
|
|
<ScrollBar orientation="horizontal" />
|
|
</ScrollArea>
|
|
</Example>
|
|
)
|
|
}
|