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

const FileSVG20: 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-5.054 8.048c-.17 0-.324.031-.463.094a.755.755 0 0 0-.332.27.723.723 0 0 0-.12.417c0 .167.04.308.124.422.081.11.177.195.288.256.11.058.25.12.421.186.172.064.294.123.37.175h.001c.072.046.105.105.105.18 0 .084-.032.15-.096.199a.405.405 0 0 1-.253.074.601.601 0 0 1-.301-.073.469.469 0 0 1-.186-.214l-.015-.034-.523.163.015.04a.9.9 0 0 0 .37.469c.178.11.392.163.64.163.185 0 .35-.032.494-.097a.767.767 0 0 0 .459-.716.642.642 0 0 0-.12-.397.84.84 0 0 0-.284-.244 3.02 3.02 0 0 0-.41-.183 4.194 4.194 0 0 1-.282-.114.65.65 0 0 1-.16-.115.213.213 0 0 1-.056-.148c0-.078.028-.138.085-.185a.377.377 0 0 1 .24-.073.41.41 0 0 1 .24.071v.001c.07.045.121.108.153.19l.014.036.547-.158-.014-.041a.841.841 0 0 0-.339-.453c-.161-.108-.366-.16-.612-.16Zm5.176 0c-.235 0-.445.057-.63.171a1.145 1.145 0 0 0-.428.483 1.7 1.7 0 0 0-.15.738c0 .278.05.523.154.735.103.209.248.372.432.49.187.114.399.17.633.17.204 0 .398-.032.58-.096.182-.064.337-.156.461-.275l.013-.012V13.58h-1.186v.503h.615v.38c-.11.11-.268.167-.483.167a.562.562 0 0 1-.325-.098.665.665 0 0 1-.23-.293 1.291 1.291 0 0 1-.082-.49c0-.196.028-.359.083-.49a.642.642 0 0 1 .229-.29.562.562 0 0 1 .325-.097.54.54 0 0 1 .303.08c.08.052.14.124.18.217l.014.034.527-.154-.013-.04a.872.872 0 0 0-.362-.476c-.176-.118-.397-.176-.66-.176Zm-3.313.049h-.621l.921 2.69h.63l.92-2.69h-.59l-.634 1.978-.626-1.978Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default FileSVG20