import { cn } from "@/lib/utils" interface SeparatorProps { orientation?: "horizontal" | "vertical" className?: string } const Separator = ({ orientation = "horizontal", className }: SeparatorProps) => { return (