
  // This file is generated by running the "icons" bin script.
  // Manual changes might be lost - proceed with caution!
  
  import React, { forwardRef } from 'react'
  import Icon, { IconComponent } from '..'
  
  
  const CaretDownIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="caret down icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="m12 15.41-5-5L8.41 9 12 12.58 15.59 9 17 10.41"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  CaretDownIcon.displayName = "CaretDownIcon"
  CaretDownIcon.colors = Icon.colors
  CaretDownIcon.sizes = Icon.sizes

  export { CaretDownIcon }
  