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

const Draw64: 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.066 5.669a1 1 0 0 1 .931 1.064c-.2 3.002.032 5.568.555 7.724a12.378 12.378 0 0 1 2.157-2.238c2.744-2.195 6.022-2.707 8.674-1.742C23.067 11.453 25 13.91 25 17.333c0 3.243-1.18 5.672-3.113 7.027-1.925 1.35-4.415 1.506-6.758.568-2.257-.902-4.374-2.792-5.892-5.646-1.961 5.357-2.117 14.033 2.374 27.059a1 1 0 0 1-1.89.651C4.683 32.383 5.223 22.588 8.143 16.748 7.198 13.997 6.735 10.61 7.002 6.6a1 1 0 0 1 1.064-.931Zm2.27 11.242c1.352 3.341 3.488 5.341 5.536 6.16 1.823.73 3.583.552 4.867-.348C22.014 21.828 23 20.09 23 17.333c0-2.576-1.4-4.286-3.3-4.977-1.932-.702-4.486-.38-6.742 1.425-.947.757-1.85 1.79-2.623 3.13ZM49.06 10.94a1.5 1.5 0 0 0-2.122 0L20.273 37.607a1.5 1.5 0 0 0-.363.587l-4 12a1.5 1.5 0 0 0 1.898 1.897l12-4a1.5 1.5 0 0 0 .586-.363L57.06 21.061a1.5 1.5 0 0 0 0-2.122l-8-8ZM22.166 40.913l-2.461 7.382 7.382-2.46-4.921-4.922ZM48.98 24.898 53.88 20 48 14.121l-4.897 4.899 5.878 5.878Zm-1.414 1.415L28.98 44.899 23.1 39.02l18.586-18.586 5.88 5.879Z"/>
</svg>
)
export default Draw64