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

const FileCSV20: 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-4.823 8.048a1.109 1.109 0 0 0-1.043.639c-.103.21-.154.462-.154.757s.05.547.154.757a1.1 1.1 0 0 0 .43.475c.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-.111-.142-.17-.361-.17-.664 0-.304.057-.523.167-.665a.546.546 0 0 1 .458-.216.44.44 0 0 1 .275.078c.072.05.128.122.17.216l.016.034.521-.158-.012-.04a.865.865 0 0 0-.342-.457 1.06 1.06 0 0 0-.64-.188Zm2.312 0c-.17 0-.324.031-.463.094-.14.06-.25.15-.333.27a.723.723 0 0 0-.12.417c0 .167.041.308.125.422.08.11.177.195.288.256.11.058.25.12.42.186.173.065.295.123.37.175l.002.001c.072.046.104.104.104.179 0 .085-.031.15-.096.199a.406.406 0 0 1-.252.074.601.601 0 0 1-.301-.073.47.47 0 0 1-.186-.214l-.015-.033-.523.162.015.041a.9.9 0 0 0 .37.468c.177.11.392.164.64.164.185 0 .35-.033.494-.098a.767.767 0 0 0 .459-.716c0-.158-.04-.29-.12-.397a.84.84 0 0 0-.284-.244 3.01 3.01 0 0 0-.41-.182 4.246 4.246 0 0 1-.282-.115.65.65 0 0 1-.16-.115.213.213 0 0 1-.056-.148c0-.078.028-.138.085-.185a.376.376 0 0 1 .24-.073c.093 0 .172.024.239.071l.001.001a.39.39 0 0 1 .153.19l.014.036.547-.158-.014-.041a.84.84 0 0 0-.34-.453c-.16-.108-.365-.16-.61-.16Zm1.863.05h-.621l.92 2.689h.63l.921-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 FileCSV20