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