import * as React from 'react';
import type { SVGProps } from 'react';
const SvgSearchIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M10.679 11.739a6 6 0 1 1 1.06-1.06l3.04 3.04a.749.749 0 1 1-1.06 1.06zm.82-4.74a4.499 4.499 0 1 0-8.997-.134 4.499 4.499 0 0 0 8.997.134"
    />
  </svg>
);
export default SvgSearchIcon;
