
  // 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 SortIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="sort icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="M11.646 5.354a.5.5 0 0 1 .708 0l4.292 4.292a.5.5 0 0 1 0 .708l-.703.703a.5.5 0 0 1-.707 0L12 7.83l-3.236 3.227a.5.5 0 0 1-.707 0l-.703-.703a.5.5 0 0 1 0-.708l4.292-4.292zm0 13.292-4.292-4.292a.5.5 0 0 1 0-.708l.703-.703a.5.5 0 0 1 .707 0L12 16.17l3.236-3.227a.5.5 0 0 1 .707 0l.703.703a.5.5 0 0 1 0 .708l-4.292 4.292a.5.5 0 0 1-.708 0z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  SortIcon.displayName = "SortIcon"
  SortIcon.colors = Icon.colors
  SortIcon.sizes = Icon.sizes

  export { SortIcon }
  