'use client'; import * as React from 'react'; import * as SeparatorPrimitive from 'radix-ui/separator'; import { cn } from '@/lib/utils'; export type SeparatorProps = React.ComponentProps; /** * Visual divider. * * Decorative by default, so it is hidden from screen readers. Pass * `decorative={false}` only when the rule genuinely separates two distinct * sections that a non-visual user needs to know about. */ function Separator({ className, orientation = 'horizontal', decorative = true, ...props }: SeparatorProps) { return ( ); } export { Separator };