import * as SeparatorPrimitive from '@radix-ui/react-separator'; import { cn } from '@/lib/utils'; function Separator({ className, orientation = "horizontal", decorative = true, ...props }) { return ( ); } export { Separator };