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

export const IconImagePhotoSolid = 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-image-photo-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M6.9883 8.01407C7.76524 8.01407 8.39508 7.38423 8.39508 6.60728C8.39508 5.83034 7.76524 5.2005 6.9883 5.2005C6.21135 5.2005 5.58151 5.83034 5.58151 6.60728C5.58151 7.38423 6.21135 8.01407 6.9883 8.01407Z"
          fill={color}
        />
        <path
          d="M2.5 2.5V17.5H17.5V2.5H2.5ZM16.25 3.75H3.75V13.2711L12.5969 7.96303L16.25 11.6162V3.75ZM3.75 16.25V14.7289L12.4031 9.53703L16.25 13.3839V16.25H3.75Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconImagePhotoSolid.displayName = "IconImagePhotoSolid";

export default IconImagePhotoSolid;
