
    import * as React from 'react';

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

    type SiPangolinProps = 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 = '#F36118';

    const SiPangolin: IconType = React.forwardRef<SVGSVGElement, SiPangolinProps>(function SiPangolin({title = 'Pangolin', 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='M19.729 7.988a.852.852 0 1 1 0 1.705.85.85 0 0 1 0-1.701m3.345 3.557c-.087 2.835-2.249 6.577-5.178 7.537-3.425 1.123-6.022-.563-6.846-2.54-.642-1.542-.159-3.383 1.04-4.162 1.013-.661 2.895-.831 4.479.208-.556-1.459-2.053-2.419-3.38-2.706a5.67 5.67 0 0 0-3.681.54c1.263-1.398 4.218-2.748 7.431-1.043 2.155 1.145 3.081 2.748 3.996 4.914C23.33 10.63 21.66 6.219 18.75 3.6A14.44 14.44 0 0 0 8.71.009c1.013.627 2.2 1.52 3.3 2.562-4.853-.6-8.856.503-11.328 3.867a21.6 21.6 0 0 1 5.02-.355C2.164 8.578.107 12.766 1.154 17.139a20.2 20.2 0 0 1 2.73-3.666c-.353 3.262.136 7.673 4.33 10.527a19 19 0 0 1-.465-3.137c1.962 1.534 4.812 2.797 8.35 1.924 6.245-1.543 7.915-7.58 6.974-11.242' />
        </svg>
      );
    });

    export { SiPangolin as default, defaultColor };
  