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

const DIYAlt20: 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="m12.26 5.884-1.2 1.2 1.857 1.856 1.199-1.2-1.856-1.856Zm.707-.707 1.856 1.856.783-.783-1.856-1.856-.783.783ZM6.78 2.803 10 6.023l3.22-3.22a.75.75 0 0 1 1.06 0l2.917 2.917a.75.75 0 0 1 0 1.06L13.977 10l3.22 3.22a.75.75 0 0 1 0 1.06l-2.917 2.917a.75.75 0 0 1-1.06 0L10 13.977 8.447 15.53a.75.75 0 0 1-.368.202l-3.75.834a.75.75 0 0 1-.895-.895l.834-3.75a.75.75 0 0 1 .202-.368L6.023 10l-3.22-3.22a.75.75 0 0 1 0-1.06L5.72 2.803a.75.75 0 0 1 1.06 0Zm.303 8.258 1.856 1.856-.99.99-1.857-1.855.991-.991ZM5.576 12.95l-.422 1.896 1.896-.422-1.474-1.474Zm.674-8.556L4.394 6.25l.991.991.511-.511a.5.5 0 1 1 .707.707l-.51.511.959.96.928-.928a.5.5 0 0 1 .707.707l-.928.928.96.96.51-.512a.5.5 0 1 1 .708.707l-.512.512.96.96.928-.929a.5.5 0 1 1 .707.707l-.928.928.96.96.511-.511a.5.5 0 1 1 .707.707l-.511.511.99.991 1.857-1.856L6.25 4.394Z"/>
</svg>
)
export default DIYAlt20