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