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

export const IconCropSquare4To3Outline = 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-4-to-3-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M3 14L1.5 14L1.5 6L3 6L3 14ZM3.5 14.5L16.5 14.5C16.7761 14.5 17 14.2761 17 14L17 6C17 5.72386 16.7761 5.5 16.5 5.5L3.5 5.5C3.22386 5.5 3 5.72386 3 6L1.5 6C1.5 4.96435 2.28722 4.113 3.2959 4.01074L3.5 4L16.5 4C17.6046 4 18.5 4.89543 18.5 6L18.5 14L18.4893 14.2041C18.387 15.2128 17.5356 16 16.5 16L3.5 16C2.46435 16 1.613 15.2128 1.51074 14.2041L1.5 14L3 14C3 14.2761 3.22386 14.5 3.5 14.5Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconCropSquare4To3Outline.displayName = "IconCropSquare4To3Outline";

export default IconCropSquare4To3Outline;
