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

const Draw20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M2.533 1.584A.5.5 0 0 1 3 2.116a8.193 8.193 0 0 0 .09 1.982c.143-.158.295-.3.453-.426.903-.723 1.995-.9 2.892-.575C7.346 3.43 8 4.268 8 5.418 8 6.476 7.613 7.3 6.947 7.767c-.661.464-1.508.51-2.289.198-.65-.26-1.252-.758-1.721-1.483-.467 1.641-.423 4.194.869 7.939a.5.5 0 0 1-.946.326C1.3 10.222 1.428 7.116 2.342 5.22c-.287-.874-.423-1.933-.341-3.17a.5.5 0 0 1 .532-.465ZM3.44 5.3c.408.952 1.025 1.51 1.59 1.735.522.209 1.003.151 1.344-.088.337-.236.627-.714.627-1.53 0-.726-.388-1.19-.908-1.38-.536-.195-1.266-.112-1.926.416a3.206 3.206 0 0 0-.727.847Zm12.09-2.08a.75.75 0 0 0-1.06 0l-8.334 8.333a.75.75 0 0 0-.18.293l-1.25 3.75a.75.75 0 0 0 .948.949l3.75-1.25a.749.749 0 0 0 .293-.182L18.03 6.78a.75.75 0 0 0 0-1.06l-2.5-2.5Zm-8.447 9.986-.48 1.441 1.44-.48-.96-.96ZM15.24 7.45l1.2-1.2L15 4.81l-1.2 1.2 1.44 1.439Zm-.707.707L8.99 13.7l-1.44-1.44 5.544-5.542 1.439 1.44Z"/>
</svg>
)
export default Draw20