/* eslint-disable */
import React from 'react';
import IconBase from '../IconBase';

const SvgIcon = (customProps) => {
  const attributes = Object.assign({}, customProps);

  return (
    <IconBase {...attributes}>
      <path d="M34.6 13.6 22.4 1.4C21.5.6 20.3.1 19 0H2C.9 0 0 .9 0 2v44c0 1.1.9 2 2 2h32c1.1 0 2-.9 2-2V17c-.1-1.3-.6-2.5-1.4-3.4zm-2.1 2.1c.1.1.1.2.2.3H21V4.2l11.5 11.5zM3 45V3h15v14c0 1.1.9 2 2 2h13v26H3z" ></path>
    </IconBase>
  );
};

SvgIcon.displayName = "IconPaperFolded";
SvgIcon.defaultProps = {"viewBox":"0 0 36 48","xmlns":"http://www.w3.org/2000/svg"};

export default SvgIcon;
/* eslint-enable */
