mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 13:15:45 +00:00
27 lines
917 B
TypeScript
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-xs text-muted-foreground">
|
|
Manage preferences
|
|
</span>
|
|
</div>
|
|
<Separator orientation="vertical" />
|
|
<div className="flex flex-col gap-1">
|
|
<span className="font-medium">Account</span>
|
|
<span className="text-xs text-muted-foreground">
|
|
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-xs text-muted-foreground">Support & docs</span>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|