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

Parameters

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

Returns

Element The Arrow Left icon.

Example

// Icon is correctly hidden from screen readers
<p>
  <IconArrowLeft />
  Back
</p>

// Icon with screen-reader accessible label only
<p>
  <IconArrowLeft aria-label="Back" />
</p>