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

const FileCSV64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M11.833 8a1.5 1.5 0 0 1 1.5-1.5h24a1.5 1.5 0 0 1 1.06.44l13.334 13.333a1.5 1.5 0 0 1 .44 1.06V56a1.5 1.5 0 0 1-1.5 1.5H13.333a1.5 1.5 0 0 1-1.5-1.5V8Zm3 1.5v45h34.334V22.833H37.333a1.5 1.5 0 0 1-1.5-1.5V9.5h-21Zm24 2.121 8.212 8.212h-8.212v-8.212ZM24.301 39.547c-.734 0-1.394.173-1.977.523-.577.343-1.03.851-1.359 1.52-.331.67-.494 1.48-.494 2.422 0 .943.163 1.752.494 2.423.33.669.788 1.178 1.373 1.52.59.342 1.258.51 1.999.51.805 0 1.487-.193 2.034-.589.548-.398.919-.889 1.105-1.471l.04-.13-1.669-.504-.048.106a1.743 1.743 0 0 1-.545.703c-.219.155-.513.239-.893.239-.627 0-1.115-.228-1.48-.682-.357-.454-.547-1.155-.547-2.125s.186-1.672.536-2.126c.357-.461.841-.693 1.467-.693.38 0 .668.088.878.25l.004.002c.226.16.408.388.544.69l.048.107 1.668-.505-.039-.128c-.177-.583-.545-1.07-1.094-1.461-.555-.403-1.24-.601-2.045-.601Zm7.4 0a3.55 3.55 0 0 0-1.483.3 2.446 2.446 0 0 0-1.064.862c-.257.377-.383.824-.383 1.335 0 .534.13.988.398 1.351.258.35.566.625.92.819.35.187.801.386 1.348.595.55.207.941.395 1.183.561l.005.003c.229.146.334.333.334.571 0 .272-.102.48-.308.638-.204.155-.47.237-.807.237-.372 0-.692-.08-.964-.234a1.501 1.501 0 0 1-.594-.684l-.049-.107-1.673.52.046.13a2.878 2.878 0 0 0 1.184 1.498c.57.351 1.255.523 2.05.523.591 0 1.12-.103 1.581-.312.46-.218.82-.521 1.075-.912.263-.4.393-.862.393-1.38 0-.503-.126-.93-.387-1.27a2.687 2.687 0 0 0-.906-.78 9.643 9.643 0 0 0-1.313-.584 13.66 13.66 0 0 1-.9-.366 2.083 2.083 0 0 1-.514-.368.683.683 0 0 1-.18-.473.72.72 0 0 1 .274-.592c.196-.153.45-.234.77-.234.294 0 .547.077.763.227l.004.003c.223.144.386.345.488.608l.044.114 1.75-.504-.043-.132c-.209-.626-.57-1.111-1.085-1.449-.516-.346-1.172-.514-1.958-.514Zm5.96.156h-1.988l2.947 8.606h2.015l2.947-8.606H41.69l-2.026 6.33-2.003-6.33Z"/>
</svg>
)
export default FileCSV64