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

const Attic20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M18.03 1.97a.75.75 0 0 1 0 1.06l-15 15a.75.75 0 0 1-1.06-1.06l1.47-1.47H2.5a.5.5 0 0 1 0-1h1.94l1.5-1.5H5a.5.5 0 0 1 0-1h1.94l1.5-1.5H7.5a.5.5 0 0 1 0-1h1.94l1.5-1.5H10a.5.5 0 0 1 0-1h1.94l1.5-1.5h-.94a.5.5 0 0 1 0-1h1.94l2.53-2.53a.75.75 0 0 1 1.06 0Zm-4.28 12.822a.208.208 0 1 0 0-.417.208.208 0 0 0 0 .417ZM15 15.833A.417.417 0 1 0 15 15a.417.417 0 0 0 0 .833Zm-1.458 0a.208.208 0 1 1-.417 0 .208.208 0 0 1 .417 0Zm4.708-10a.75.75 0 0 0-1.28-.53L5.303 16.97a.75.75 0 0 0 .53 1.28H17.5a.75.75 0 0 0 .75-.75V5.833Zm-1.5 10.917H7.644l2.234-2.234a.88.88 0 0 1 .193.22c.088.147.153.372.126.779-.02.104-.03.21-.03.319a.5.5 0 0 0 .995.065 5.3 5.3 0 0 0 .027-.239.53.53 0 0 1 .18-.285.539.539 0 0 1 .41-.097.498.498 0 0 0 .846-.361c0-.765.611-1.375 1.354-1.375.575 0 1.07.365 1.266.886a.5.5 0 1 0 .937-.35 2.372 2.372 0 0 0-.112-.252c.228-.19.397-.281.546-.33.044-.015.088-.027.134-.037v3.291Zm-5.72-2.333c.207-.097.438-.147.683-.144a2.358 2.358 0 0 1 2.266-1.731 2.33 2.33 0 0 1 1.458.51 2.64 2.64 0 0 1 .863-.505c.15-.05.3-.082.45-.1V7.644l-6.164 6.164a1.843 1.843 0 0 1 .444.61Z"/>
</svg>
)
export default Attic20