// shadcn Separator — horizontal / vertical rule. import type { HTMLAttributes, ReactNode } from 'react' import { cn } from '../cn' interface SeparatorProps extends HTMLAttributes { readonly orientation?: 'horizontal' | 'vertical' } export const Separator = ({ className, orientation = 'horizontal', ...props }: SeparatorProps): ReactNode => (
)