import * as React from 'react';
import type { SVGProps } from 'react';
const SvgCheckedIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M11.992 2.744a1 1 0 0 1 1.669 1.098l-.053.08-6.813 9.334a1 1 0 0 1-1.544.087l-.063-.076-2.655-3.539a1 1 0 0 1 1.539-1.274l.061.074 1.843 2.457z"
    />
  </svg>
);
export default SvgCheckedIcon;
