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

const Wrench64: 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="M50.36 10.283a1.5 1.5 0 0 0-.413-2.414c-5.017-2.397-11.209-1.52-15.367 2.638a13.49 13.49 0 0 0-3.672 12.299L9.268 44.783a7.496 7.496 0 0 0 10.667 10.534l21.772-21.981c4.206.762 8.71-.482 11.965-3.737 4.158-4.158 5.035-10.35 2.638-15.367a1.5 1.5 0 0 0-2.414-.414l-5.999 6-3.535-3.536 5.999-6Zm-13.659 2.345a10.495 10.495 0 0 1 9.862-2.79L41.18 15.22a1.5 1.5 0 0 0 0 2.121L46.837 23a1.5 1.5 0 0 0 2.121 0l5.383-5.383a10.495 10.495 0 0 1-2.79 9.862 10.494 10.494 0 0 1-9.97 2.763 1.5 1.5 0 0 0-1.429.4L17.803 53.207a4.496 4.496 0 0 1-6.398-6.318L33.63 24.317a1.5 1.5 0 0 0 .377-1.453 10.496 10.496 0 0 1 2.694-10.236ZM15.333 50.667a1.333 1.333 0 1 0 0-2.667 1.333 1.333 0 0 0 0 2.667Z"/>
</svg>
)
export default Wrench64