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