Skip to main content
function IconCheck(props: Omit<SVGProps<SVGSVGElement>, "viewBox">): Element;
Check Circle icon component.

Parameters

ParameterTypeDescription
propsOmit<SVGProps<SVGSVGElement>, "viewBox">The props for the icon.

Returns

Element The Check Circle icon.

Example

// Icon is correctly from screen readers
<p>
  <IconCheck />
  Success!
</p>

// Icon with screen-reader accessible label only
<p>
  <IconCheck aria-label="Success" />
</p>