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

Parameters

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

Returns

Element The Exclamation Circle icon.

Example

// Icon is correctly from screen readers
<p>
  <IconExclamationCircle />
  Warning!
</p>

// Icon with screen-reader accessible label only
<p>
  <IconExclamationCircle aria-label="Warning" />
</p>
I