import * as React from "react"; import { cn } from "@/lib/utils"; interface SeparatorProps extends React.HTMLAttributes { orientation?: "horizontal" | "vertical"; decorative?: boolean; } const Separator = React.forwardRef( ({ className, orientation = "horizontal", decorative = true, ...props }, ref) => (
) ); Separator.displayName = "Separator"; export { Separator };