'use client'; import * as React from 'react'; import { cn } from '@/lib/utils/cn'; const Separator = React.forwardRef< HTMLDivElement, React.HTMLAttributes & { orientation?: 'horizontal' | 'vertical'; decorative?: boolean; } >( ( { className, orientation = 'horizontal', decorative = true, ...props }, ref ) => (
) ); Separator.displayName = 'Separator'; export { Separator };