import * as React from 'react' import { cn } from '@/lib/utils' function Separator({ className, orientation = 'horizontal', decorative = true, ...props }: React.HTMLAttributes & { orientation?: 'horizontal' | 'vertical' decorative?: boolean }) { return (
) } export { Separator }