import { Separator as SeparatorPrimitive } from "@base-ui/react/separator"; import type React from "react"; import { cn } from "@/lib/utils"; export function Separator({ className, orientation = "horizontal", ...props }: SeparatorPrimitive.Props): React.ReactElement { return ( ); } export { SeparatorPrimitive };