import { cn } from '@/lib/utils' import * as SeparatorPrimitive from '@radix-ui/react-separator' import * as React from 'react' const Separator = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >( ( { className, orientation = 'horizontal', decorative = true, ...props }, ref, ) => ( ), ) Separator.displayName = SeparatorPrimitive.Root.displayName export { Separator }