
    import * as React from 'react';

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

    type SiCorebootProps = 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 = '#000000';

    const SiCoreboot: IconType = React.forwardRef<SVGSVGElement, SiCorebootProps>(function SiCoreboot({title = 'Coreboot', 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='m 7.7405,2.4142 c 0,0 0.7829,0.635 2.232,1.785 0.1015,0.084 0.1285,0.124 0.1085,0.158 -0.03,0.052 -0.1689,-0.01 -0.1689,-0.01 -1.12,-0.426 -2.385,-0.668 -3.2403,-0.612 -0.2848,0.018 -0.3753,0.064 -0.4156,0.145 -0.019,0.038 -0.022,0.14 0.074,0.267 0.3743,0.495 1.276,1.465 2.7764,2.386 1.5414,0.946 4.2644,2.287 6.6714,3.359 1.079,0.4788 1.855,1.1198 1.609,1.8588 -0.277,0.823 -1.343,0.936 -2.194,0.595 C 14.5,12.069 13.854,11.202 12.804,10.038 10.984,8.0222 10.121,7.2182 7.101,7.8322 5.5875,8.1402 4.1585,9.3792 3.0154,10.687 c -0.7618,0.961 -1.1281,1.761 -1.2378,2.726 0,0 -0.2093,-0.382 0,-1.36 0.3612,-1.71 -0.4257,-2.4438 -0.4257,-2.4438 -3.983,5.6488 1.6826,10.7558 6.05,5.8648 0,0 -1.429,3.173 -1.3092,4.162 -0.6098,0.2 -0.8805,0.76 0.031,1.437 0.9962,0.739 3.4456,0.675 5.3773,-0.155 3.604,-1.55 5.852,-4.437 6.966,-6.271 0.26,-0.429 0.536,-0.637 0.726,-0.706 0.289,-0.104 2.278,0.02 3.209,-0.513 a 0.97613,0.97 0 0 0 0.511,0.08 C 23.587,13.458 24,12.65 24,12.65 c 0,0 -0.852,-1.625 -2.892,-2.8368 -1.922,-1.142 -2.482,-0.745 -4.207,-2.12 -2.694,-2.148 -5.955,-4.59 -9.1574,-5.28 m 1.8164,6.77 c 1.399,-0.064 2.491,0.387 2.671,1.2578 0.285,1.39 -2.684,4.89 -2.4888,4.946 0.018,0 0.06,-0.02 0.1228,-0.06 0.975,-1.276 2.821,-3.234 3.512,-3.159 1.241,0.136 1.67,1.78 1.67,1.78 l -4.136,3.731 a 8.0505,8 0 0 0 2.723,0.244 c -1.848,1.316 -3.8506,1.683 -5.0893,1.138 1.9593,-1.42 5.5643,-4.973 5.5643,-4.973 0,0 -0.6,-1.511 -1.682,-0.586 -1.046,0.895 -2.013,2.013 -2.395,2.37 -0.2375,0.22 -0.638,0.637 -0.8755,0.457 C 8.8664,16.115 9.7248,14.184 10.382,12.584 11.277,10.402 10.247,9.7202 9.0405,9.7812 7.9597,9.8352 6.4845,10.49 5.4268,11.137 5.1269,11.32 4.9237,11.433 4.8472,11.363 c -0.066,-0.06 0,-0.178 0.2002,-0.344 C 6.4522,9.8292 8.1589,9.2492 9.5577,9.1842' />
        </svg>
      );
    });

    export { SiCoreboot as default, defaultColor };
  