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

const DIYAlt24: 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="m14.854 7.06-1.44 1.44 2.086 2.086 1.44-1.44-2.086-2.085Zm.707-.706 2.085 2.085.94-.939L16.5 5.414l-.94.94Zm.232-3.061L12 7.086 8.207 3.293a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 0 0 0 1.414L7.086 12l-1.793 1.793a1 1 0 0 0-.27.49l-1 4.5a1 1 0 0 0 1.194 1.193l4.5-1a1 1 0 0 0 .49-.269L12 16.914l3.793 3.793a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414L16.914 12l3.793-3.793a1 1 0 0 0 0-1.414l-3.5-3.5a1 1 0 0 0-1.414 0ZM7.31 14.603l1.19-1.188 2.086 2.086-1.19 1.19-2.085-2.086Zm-.51.905-.484 2.175 2.175-.483L6.8 15.508Zm.7-10.094L5.414 7.5l1.19 1.19.542-.543a.5.5 0 1 1 .708.707l-.543.543 1.293 1.292 1.042-1.042a.5.5 0 0 1 .708.707L9.31 11.397l1.293 1.292.542-.543a.5.5 0 0 1 .708.708l-.543.543 1.293 1.292 1.042-1.043a.5.5 0 0 1 .708.708l-1.043 1.043 1.293 1.292.542-.543a.5.5 0 0 1 .708.708l-.543.543 1.189 1.189 2.086-2.086L7.5 5.414Z"/>
</svg>
)
export default DIYAlt24