import * as React from 'react';
import type { SVGProps } from 'react';
const SvgArchiveIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M1.438 1.5h13.125c.518 0 .937.415.937.929v.928a.93.93 0 0 1-.937.929H1.438A.93.93 0 0 1 .5 3.357V2.43c0-.514.419-.929.938-.929m0 3.714h13.125v7.429c0 1.024-.841 1.857-1.876 1.857H3.313a1.87 1.87 0 0 1-1.876-1.857zm3.75 2.322c0 .255.21.464.468.464h4.688a.47.47 0 0 0 .469-.464.47.47 0 0 0-.47-.465H5.657a.47.47 0 0 0-.468.465"
    />
  </svg>
);
export default SvgArchiveIcon;
