import * as React from 'react';
import type { SVGProps } from 'react';
const SvgYieldsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M9.603 6.469A5.506 5.506 0 0 0 14.478 1.5h-.228a5.51 5.51 0 0 0-5.19 3.672A8.2 8.2 0 0 0 8.071 3.7 7.01 7.01 0 0 1 14.25 0H15c.553 0 1 .447 1 1a7 7 0 0 1-6.069 6.938 8.2 8.2 0 0 0-.328-1.472zM1.5 3.5V4A5.5 5.5 0 0 0 7 9.5h.25V9a5.5 5.5 0 0 0-5.5-5.5zM8.75 9v6.25c0 .416-.334.75-.75.75a.75.75 0 0 1-.75-.75V11H7a7 7 0 0 1-7-7V3c0-.553.447-1 1-1h.75a7 7 0 0 1 7 7"
    />
  </svg>
);
export default SvgYieldsIcon;
