utrecht icon indicating copy to clipboard operation
utrecht copied to clipboard

type="address" for paragraph component to render <address> instead of <p>

Open Robbert opened this issue 1 year ago • 0 comments

Sometimes a paragraph contains address information, then the <address> HTML element would be more appropriate than <p>.

Could be an opportunity to implement an alternative to the existing lead and small boolean properties:

interface ParagraphProps {
  type?: string | 'address' | 'lead' | 'small';
}

Robbert avatar Nov 18 '23 10:11 Robbert