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

const FileXLS32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="M5.667 4a1 1 0 0 1 1-1h12a1 1 0 0 1 .707.293L26.04 9.96a1 1 0 0 1 .292.707V28a1 1 0 0 1-1 1H6.667a1 1 0 0 1-1-1V4Zm2 1v22h16.666V11.667h-5.666a1 1 0 0 1-1-1V5h-10Zm12 1.414 3.252 3.253h-3.252V6.414Zm.336 13.36c-.272 0-.52.049-.74.15-.223.096-.402.24-.533.43a1.158 1.158 0 0 0-.192.668c0 .267.065.494.2.676.129.175.282.312.46.409.175.094.4.193.674.297.274.104.47.198.591.281l.002.001c.115.073.168.167.168.286a.38.38 0 0 1-.154.32.648.648 0 0 1-.404.117.962.962 0 0 1-.482-.116.751.751 0 0 1-.297-.342l-.024-.054-.837.26.023.065c.113.318.312.569.592.749.285.176.627.262 1.025.262.296 0 .56-.052.79-.157.23-.108.41-.26.538-.455.132-.2.197-.431.197-.69a1.01 1.01 0 0 0-.194-.635 1.343 1.343 0 0 0-.453-.39 4.83 4.83 0 0 0-.656-.292 6.793 6.793 0 0 1-.45-.184 1.041 1.041 0 0 1-.258-.184.341.341 0 0 1-.09-.236.36.36 0 0 1 .138-.296.602.602 0 0 1 .384-.117c.148 0 .274.038.382.114l.002.001a.616.616 0 0 1 .244.304l.022.057.875-.252-.022-.066a1.346 1.346 0 0 0-.542-.724c-.258-.174-.586-.258-.979-.258Zm-8.502.077h-1.119l1.369 2.143-1.406 2.16h1.017l.899-1.354.865 1.355h1.118l-1.38-2.16 1.368-2.144h-1.016l-.864 1.341-.851-1.34Zm4.504 0h-.914v4.304h2.737v-.806h-1.823v-3.498Z"/>
</svg>
)
export default FileXLS32