
  // 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 WarningTriangleIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="warning triangle icon" viewBox="0 0 22 19"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="M12 12.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5zm0 3a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5z"/><path clipRule="evenodd" d="M.867 19a.5.5 0 0 1-.433-.75L10.567.747a.5.5 0 0 1 .866 0L21.566 18.25a.5.5 0 0 1-.433.75zm2.602-2L11 3.992 18.531 17H3.47z" fillRule="evenodd"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  WarningTriangleIcon.displayName = "WarningTriangleIcon"
  WarningTriangleIcon.colors = Icon.colors
  WarningTriangleIcon.sizes = Icon.sizes

  export { WarningTriangleIcon }
  