
  // 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 ThemeIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="theme icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="M12 16a4 4 0 0 0 0-8z"/><path clipRule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zm0-2a8 8 0 1 0 0-16v4a4 4 0 1 0 0 8z" fillRule="evenodd"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  ThemeIcon.displayName = "ThemeIcon"
  ThemeIcon.colors = Icon.colors
  ThemeIcon.sizes = Icon.sizes

  export { ThemeIcon }
  