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