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

const DIYAlt64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="m39.02 17.768-4.899 4.898 7.212 7.212 4.9-4.898-7.213-7.212Zm1.414-1.415 7.213 7.212L51.212 20 44 12.788l-3.566 3.565ZM21.061 9.606 32 20.546l10.938-10.94a1.5 1.5 0 0 1 2.122 0l9.333 9.333a1.5 1.5 0 0 1 0 2.122L43.454 32l10.94 10.94a1.5 1.5 0 0 1 0 2.12l-9.333 9.334a1.5 1.5 0 0 1-2.122 0L32 43.454l-5.606 5.606a1.5 1.5 0 0 1-.735.404l-12 2.667a1.5 1.5 0 0 1-1.79-1.79l2.667-12a1.5 1.5 0 0 1 .403-.735L20.545 32 9.606 21.06a1.5 1.5 0 0 1 0-2.12l9.333-9.334a1.5 1.5 0 0 1 2.122 0Zm1.606 24.515 7.212 7.212-4.233 4.232-7.212-7.212 4.233-4.232Zm-5.424 5.869-1.934 8.7 8.701-1.933-6.767-6.767ZM20 12.788 12.788 20l4.232 4.232 2.273-2.273a1 1 0 0 1 1.414 1.415l-2.273 2.272 3.92 3.92 3.606-3.607a1 1 0 0 1 1.414 1.415l-3.606 3.606 3.919 3.919 2.273-2.273a1 1 0 1 1 1.414 1.414L29.1 36.313l3.92 3.92 3.605-3.607a1 1 0 1 1 1.415 1.414l-3.606 3.606 3.919 3.92 2.272-2.273a1 1 0 0 1 1.415 1.414l-2.273 2.273L44 51.212 51.212 44 20 12.788Z"/>
</svg>
)
export default DIYAlt64