import * as React from 'react';
import type { SVGProps } from 'react';
const SvgFieldOperationsFilledIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M8 16c-3.312 0-6-2.687-6-6C2 7.15 6.069 1.803 7.206.366A.97.97 0 0 1 7.972 0h.056c.3 0 .578.131.766.366C9.93 1.803 14 7.15 14 10c0 3.313-2.687 6-6 6m-3-5.5c0-.275-.225-.5-.5-.5s-.5.225-.5.5C4 12.434 5.566 14 7.5 14c.275 0 .5-.225.5-.5s-.225-.5-.5-.5A2.5 2.5 0 0 1 5 10.5"
    />
  </svg>
);
export default SvgFieldOperationsFilledIcon;
