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

Parameters

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

Returns

Element The chat bubble icon.

Example

// Icon is correctly from screen readers
<p>
  <IconShield />
  Secure your account
</p>

// Icon with screen-reader accessible label only
<p>
  <IconShield aria-label="Secure your account" />
</p>