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