mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 16:14:13 +00:00
24 lines
692 B
TypeScript
24 lines
692 B
TypeScript
import * as React from "react"
|
|
import { ScrollArea } from "@/examples/base/ui/scroll-area"
|
|
import { Separator } from "@/examples/base/ui/separator"
|
|
|
|
const tags = Array.from({ length: 50 }).map(
|
|
(_, i, a) => `v1.2.0-beta.${a.length - i}`
|
|
)
|
|
|
|
export function ScrollAreaVertical() {
|
|
return (
|
|
<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>
|
|
)
|
|
}
|