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