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

const Document64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M11.833 8a1.5 1.5 0 0 1 1.5-1.5h24a1.5 1.5 0 0 1 1.06.44l13.334 13.333a1.5 1.5 0 0 1 .44 1.06V56a1.5 1.5 0 0 1-1.5 1.5H13.333a1.5 1.5 0 0 1-1.5-1.5V8Zm3 1.5v45h34.334V22.833H37.333a1.5 1.5 0 0 1-1.5-1.5V9.5h-21Zm24 2.121 8.212 8.212h-8.212v-8.212ZM24 43.833a1.5 1.5 0 0 0 0 3h16a1.5 1.5 0 1 0 0-3H24Zm-1.5-9.166a1.5 1.5 0 0 1 1.5-1.5h16a1.5 1.5 0 1 1 0 3H24a1.5 1.5 0 0 1-1.5-1.5ZM24 22.5a1.5 1.5 0 0 0 0 3h5.333a1.5 1.5 0 0 0 0-3H24Z"/>
</svg>
)
export default Document64