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