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

export const IconCropSquare3To4Outline = 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-crop-square-3-to-4-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M14 17V18.5H6V17H14ZM14.5 16.5V3.5C14.5 3.22386 14.2761 3 14 3H6C5.72386 3 5.5 3.22386 5.5 3.5V16.5C5.5 16.7761 5.72386 17 6 17V18.5C4.96435 18.5 4.113 17.7128 4.01074 16.7041L4 16.5V3.5C4 2.39543 4.89543 1.5 6 1.5H14L14.2041 1.51074C15.2128 1.613 16 2.46435 16 3.5V16.5C16 17.5357 15.2128 18.387 14.2041 18.4893L14 18.5V17C14.2761 17 14.5 16.7761 14.5 16.5Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconCropSquare3To4Outline.displayName = "IconCropSquare3To4Outline";

export default IconCropSquare3To4Outline;
