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

export const IconCropSquare9To16Outline = 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-9-to-16-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M13 17.5V19H7V17.5H13ZM13.5 17V3C13.5 2.72386 13.2761 2.5 13 2.5H7C6.72386 2.5 6.5 2.72386 6.5 3V17C6.5 17.2761 6.72386 17.5 7 17.5V19L6.7959 18.9893C5.85435 18.8938 5.1062 18.1457 5.01074 17.2041L5 17V3C5 1.89543 5.89543 1 7 1H13C14.1046 1 15 1.89543 15 3V17C15 18.0357 14.2128 18.887 13.2041 18.9893L13 19V17.5C13.2761 17.5 13.5 17.2761 13.5 17Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconCropSquare9To16Outline.displayName = "IconCropSquare9To16Outline";

export default IconCropSquare9To16Outline;
