
    import * as React from 'react';

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

    type SiLuantiProps = 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 = '#53AC56';

    const SiLuanti: IconType = React.forwardRef<SVGSVGElement, SiLuantiProps>(function SiLuanti({title = 'Luanti', 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='M6.11 0 1.76 2.516v4.478L3.638 8.08.073 10.137v6.97L12.013 24l11.773-6.96.14-.083v-6.672l-3.323-1.92V6.148l-1.061-.613-1.156.774v.775l-1.11-.64v-.948c-.002-.11-.053-.182-.138-.24l-4.166-2.404a.28.28 0 0 0-.28 0c-.873.506-1.747 1.01-2.62 1.515v-2.08Zm0 .64L9.52 2.606v4.297L6.11 8.867 2.312 6.676V2.834Zm6.721 2.77 3.613 2.086-4.382 2.531a.277.277 0 0 0 0 .48l3.27 1.891-7.2 4.07-7.227-4.171L4.19 8.398l.684.397v2.217l1.236.715 1.239-.715V8.795l2.722-1.572V5.008Zm3.89 2.569v.466l-3.56 2.059-.406-.234zm2.84.208.487.282v4.33l-.496.287-.614-.354V6.605ZM17 6.926l1.387.8v3.327l1.166.674 1.05-.61V9.006l2.77 1.6v.49L19.548 13.3l-3.381-1.951v-.944a.28.28 0 0 0-.139-.246l-2.314-1.338ZM5.429 9.113l.681.397.686-.397v1.576l-.686.397-.681-.397Zm-4.8 1.662 7.362 4.252c.086.05.19.051.278.002l7.343-4.154v.473l-7.76 4.386v1.43l.864.498v1.11l3.297 1.902 6.925-4.08v-1.19l1.11-.64v-1.112c1.108-.64 2.215-1.278 3.324-1.916v1.024l-2.217 1.277v.557l-1.11.638v1.11l-1.107.64v2.28l-6.93 4.095-3.599-2.08V20.17l-1.06-.611v-1.11c-.385-.225-.773-.445-1.159-.67v-2.215l-3.324-1.92v1.11l-1.107-.64v3.325l-1.131-.652Zm15.26 1.053c1.21.697 2.402 1.392 3.604 2.082v.533l-1.107.641v1.191l-6.375 3.758-2.742-1.582v-1.11l-.86-.495v-.787zm7.483 1.57v3.24l-3.879 2.24v-1.577l1.11-.64v-1.108l1.107-.64v-.556zM3.421 14.604l2.217 1.28v1.577l-1.446-.834-1.879 1.086v-2.64l1.108.64zm1.32 1.392-.138.24.119.069.138-.24zm.36.207-.14.24.12.07.139-.24zm-.909 1.065 1.446.834 1.11.638v1.11l1.106.642v.469l-5.027-2.904Z' />
        </svg>
      );
    });

    export { SiLuanti as default, defaultColor };
  