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

const Tool64: 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="M15.002 12.167H36.64c.723.995 1.861 3.247 1.861 6.5s-1.138 5.505-1.86 6.5H22.666a1.5 1.5 0 0 0-1.471 1.205L18.77 38.5H9.797l4.714-25.923a.5.5 0 0 1 .492-.41Zm22.331-3h-22.33a3.5 3.5 0 0 0-3.444 2.874l-4.82 26.512A2.502 2.502 0 0 0 9.2 41.5H15v9.166c0 1.722.882 3.012 2.112 3.833 1.2.8 2.74 1.167 4.221 1.167a1 1 0 1 0 0-2c-1.185 0-2.312-.299-3.112-.831-.77-.514-1.221-1.223-1.221-2.169V41.5h2.178a2.502 2.502 0 0 0 2.454-2.01l2.264-11.323h4.474c.098 1.916.38 3.244.681 4.15.036.104.07.204.106.298l-5.353 1.07a1 1 0 0 0 .392 1.962l6.667-1.333a1 1 0 0 0 .538-1.66l-.002-.003a1.266 1.266 0 0 1-.083-.124 4.285 4.285 0 0 1-.367-.843c-.23-.691-.48-1.806-.576-3.517h6.96a1.5 1.5 0 0 0 1.056-.434c.85-.843 2.07-2.73 2.7-5.43.078.02.16.03.244.03h4c.082 0 .164-.01.243-.03l5.333-1.333a1 1 0 0 0 .758-.97v-.334h5.651a1 1 0 1 0 0-2h-5.651v-.333a1 1 0 0 0-.758-.97l-5.333-1.333a.992.992 0 0 0-.243-.03h-4a.982.982 0 0 0-.244.03c-.63-2.7-1.85-4.587-2.7-5.43a1.5 1.5 0 0 0-1.056-.434Zm-12 8.5a1 1 0 1 0 0 2h5.334a1 1 0 1 0 0-2h-5.334Zm17 2.666V17h2.877l4.457 1.114v1.105l-4.457 1.114h-2.877Z"/>
</svg>
)
export default Tool64