import * as React from "react" import * as SeparatorPrimitive from "@radix-ui/react-separator" import { cn } from "../libs/utils" type SeparatorProps = React.ComponentPropsWithoutRef const Separator: React.ForwardRefExoticComponent>> = React.forwardRef< React.ElementRef, SeparatorProps >( ( { className, orientation = "horizontal", decorative = true, ...props }, ref ) => ( ) ) Separator.displayName = SeparatorPrimitive.Root.displayName export { Separator }