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

export const IconCropSquareHorizontalSolid = 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-shein-icon customeow-shein-icon-icon-crop-square-horizontal-solid`,
  };
  return (
    <svg
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
      ref={forwardedRef}
    >
      <rect x="4" y="1.5" width="12" height="17" rx="2" fill={color} />
    </svg>
  );
});

IconCropSquareHorizontalSolid.displayName = "IconCropSquareHorizontalSolid";

export default IconCropSquareHorizontalSolid;
