import * as React from "react" import * as SeparatorPrimitive from "@radix-ui/react-separator" import { cn } from '../../lib/utils'; type SeparatorProps = React.ComponentPropsWithoutRef & { thickness?: string; }; const Separator = React.forwardRef< React.ElementRef, SeparatorProps >( ( { className, orientation = "horizontal", decorative = true, thickness = "1px", ...props }, ref ) => ( ) ) Separator.displayName = SeparatorPrimitive.Root.displayName export { Separator }