"use client" import * as React from "react" import { Separator as SeparatorPrimitive } from "@base-ui/react/separator" import { cn } from "@/lib/utils/client" const Separator = React.forwardRef< HTMLDivElement, React.ComponentPropsWithoutRef & { orientation?: "horizontal" | "vertical" decorative?: boolean } >( ( { className, orientation = "horizontal", decorative: _decorative, ...props }, ref ) => ( ) ) Separator.displayName = "Separator" export { Separator }