export interface RuleProps { tone?: 'hairline' | 'strong'; className?: string; } export function Rule({ tone = 'hairline', className }: RuleProps) { return (
); }