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

Parameters

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

Returns

Element The chevron down icon.

Example

// Icon is correctly hidden from screen readers
<p>
  <IconChevronDown />
  Expand
</p>

// Icon with screen-reader accessible label only
<p>
  <IconChevronDown aria-label="Expand" />
</p>