Parameters
| Parameter | Type | Description |
|---|---|---|
props | Omit<SVGProps<SVGSVGElement>, "viewBox"> | The props for the icon. |
Returns
Element
The Envelope icon.
function IconEnvelope(props: Omit<SVGProps<SVGSVGElement>, "viewBox">): Element;
| Parameter | Type | Description |
|---|---|---|
props | Omit<SVGProps<SVGSVGElement>, "viewBox"> | The props for the icon. |
Element
The Envelope icon.
// Icon is correctly from screen readers
<p>
<IconEnvelope />
Email me a code
</p>
// Icon with screen-reader accessible label only
<p>
<IconEnvelope aria-label="Email me a code" />
</p>
Was this page helpful?