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