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