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