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

const FileDOC20: 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="M3.417 2.5a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 .53.22l4.166 4.166a.75.75 0 0 1 .22.53V17.5a.75.75 0 0 1-.75.75H4.167a.75.75 0 0 1-.75-.75v-15Zm1.5.75v13.5h10.166V7.417h-3.417a.75.75 0 0 1-.75-.75V3.25h-6Zm7.5 1.06 1.606 1.607h-1.607V4.31Zm-2.45 8.048c-.228 0-.428.053-.6.16-.17.108-.302.267-.395.476-.093.207-.139.46-.139.756s.046.55.139.76c.093.208.224.368.395.475.172.107.372.16.6.16.226 0 .425-.053.595-.16.173-.107.306-.267.398-.476.093-.209.139-.463.139-.759a1.84 1.84 0 0 0-.139-.756 1.038 1.038 0 0 0-.398-.476c-.17-.107-.37-.16-.596-.16Zm2.762 0a1.17 1.17 0 0 0-.617.164c-.18.107-.322.266-.425.474-.103.21-.154.463-.154.758 0 .294.05.547.154.757.103.209.246.368.43.475.184.107.392.16.624.16.252 0 .465-.061.636-.185a.904.904 0 0 0 .345-.46l.013-.04-.522-.158-.015.034a.544.544 0 0 1-.17.22.473.473 0 0 1-.28.074.56.56 0 0 1-.462-.213c-.112-.142-.171-.361-.171-.664 0-.304.058-.523.168-.665a.546.546 0 0 1 .458-.216.44.44 0 0 1 .274.078h.002c.07.05.127.122.17.216l.015.033.52-.157-.011-.04a.866.866 0 0 0-.342-.457 1.06 1.06 0 0 0-.64-.188Zm-5.56.049h-.893v2.69h.893c.366 0 .665-.11.891-.335.231-.225.343-.566.343-1.012 0-.449-.11-.789-.339-1.012-.227-.222-.526-.331-.895-.331Zm2.396.67a.463.463 0 0 1 .401-.204c.172 0 .304.068.401.204.097.134.15.356.15.673 0 .32-.052.544-.15.68a.466.466 0 0 1-.4.2.466.466 0 0 1-.402-.2c-.097-.136-.15-.36-.15-.68 0-.317.053-.54.15-.673Zm-2.718 1.516V12.91h.27c.24 0 .413.071.527.206.116.136.177.345.177.634 0 .318-.068.533-.194.656a.704.704 0 0 1-.51.187h-.27Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default FileDOC20