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

const Wrench24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M19.195 4.165a1 1 0 0 0-.276-1.609 5.502 5.502 0 0 0-7.8 5.851l-7.955 8.08a3.249 3.249 0 0 0 4.622 4.565l8.007-8.084a5.502 5.502 0 0 0 5.718-7.82 1 1 0 0 0-1.61-.276l-1.94 1.94-.706-.706 1.94-1.94Zm-5.123.88a3.49 3.49 0 0 1 2.44-1.025l-1.379 1.379a1 1 0 0 0 0 1.414l2.122 2.121a1 1 0 0 0 1.414 0l1.378-1.379a3.497 3.497 0 0 1-4.35 3.36 1 1 0 0 0-.95.268l-8.382 8.461A1.248 1.248 0 0 1 4.59 17.89l8.334-8.464a1 1 0 0 0 .252-.969 3.498 3.498 0 0 1 .897-3.412ZM5.75 19a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z"/>
</svg>
)
export default Wrench24