
  // 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 MoveIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="move icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 2c-4.411 0-8 3.589-8 8s3.589 8 8 8 8-3.589 8-8-3.589-8-8-8zm2.237 8.06.939.94H11.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3.676l-.94.939a.5.5 0 0 0 0 .707l.708.707a.5.5 0 0 0 .707 0l3-3a.5.5 0 0 0 0-.707l-3-3a.5.5 0 0 0-.708 0l-.707.707a.5.5 0 0 0 0 .707zM8.828 11l.94.939a.5.5 0 0 1 0 .707l-.707.707a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.707l3-3a.5.5 0 0 1 .707 0l.707.707a.5.5 0 0 1 0 .708L8.828 9H12.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H8.828z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  MoveIcon.displayName = "MoveIcon"
  MoveIcon.colors = Icon.colors
  MoveIcon.sizes = Icon.sizes

  export { MoveIcon }
  