
  // 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 CaretUpIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="caret up icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="m12 9-5 5 1.41 1.41L12 11.83l3.59 3.58L17 14"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  CaretUpIcon.displayName = "CaretUpIcon"
  CaretUpIcon.colors = Icon.colors
  CaretUpIcon.sizes = Icon.sizes

  export { CaretUpIcon }
  