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