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