'use client'; import * as React from 'react'; import * as SeparatorPrimitive from '@radix-ui/react-separator'; import { cn } from '../lib/utils'; const Separator: React.FC< React.ComponentPropsWithRef > = ({ className, orientation = 'horizontal', decorative = true, ...props }) => ( ); Separator.displayName = SeparatorPrimitive.Root.displayName; export { Separator };