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