import * as React from 'react';
import type { SVGProps } from 'react';
const SvgSelectIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M3.5.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m1.903 1.751a.483.483 0 0 0-.692.068L2.597 4.942l-.77-1.144a.484.484 0 0 0-.685-.128.513.513 0 0 0-.125.701l1.13 1.677.026.035.038.042.04.039c.21.177.52.147.693-.068l2.525-3.135a.513.513 0 0 0-.066-.71M8.72 3.385h6.558a.721.721 0 0 1 0 1.442H8.72a.721.721 0 1 1 0-1.442m0 8.077h6.558a.721.721 0 1 1 0 1.442H8.72a.721.721 0 0 1 0-1.442M3.5 8.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m0 1.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5"
    />
  </svg>
);
export default SvgSelectIcon;
