
  // 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 CaretAltRightIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="caret alt right icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M14.852 12.166a.25.25 0 0 0 0-.332l-3.415-3.842a.25.25 0 0 0-.437.166v7.685c0 .23.284.337.437.166l3.415-3.843z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  CaretAltRightIcon.displayName = "CaretAltRightIcon"
  CaretAltRightIcon.colors = Icon.colors
  CaretAltRightIcon.sizes = Icon.sizes

  export { CaretAltRightIcon }
  