import classNames from 'classnames'; import type { ReactNode } from 'react'; interface Props { orientation?: 'horizontal' | 'vertical'; variant?: 'primary' | 'secondary'; className?: string; children?: ReactNode; } export function Separator({ className, variant = 'primary', orientation = 'horizontal', children, }: Props) { return (
{children &&
{children}
}
); }