
  // 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 ArrowUpIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="arrow up icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M18.01 11.136a.5.5 0 0 1-.708 0L13 6.834V20.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V6.832l-4.304 4.304a.5.5 0 0 1-.707 0l-.708-.707a.5.5 0 0 1 0-.707L12 3.005l6.717 6.717a.5.5 0 0 1 0 .707l-.707.707z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  ArrowUpIcon.displayName = "ArrowUpIcon"
  ArrowUpIcon.colors = Icon.colors
  ArrowUpIcon.sizes = Icon.sizes

  export { ArrowUpIcon }
  