
  // 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 CaretAltDownIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="caret alt down icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M12.166 13.852a.25.25 0 0 1-.332 0L7.99 10.438A.25.25 0 0 1 8.158 10h7.684a.25.25 0 0 1 .167.437l-3.843 3.415z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  CaretAltDownIcon.displayName = "CaretAltDownIcon"
  CaretAltDownIcon.colors = Icon.colors
  CaretAltDownIcon.sizes = Icon.sizes

  export { CaretAltDownIcon }
  