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