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

const Attic64: 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="M57.06 6.94a1.5 1.5 0 0 1 0 2.12l-48 48a1.5 1.5 0 0 1-2.12-2.12L12.878 49H8a1 1 0 1 1 0-2h6.879l6-6H16a1 1 0 1 1 0-2h6.879l6-6H24a1 1 0 1 1 0-2h6.879l6-6H32a1 1 0 1 1 0-2h6.879l6-6H40a1 1 0 1 1 0-2h6.879l8.06-8.06a1.5 1.5 0 0 1 2.122 0ZM44 47.332A.667.667 0 1 0 44 46a.667.667 0 0 0 0 1.333Zm4 3.334A1.333 1.333 0 1 0 48 48a1.333 1.333 0 0 0 0 2.667Zm-4.667 0a.667.667 0 1 1-1.333 0 .667.667 0 0 1 1.333 0Zm14.167-32a1.5 1.5 0 0 0-2.56-1.061L17.605 54.939a1.5 1.5 0 0 0 1.06 2.561H56a1.5 1.5 0 0 0 1.5-1.5V18.667Zm-3 35.833H22.288l9.01-9.01c.678.426 1.14.85 1.445 1.358.368.614.58 1.477.483 2.878a4.795 4.795 0 0 0-.093.942 1 1 0 0 0 1.992.13c.036-.27.064-.53.084-.785a2.3 2.3 0 0 1 .806-1.285c.453-.354 1.115-.563 1.982-.397a.998.998 0 0 0 1.803-.597c0-2.772 2.219-5 4.933-5 2.1 0 3.905 1.333 4.614 3.225a1 1 0 1 0 1.872-.701 7.004 7.004 0 0 0-.554-1.148c.952-.862 1.661-1.276 2.318-1.495.469-.156.941-.226 1.517-.257V54.5Zm-19.522-7.49c.821-.568 1.844-.828 2.967-.707.653-3.173 3.436-5.569 6.788-5.569 1.8 0 3.437.692 4.667 1.824 1.05-.94 1.975-1.515 2.95-1.84.711-.237 1.417-.328 2.15-.363V22.288L32.741 44.047c.687.48 1.28 1.044 1.717 1.772.22.368.393.764.52 1.19Z"/>
</svg>
)
export default Attic64