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