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

const Attic48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M43.06 4.94a1.5 1.5 0 0 1 0 2.12l-36 36a1.5 1.5 0 0 1-2.12-2.12L8.878 37H6a1 1 0 1 1 0-2h4.879l4-4H12a1 1 0 1 1 0-2h4.879l4-4H18a1 1 0 1 1 0-2h4.879l4-4H24a1 1 0 1 1 0-2h4.879l4-4H30a1 1 0 1 1 0-2h4.879l6.06-6.06a1.5 1.5 0 0 1 2.122 0ZM33 35.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm3 2.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-3.5 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm11-24a1.5 1.5 0 0 0-2.56-1.06l-28 28A1.5 1.5 0 0 0 14 43.5h28a1.5 1.5 0 0 0 1.5-1.5V14Zm-3 26.5H17.621l5.99-5.99c.337.243.57.484.732.755.24.4.396.987.328 1.996a3.848 3.848 0 0 0-.071.74 1 1 0 0 0 1.991.131c.027-.199.048-.393.064-.582.087-.342.272-.621.51-.807.264-.206.658-.347 1.2-.264a1 1 0 0 0 1.735-.678c0-1.944 1.555-3.5 3.45-3.5 1.466 0 2.729.93 3.226 2.256a1 1 0 0 0 1.873-.702 5.476 5.476 0 0 0-.332-.72c.62-.54 1.083-.797 1.5-.936.217-.073.437-.12.683-.148V40.5Zm-14.13-5.621a3.501 3.501 0 0 1 1.893-.418c.592-2.384 2.727-4.16 5.287-4.16 1.335 0 2.555.484 3.5 1.285.739-.636 1.414-1.045 2.134-1.285.44-.146.876-.221 1.316-.26V17.62L25.037 33.084c.397.32.747.695 1.02 1.151.123.205.227.42.312.644Z"/>
</svg>
)
export default Attic48