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