import * as React from 'react';
import type { SVGProps } from 'react';
const SvgInputsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M14.5 8a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8.65-3.825v.444c.303.037.606.122.906.206q.088.023.175.05a.676.676 0 0 1-.36 1.303c-.05-.012-.096-.028-.146-.04a8 8 0 0 0-.66-.166 2.3 2.3 0 0 0-1.274.125c-.344.15-.629.512-.238.762.306.197.681.297 1.038.394q.111.03.218.06c.488.137 1.11.315 1.575.634.607.416.891 1.09.757 1.816-.129.7-.616 1.159-1.2 1.396-.244.1-.51.163-.788.194v.475a.676.676 0 0 1-1.35 0v-.544a15 15 0 0 1-1.337-.39.674.674 0 1 1 .425-1.281l.234.078c.353.118.716.24 1.078.3.531.078.956.03 1.234-.082.375-.15.554-.596.185-.846-.316-.216-.706-.322-1.078-.422a5 5 0 0 1-.213-.06c-.472-.134-1.062-.3-1.506-.584-.61-.39-.919-1.04-.788-1.763.125-.68.657-1.134 1.22-1.378a3 3 0 0 1 .546-.178v-.503a.676.676 0 0 1 1.35 0z"
    />
  </svg>
);
export default SvgInputsIcon;
