
  // 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 UploadIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="upload icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="M13 6.414V15.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V6.414l-1.94 1.94a.5.5 0 0 1-.707 0l-.706-.707a.5.5 0 0 1 0-.708l4-4a.5.5 0 0 1 .707 0l4 4a.5.5 0 0 1 0 .708l-.707.706a.5.5 0 0 1-.707 0z"/><path d="M3 15.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5V19h14v-3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5V20a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  UploadIcon.displayName = "UploadIcon"
  UploadIcon.colors = Icon.colors
  UploadIcon.sizes = Icon.sizes

  export { UploadIcon }
  