import * as React from 'react';
import type { SVGProps } from 'react';
const SvgDeleteIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M11 3.5h2.25a.75.75 0 1 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H5l.228-1.51A1.75 1.75 0 0 1 6.958.5H9.07c.877 0 1.62.65 1.734 1.52zM5.156 13.775a.25.25 0 0 0 .249.225h5.19a.25.25 0 0 0 .249-.225L11.5 5.75h1.496l-.66 8.174a1.75 1.75 0 0 1-1.741 1.576h-5.19a1.75 1.75 0 0 1-1.741-1.575l-.66-8.175h1.492zM6.5 3.5h3l-.177-1.284A.25.25 0 0 0 9.075 2h-2.18a.25.25 0 0 0-.248.222z"
    />
  </svg>
);
export default SvgDeleteIcon;
