
    import * as React from 'react';

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

    type SiYewProps = 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 = '#009A5B';

    const SiYew: IconType = React.forwardRef<SVGSVGElement, SiYewProps>(function SiYew({title = 'Yew', 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='M21.47.002a1.18 1.18 0 0 0-.815.392L13.33 8.566h-.002a3.5 3.5 0 0 0-1.423-.303 3.5 3.5 0 0 0-1.287.246h-.002L3.345.394a1.18 1.18 0 0 0-.815-.39 1.18 1.18 0 0 0-.853.298 1.18 1.18 0 0 0-.092 1.667l7.246 8.083a3.5 3.5 0 0 0-.466 1.75 3.56 3.56 0 0 0 2.453 3.37v7.647A1.18 1.18 0 0 0 12 24a1.18 1.18 0 0 0 1.18-1.18v-7.715a3.56 3.56 0 0 0 2.267-3.302 3.5 3.5 0 0 0-.396-1.62l7.364-8.213a1.18 1.18 0 0 0-.092-1.668 1.18 1.18 0 0 0-.854-.3m-9.563 1.573a9.84 9.84 0 0 0-5.39 1.61l.671.748a8.8 8.8 0 0 1 4.72-1.357c1.787 0 3.448.527 4.836 1.435l.67-.748a9.84 9.84 0 0 0-5.507-1.688M4.06 5.482a9.84 9.84 0 0 0-1.99 5.93 9.835 9.835 0 0 0 8.248 9.705v-1.013a8.82 8.82 0 0 1-7.247-8.693 8.8 8.8 0 0 1 1.666-5.175Zm15.777.113-.68.757a8.8 8.8 0 0 1 1.584 5.058 8.82 8.82 0 0 1-7.062 8.657v1.016a9.835 9.835 0 0 0 8.062-9.673 9.84 9.84 0 0 0-1.904-5.815m-7.93 4.241a1.955 1.955 0 0 1 1.965 1.967 1.955 1.955 0 0 1-1.966 1.967 1.955 1.955 0 0 1-1.967-1.969 1.955 1.955 0 0 1 1.967-1.966' />
        </svg>
      );
    });

    export { SiYew as default, defaultColor };
  