mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 16:14:13 +00:00
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import Image from "next/image"
|
|
import { ScrollArea, ScrollBar } from "@/examples/base/ui/scroll-area"
|
|
|
|
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 function ScrollAreaHorizontal() {
|
|
return (
|
|
<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>
|
|
)
|
|
}
|