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