Parameters
| Parameter | Type | Description |
|---|---|---|
props | Omit<SVGProps<SVGSVGElement>, "viewBox"> | The props for the icon. |
Returns
Element
The Arrow Left icon.
function IconArrowsUpDown(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>
<IconArrowsUpDown />
Swap
</p>
// Icon with screen-reader accessible label only
<p>
<IconArrowsUpDown aria-label="Swap" />
</p>
Was this page helpful?