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

export const IconCropSquare21To9Outline = 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-21-to-9-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M4 7.5L4 6L16 6L16 7.5L4 7.5ZM3.5 8L3.5 12C3.5 12.2761 3.72386 12.5 4 12.5L16 12.5C16.2761 12.5 16.5 12.2761 16.5 12L16.5 8C16.5 7.72386 16.2761 7.5 16 7.5L16 6L16.2041 6.01074C17.1457 6.1062 17.8938 6.85435 17.9893 7.7959L18 8L18 12C18 13.1046 17.1046 14 16 14L4 14C2.89543 14 2 13.1046 2 12L2 8L2.01074 7.7959C2.1062 6.85435 2.85435 6.1062 3.7959 6.01074L4 6L4 7.5C3.72386 7.5 3.5 7.72386 3.5 8Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconCropSquare21To9Outline.displayName = "IconCropSquare21To9Outline";

export default IconCropSquare21To9Outline;
