mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
20 lines
574 B
TypeScript
20 lines
574 B
TypeScript
import { Separator } from "@/styles/base-nova/ui/separator"
|
|
|
|
export default function SeparatorDemo() {
|
|
return (
|
|
<div className="flex max-w-sm flex-col gap-4 text-sm">
|
|
<div className="flex flex-col gap-1.5">
|
|
<div className="leading-none font-medium">shadcn/ui</div>
|
|
<div className="text-muted-foreground">
|
|
The Foundation for your Design System
|
|
</div>
|
|
</div>
|
|
<Separator />
|
|
<div>
|
|
A set of beautifully designed components that you can customize, extend,
|
|
and build on.
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|