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

const Hammer32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="m19.666 8.49 1.32.322.661.16 1.322.322-.547 1.173-.316.676-.546 1.172-1.096-.805-.548-.402-1.096-.806-.281.605-.58 1.244-.184.394-.081.174-1.209-.563-.604-.282-1.209-.564.058-.122.224-.482.564-1.208.281-.604a22.962 22.962 0 0 0-1.854-.756 42.282 42.282 0 0 0-3.865-1.176c.596-.63 1.624-1.067 2.745-1.306 1.605-.343 3.4-.278 4.383.217l1.209.563 1.57.733.242.112-.563 1.209Zm-.16 5.074.096-.205.773.568a2 2 0 0 0 2.997-.766l1.41-3.021a2 2 0 0 0-1.34-2.789l-1.226-.298a1.999 1.999 0 0 0-1.142-1.584L18.076 4.07c-1.36-.67-3.24-.73-4.78-.524-1.54.206-3.468.773-4.668 2.041a2 2 0 0 0 .978 3.318l.005.002.024.005a19.113 19.113 0 0 1 .481.125c.331.089.798.219 1.337.382a37 37 0 0 1 1.643.539l-.194.416-.042.091a1.996 1.996 0 0 0 .024 1.74l-.011.024-.004.007-.004.008L6.95 24.933a3 3 0 1 0 5.437 2.535L18.3 14.786l.093-.193a1.994 1.994 0 0 0 1.113-1.029Zm-3.18.724-1.813-.845-3.68 7.89h2.207l3.286-7.045Z"/>
</svg>
)
export default Hammer32