import { cn } from '@/lib/utils'; export interface DividerProps extends React.HTMLAttributes { /** Use border-strong variant for headers/section separators. */ strong?: boolean; /** Orientation. Default horizontal. */ orientation?: 'horizontal' | 'vertical'; } export function Divider({ strong = false, orientation = 'horizontal', className, ...props }: DividerProps) { return (
); }