import * as React from 'react';
import type { SVGProps } from 'react';
const SvgExcelIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M3.5 14V2c0-.275.225-.5.5-.5h5V4c0 .553.447 1 1 1h2.5v9c0 .275-.225.5-.5.5H4a.5.5 0 0 1-.5-.5M4 0C2.897 0 2 .897 2 2v12c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2V4.828a2 2 0 0 0-.584-1.416L10.584.585A2 2 0 0 0 9.172 0zm2.84 7.29a.75.75 0 0 0-1.184.923L7.05 10l-1.39 1.79a.75.75 0 0 0 1.184.923L8 11.222l1.16 1.487a.75.75 0 0 0 1.184-.921L8.95 10l1.39-1.79a.75.75 0 0 0-1.184-.923L8 8.779z"
    />
  </svg>
);
export default SvgExcelIcon;
