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