export interface SeparatorProps { orientation?: "horizontal" | "vertical"; dense?: boolean; } export function Separator({ orientation = "horizontal", dense = false, }: SeparatorProps) { return (
); }