Parameters
| Parameter | Type | Description |
|---|---|---|
props | Omit<SVGProps<SVGSVGElement>, "viewBox"> | The props for the icon. |
Returns
Element
The chat bubble icon.
function IconSmartPhone(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>
<IconSmartPhone />
Enter code from your authenticator app
</p>
// Icon with screen-reader accessible label only
<p>
<IconSmartPhone aria-label="Enter code from your authenticator app" />
</p>
Was this page helpful?