mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 15:44:22 +00:00
23 lines
685 B
TypeScript
23 lines
685 B
TypeScript
import { Separator } from "@/styles/base-nova/ui/separator"
|
|
|
|
export function SeparatorList() {
|
|
return (
|
|
<div className="flex w-full max-w-sm flex-col gap-2 text-sm">
|
|
<dl className="flex items-center justify-between">
|
|
<dt>Item 1</dt>
|
|
<dd className="text-muted-foreground">Value 1</dd>
|
|
</dl>
|
|
<Separator />
|
|
<dl className="flex items-center justify-between">
|
|
<dt>Item 2</dt>
|
|
<dd className="text-muted-foreground">Value 2</dd>
|
|
</dl>
|
|
<Separator />
|
|
<dl className="flex items-center justify-between">
|
|
<dt>Item 3</dt>
|
|
<dd className="text-muted-foreground">Value 3</dd>
|
|
</dl>
|
|
</div>
|
|
)
|
|
}
|