Skip to content

Files

Latest commit

 

History

History
23 lines (20 loc) · 877 Bytes

Icon.md

File metadata and controls

23 lines (20 loc) · 877 Bytes

Icon

interface Icon extends DOMProps, StyleProps {
  'aria-label'?: string,
  children: ReactElement,
  size?: 'XXS' | 'XS' | 'S' | 'M' | 'L' | 'XL' | 'XXL'
}

interface UIIcon extends DOMProps, StyleProps {
  'aria-label'?: string,
  children: ReactElement
}