
  // 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 SortAscIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="sort ascending icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="M11.646 5.354 7.354 9.646a.5.5 0 0 0 0 .707l.703.704a.5.5 0 0 0 .707 0L11 8.827V17.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V8.827l2.236 2.23a.5.5 0 0 0 .707 0l.704-.704a.5.5 0 0 0 0-.707l-4.293-4.292a.5.5 0 0 0-.707 0z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  SortAscIcon.displayName = "SortAscIcon"
  SortAscIcon.colors = Icon.colors
  SortAscIcon.sizes = Icon.sizes

  export { SortAscIcon }
  