
  // 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 CaretLeftIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="caret left icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="m8 12 5-5 1.41 1.41L10.83 12l3.58 3.59L13 17"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  CaretLeftIcon.displayName = "CaretLeftIcon"
  CaretLeftIcon.colors = Icon.colors
  CaretLeftIcon.sizes = Icon.sizes

  export { CaretLeftIcon }
  