import * as React from 'react';
import type { SVGProps } from 'react';
const SvgCloseIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M13.657 2.343a1 1 0 0 1 0 1.414L9.414 8l4.243 4.243a1 1 0 1 1-1.414 1.414L8 9.414l-4.243 4.243a1 1 0 0 1-1.414-1.414L6.586 8 2.343 3.757a1 1 0 0 1 1.414-1.414L8 6.586l4.243-4.243a1 1 0 0 1 1.414 0"
    />
  </svg>
);
export default SvgCloseIcon;
