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