import * as React from 'react';
import type { SVGProps } from 'react';
const SvgSettingsFilledIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M14.56 5.605a.62.62 0 0 1-.175.673L13.2 7.355a5.3 5.3 0 0 1 0 1.39l1.184 1.077a.62.62 0 0 1 .175.673q-.18.487-.432.937l-.129.222q-.271.45-.604.853a.62.62 0 0 1-.67.186l-1.523-.484a5.3 5.3 0 0 1-1.203.695l-.342 1.56a.62.62 0 0 1-.498.488 7 7 0 0 1-2.324 0 .62.62 0 0 1-.498-.487l-.341-1.561a5.3 5.3 0 0 1-1.203-.695l-1.52.487a.62.62 0 0 1-.67-.186 7 7 0 0 1-.605-.853l-.128-.222a7 7 0 0 1-.433-.938.62.62 0 0 1 .175-.672l1.184-1.078a5.4 5.4 0 0 1 0-1.392L1.612 6.278a.62.62 0 0 1-.175-.673q.181-.487.433-.937l.128-.222q.271-.45.604-.853a.62.62 0 0 1 .67-.186l1.523.484a5.3 5.3 0 0 1 1.203-.695l.342-1.56a.62.62 0 0 1 .498-.488 7.066 7.066 0 0 1 2.324-.003.62.62 0 0 1 .498.487l.342 1.562c.432.177.836.413 1.203.694l1.523-.484a.62.62 0 0 1 .67.186q.332.403.604.853l.128.222q.251.45.433.938zM8 10.238a2.188 2.188 0 1 0 0-4.376 2.188 2.188 0 0 0 0 4.376"
    />
  </svg>
);
export default SvgSettingsFilledIcon;
