
  // 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 ArrowLeftIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="arrow left icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M11.136 5.99a.5.5 0 0 1 0 .708L6.834 11H20.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H6.832l4.304 4.305a.5.5 0 0 1 0 .707l-.707.707a.5.5 0 0 1-.707 0L3.005 12l6.717-6.717a.5.5 0 0 1 .707 0l.707.707z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  ArrowLeftIcon.displayName = "ArrowLeftIcon"
  ArrowLeftIcon.colors = Icon.colors
  ArrowLeftIcon.sizes = Icon.sizes

  export { ArrowLeftIcon }
  