Files
shadcn-ui/apps/v4/examples/base/separator-menu.tsx
2026-01-19 18:04:17 +04:00

27 lines
917 B
TypeScript

import { Separator } from "@/examples/base/ui/separator"
export function SeparatorMenu() {
return (
<div className="flex items-center gap-2 text-sm md:gap-4">
<div className="flex flex-col gap-1">
<span className="font-medium">Settings</span>
<span className="text-muted-foreground text-xs">
Manage preferences
</span>
</div>
<Separator orientation="vertical" />
<div className="flex flex-col gap-1">
<span className="font-medium">Account</span>
<span className="text-muted-foreground text-xs">
Profile & security
</span>
</div>
<Separator orientation="vertical" className="hidden md:block" />
<div className="hidden flex-col gap-1 md:flex">
<span className="font-medium">Help</span>
<span className="text-muted-foreground text-xs">Support & docs</span>
</div>
</div>
)
}