import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Trash20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M7.594 2.377a.75.75 0 0 1 .74-.627h3.333a.75.75 0 0 1 .74.627l.312 1.873h3.114a.75.75 0 0 1 0 1.5h-.131l-.787 11.8a.75.75 0 0 1-.748.7H5.833a.75.75 0 0 1-.748-.7l-.787-11.8h-.131a.75.75 0 0 1 0-1.5H7.28l.313-1.873Zm4.502 3.373H7.93a.73.73 0 0 1-.027 0H5.802L5.885 7h8.23l.083-1.25h-2.102Zm-1.065-2.5.167 1H8.802l.167-1h2.062ZM5.951 8l.584 8.75h6.93L14.048 8H5.952ZM10.5 9.167a.5.5 0 0 0-1 0V15a.5.5 0 0 0 1 0V9.167Zm-3.036-.5A.5.5 0 0 1 8 9.132l.416 5.833a.5.5 0 1 1-.997.072L7 9.202a.5.5 0 0 1 .463-.534ZM13 9.203a.5.5 0 1 0-1-.072l-.416 5.833a.5.5 0 1 0 .997.072L13 9.202Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Trash20