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

const Draw24: 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="M3.033 2.001a.5.5 0 0 1 .466.532c-.067 1-.005 1.865.148 2.606a4.69 4.69 0 0 1 .666-.654c1.06-.848 2.334-1.052 3.374-.674C8.742 4.195 9.5 5.163 9.5 6.5c0 1.246-.455 2.2-1.22 2.738-.762.534-1.742.59-2.653.226-.81-.324-1.567-.971-2.135-1.928-.635 1.989-.628 5.136.98 9.801a.5.5 0 0 1-.945.326c-1.88-5.45-1.705-9.154-.608-11.392-.35-1.041-.517-2.312-.418-3.804A.5.5 0 0 1 3.033 2Zm.982 4.351c.498 1.192 1.265 1.896 1.983 2.184.652.26 1.266.192 1.707-.117.438-.307.795-.915.795-1.919 0-.913-.492-1.508-1.155-1.749-.68-.247-1.592-.138-2.408.514a3.99 3.99 0 0 0-.922 1.087Zm14.692-2.559a1 1 0 0 0-1.414 0l-10 10a1 1 0 0 0-.242.39l-1.5 4.5a1 1 0 0 0 1.265 1.266l4.5-1.5a1 1 0 0 0 .391-.242l10-10a1 1 0 0 0 0-1.414l-3-3ZM8.614 15.821l-.533 1.598 1.598-.533-1.065-1.065Zm9.533-6.882L19.586 7.5 18 5.914l-1.439 1.44 1.586 1.585Zm-.707.707-1.586-1.585-6.793 6.793 1.585 1.585 6.794-6.793Z"/>
</svg>
)
export default Draw24