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