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