
    import * as React from 'react';

    import { IconType } from '../types';

    type SiMihonProps = React.ComponentPropsWithoutRef<'svg'> & {
      /**
       * The title provides an accessible short text description to the SVG
       */
      title?: string;
      /**
       * Hex color or color name or "default" to use the default hex for each icon
       */
      color?: string;
      /**
       * The size of the Icon.
       */
      size?: string | number;
    }

    const defaultColor = '#0058A0';

    const SiMihon: IconType = React.forwardRef<SVGSVGElement, SiMihonProps>(function SiMihon({title = 'Mihon', color = 'currentColor', size = 24, ...others }, ref) {
      if (color === 'default') {
        color = defaultColor;
      }

      return (
        <svg
          xmlns='http://www.w3.org/2000/svg'
          width={size}
          height={size}
          fill={color}
          viewBox='0 0 24 24'
          ref={ref}
          {...others}
        >
          <title>{title}</title>
          <path d='M3.2919 5.1024 3.1168 1.055c.527.1005 1.1562.1265 2.588.1265 1.7336 0 4.02-.1006 5.2022-.2514.5027-.0503.7038-.1265 1.0298-.3016l2.7146 2.3124c-.2514.3519-.326.5027-.6033 1.2065-.2254.553-1.2567 3.7443-1.659 5.1016 1.86.3762 2.8898.6535 4.2974 1.2308.1767-1.2308.201-1.8843.201-4.1221 0-.5773-.0243-.9049-.1005-1.432l4.3735.1509c-.1264.6032-.1508.8546-.1767 1.834-.1006 2.3627-.2011 3.493-.4524 5.2022 1.735.8805 1.735.8805 2.614 1.3573.4524.2514.553.3016.8546.4022l-1.4578 4.6994c-.7038-.6275-1.6833-1.307-3.1168-2.1113-1.2551 2.9902-3.3422 5.1778-6.5076 6.9113-1.0556-1.4075-1.86-2.2621-3.1427-3.266 1.86-.8805 2.7146-1.4334 3.6957-2.3626.9551-.9308 1.5827-1.8357 2.186-3.1914-1.6087-.7297-2.6384-1.0557-4.4238-1.4335-1.0298 3.0665-1.8584 5.027-2.5881 6.2076-.9795 1.5827-2.3125 2.413-3.8449 2.413-1.1805 0-2.387-.5287-3.2676-1.432C.527 19.2755 0 17.8436 0 16.1847c0-2.4632 1.1805-4.599 3.2416-5.9319 1.333-.853 2.739-1.2308 4.9768-1.3557.4524-1.4838.8286-2.7648 1.1805-4.1967-1.106.1005-2.4875.1751-4.1724.2513-.9033.0243-1.2049.0503-1.9346.1508Zm3.8205 7.6395c-1.1821.201-1.886.5773-2.5135 1.3816-.4767.553-.7038 1.2065-.7038 1.9103 0 .7784.3779 1.3573.8546 1.3573.5773 0 1.2308-1.307 2.3627-4.6492z' />
        </svg>
      );
    });

    export { SiMihon as default, defaultColor };
  