mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
* feat: add base and radix docs * feat: transform code for display * fix * fix * fix * fix * fix * chore: remove claude files * fix * fix * fix * chore: run format:write * fix * feat: add more examples * fix * feat: add aspect-ratio * feat: add avatar * feat: add badge * feat: add breadcrumb * fix * feat: add button * fix * fix * fix * feat: add calendar and card * feat: add carousel * fix: chart * feat: add checkbox * feat: add collapsible * feat: add combobox * feat: add command * feat: add context menu * feat: add data-table dialog and drawer * feat: dropdown-menu * feat: add date-picker * feat: add empty * feat: add field and hover-card * fix: input * feat: add input * feat: add input-group * feat: add input-otp * feat: add item * feat: add kbd and label * feat: add menubar * feat: add native-select * feat: add more components * feat: more components * feat: more components * feat: add skeleton, slider and sonner * feat: add spinner and switch * feat: add more components * fix: tabs * fix: tabs * feat: add docs for sidebar * fix * fix * fi * docs: update * fix: create page * fix * fix * chore: add changelog * fix
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import * as React from "react"
|
|
import Image from "next/image"
|
|
import { ScrollArea, ScrollBar } from "@/examples/base/ui/scroll-area"
|
|
|
|
export interface Artwork {
|
|
artist: string
|
|
art: string
|
|
}
|
|
|
|
export const works: Artwork[] = [
|
|
{
|
|
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 Malyavko",
|
|
art: "https://images.unsplash.com/photo-1494337480532-3725c85fd2ab?auto=format&fit=crop&w=300&q=80",
|
|
},
|
|
]
|
|
|
|
export function ScrollAreaHorizontalDemo() {
|
|
return (
|
|
<ScrollArea className="w-96 rounded-md border whitespace-nowrap">
|
|
<div className="flex w-max space-x-4 p-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>
|
|
)
|
|
}
|