import * as React from 'react';
import type { SVGProps } from 'react';
const SvgYieldsFilledIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M16 1a7 7 0 0 1-6.069 6.938 7.97 7.97 0 0 0-2.04-4.354A7 7 0 0 1 14 0h1c.553 0 1 .447 1 1M0 3c0-.553.447-1 1-1h1a7 7 0 0 1 7 7v6a.999.999 0 1 1-2 0v-5a7 7 0 0 1-7-7"
    />
  </svg>
);
export default SvgYieldsFilledIcon;
