
  // 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 CaretAltUpIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="caret alt up icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M12.166 10.148a.25.25 0 0 0-.332 0l-3.842 3.415a.25.25 0 0 0 .166.437h7.684a.25.25 0 0 0 .167-.437l-3.843-3.415z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  CaretAltUpIcon.displayName = "CaretAltUpIcon"
  CaretAltUpIcon.colors = Icon.colors
  CaretAltUpIcon.sizes = Icon.sizes

  export { CaretAltUpIcon }
  