Skip to main content
function IconPhone(props: Omit<SVGProps<SVGSVGElement>, "viewBox">): Element;
Phone 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>
  <IconPhone />
  Text me a code
</p>

// Icon with screen-reader accessible label only
<p>
  <IconPhone aria-label="Text me a code" />
</p>