import { forwardRef } from "react";
import type { IconProps } from "../../types";

export const IconToolUrlUnlinkOutline = forwardRef<SVGSVGElement, IconProps>(
  ({ color = "currentColor", ...props }, forwardedRef) => {
    const { className } = props;
    props = {
      ...props,
      width: `${props.width || props.size || 20}`,
      height: `${props.height || props.size || 20}`,
      className: `${
        className ? className + " " : ""
      }customeow-icon customeow-icon-icon-tool-url-unlink-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M11.1766 3.17496C12.7364 1.61518 15.2653 1.61518 16.8251 3.17496C18.3848 4.73474 18.3848 7.26364 16.8251 8.82342L14.3979 11.2506C14.105 11.5435 13.6301 11.5435 13.3372 11.2506C13.0443 10.9577 13.0443 10.4828 13.3372 10.1899L15.7644 7.76276C16.7384 6.78876 16.7384 5.20961 15.7644 4.23562C14.7904 3.26163 13.2113 3.26163 12.2373 4.23562L9.8101 6.66279C9.51721 6.95568 9.04234 6.95568 8.74944 6.66279C8.45655 6.3699 8.45655 5.89502 8.74944 5.60213L11.1766 3.17496ZM6.66273 8.74951C6.95562 9.0424 6.95562 9.51727 6.66273 9.81017L4.23556 12.2373C3.26157 13.2113 3.26157 14.7905 4.23556 15.7645C5.20955 16.7385 6.7887 16.7385 7.76269 15.7645L10.1899 13.3373C10.4828 13.0444 10.9576 13.0444 11.2505 13.3373C11.5434 13.6302 11.5434 14.1051 11.2505 14.398L8.82335 16.8251C7.26358 18.3849 4.73468 18.3849 3.1749 16.8251C1.61512 15.2654 1.61512 12.7365 3.1749 11.1767L5.60207 8.74951C5.89496 8.45661 6.36983 8.45661 6.66273 8.74951ZM6.255 2.05292C6.66286 1.98067 7.05207 2.25275 7.12432 2.66061L7.51432 4.8624C7.58657 5.27027 7.31449 5.65948 6.90663 5.73172C6.49876 5.80397 6.10956 5.53189 6.03731 5.12403L5.64731 2.92223C5.57506 2.51437 5.84713 2.12516 6.255 2.05292ZM2.88419 6.03486C2.47075 6.00955 2.11508 6.3242 2.08977 6.73764C2.06446 7.15108 2.3791 7.50675 2.79254 7.53206L5.02443 7.66868C5.43787 7.69399 5.79355 7.37935 5.81886 6.96591C5.84416 6.55247 5.52952 6.19679 5.11608 6.17148L2.88419 6.03486ZM13.7395 17.9307C13.3317 18.003 12.9425 17.7309 12.8702 17.323L12.4802 15.1212C12.408 14.7134 12.68 14.3242 13.0879 14.2519C13.4958 14.1797 13.885 14.4517 13.9572 14.8596L14.3472 17.0614C14.4195 17.4693 14.1474 17.8585 13.7395 17.9307ZM17.1103 13.9487C17.5237 13.974 17.8794 13.6594 17.9047 13.2459C17.93 12.8325 17.6154 12.4768 17.2019 12.4515L14.97 12.3149C14.5566 12.2896 14.2009 12.6042 14.1756 13.0177C14.1503 13.4311 14.465 13.7868 14.8784 13.8121L17.1103 13.9487Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconToolUrlUnlinkOutline.displayName = "IconToolUrlUnlinkOutline";

export default IconToolUrlUnlinkOutline;
