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

const WoodSaw64: 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="M8.426 43.739a1.5 1.5 0 0 0 0 2.121L19.74 57.174a1.5 1.5 0 0 0 2.121 0l6.488-6.488a1.5 1.5 0 0 0 2.391-.808l1.672-6.685 5.47-1.461a1.5 1.5 0 0 0 1.113-1.414l.132-5.599 4.192-1.292a1.5 1.5 0 0 0 1.057-1.491l-.226-5.843 4.415-.92a1.5 1.5 0 0 0 1.194-1.496l-.098-5.183 4.502-1.672a1.5 1.5 0 0 0 .539-2.467L47.316 6.97a1.5 1.5 0 0 0-2.12 0L15.968 36.196l-.001.001-7.542 7.542Zm17.795 4.832L17.03 39.38l-5.42 5.42 9.192 9.193 5.42-5.42Zm3.495-6.963-1.243 4.97-4.96-4.96 10.253-10.253a1 1 0 0 0-1.414-1.415L22.098 40.204l-2.947-2.947 27.105-27.105 4.672 4.672-3.309 1.228a1.5 1.5 0 0 0-.977 1.435l.094 5.003-4.44.925a1.5 1.5 0 0 0-1.193 1.526l.231 5.959-4.123 1.27a1.5 1.5 0 0 0-1.058 1.399l-.13 5.554-5.24 1.4a1.5 1.5 0 0 0-1.067 1.085Zm-11.509 2.956a1 1 0 1 0-1.414 1.414l2.828 2.828a1 1 0 0 0 1.415-1.414l-2.829-2.828Z"/>
</svg>
)
export default WoodSaw64