import * as SeparatorPrimitive from '@radix-ui/react-separator'; import { classNames } from '~/utils/classNames'; interface SeparatorProps { className?: string; orientation?: 'horizontal' | 'vertical'; } export const Separator = ({ className, orientation = 'horizontal' }: SeparatorProps) => { return ( ); }; export default Separator;