import { Separator as SeparatorPrimitive } from "radix-ui"; import type * as React from "react"; import { cn } from "../lib/cn"; function Separator({ className, orientation = "horizontal", decorative = true, ...props }: React.ComponentProps) { return ( ); } export { Separator };