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