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

const Draw48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M6.066 4.002a1 1 0 0 1 .932 1.065c-.134 1.998-.01 3.73.295 5.21A9.379 9.379 0 0 1 8.625 8.97c2.12-1.695 4.669-2.102 6.748-1.346C17.484 8.39 19 10.327 19 13c0 2.493-.91 4.4-2.441 5.475-1.524 1.069-3.483 1.182-5.305.453-1.622-.648-3.133-1.943-4.27-3.856-1.269 3.978-1.256 10.271 1.961 19.602a1 1 0 1 1-1.89.652c-3.76-10.902-3.41-18.309-1.218-22.785-.697-2.081-1.034-4.623-.835-7.607a1 1 0 0 1 1.064-.932Zm1.964 8.702c.996 2.384 2.53 3.793 3.967 4.368 1.303.52 2.531.384 3.414-.234.874-.614 1.59-1.83 1.59-3.838 0-1.826-.985-3.015-2.311-3.498-1.359-.494-3.184-.276-4.815 1.029-.659.527-1.293 1.244-1.845 2.173ZM37.06 7.94a1.5 1.5 0 0 0-2.12 0l-20 20a1.5 1.5 0 0 0-.363.586l-3 9a1.5 1.5 0 0 0 1.897 1.897l9-3a1.5 1.5 0 0 0 .587-.362l20-20a1.5 1.5 0 0 0 0-2.121l-6-6ZM16.833 31.247l-1.46 4.382 4.382-1.461-2.922-2.921Zm19.815-13.015L39.879 15 36 11.121l-3.232 3.232 3.879 3.879Zm-1.414 1.414-3.879-3.879-13.586 13.587 3.878 3.879 13.587-13.587Z"/>
</svg>
)
export default Draw48