import * as SeparatorPrimitive from '@rn-primitives/separator'; import * as React from 'react'; import { cn } from '../../lib/utils'; function Separator({ className, orientation = 'horizontal', decorative = true, ...props }: SeparatorPrimitive.RootProps & { ref?: React.RefObject; }) { return ( ); } export { Separator };