
  // 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 IqIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="iq icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M22 12v10H12C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10zm-10 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  IqIcon.displayName = "IqIcon"
  IqIcon.colors = Icon.colors
  IqIcon.sizes = Icon.sizes

  export { IqIcon }
  