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

const FileXLS24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M4 3a1 1 0 0 1 1-1h9a1 1 0 0 1 .707.293l5 5A1 1 0 0 1 20 8v13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3Zm2 1v16h12V9h-4a1 1 0 0 1-1-1V4H6Zm9 1.414L16.586 7H15V5.414Zm.002 9.416c-.204 0-.39.037-.556.112a.917.917 0 0 0-.399.324.868.868 0 0 0-.143.5c0 .2.048.37.15.507.096.132.211.234.344.307.132.07.3.145.506.223.206.078.353.148.444.21l.001.002c.086.055.125.125.125.214 0 .102-.038.18-.115.24a.486.486 0 0 1-.303.088c-.14 0-.26-.03-.361-.087a.563.563 0 0 1-.223-.257l-.018-.04-.628.195.018.049c.084.238.233.426.444.561.213.132.47.197.768.197.222 0 .42-.04.593-.118a.92.92 0 0 0 .55-.86.76.76 0 0 0-.144-.475 1.008 1.008 0 0 0-.34-.293 3.608 3.608 0 0 0-.493-.219 5.088 5.088 0 0 1-.337-.137.78.78 0 0 1-.193-.138.256.256 0 0 1-.067-.177.27.27 0 0 1 .102-.222.453.453 0 0 1 .289-.088c.11 0 .205.028.286.085l.002.001c.083.054.144.13.183.228l.016.043.657-.19-.017-.049a1.01 1.01 0 0 0-.407-.543c-.193-.13-.439-.193-.734-.193Zm-6.377.059h-.838l1.026 1.606-1.054 1.621h.762l.675-1.016.648 1.016h.839l-1.036-1.62 1.027-1.607h-.762l-.648 1.005-.639-1.005Zm3.378 0h-.685v3.227h2.053v-.604h-1.368V14.89Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default FileXLS24