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