
  // 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 ArrowRightIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="arrow right icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M12.864 18.01a.5.5 0 0 1 0-.708L17.166 13H3.5a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h13.668l-4.304-4.304a.5.5 0 0 1 0-.708l.707-.707a.5.5 0 0 1 .707 0L20.995 12l-6.717 6.717a.5.5 0 0 1-.707 0l-.707-.707z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  ArrowRightIcon.displayName = "ArrowRightIcon"
  ArrowRightIcon.colors = Icon.colors
  ArrowRightIcon.sizes = Icon.sizes

  export { ArrowRightIcon }
  