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

export const IconArrowsPointingInOutline = 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-arrows-pointing-in-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M12.7273 3.375L16.625 3.375V7.27273H15.375V5.50888L12.6238 8.26012L11.7399 7.37624L14.4911 4.625H12.7273V3.375ZM3.375 3.375H7.27273V4.625H5.50888L8.26012 7.37624L7.37624 8.26012L4.625 5.50888V7.27273H3.375V3.375ZM8.26012 12.6238L5.50888 15.375H7.27273V16.625H3.375V12.7273H4.625V14.4911L7.37624 11.7399L8.26012 12.6238ZM12.6238 11.7399L15.375 14.4911V12.7273H16.625V16.625H12.7273V15.375H14.4911L11.7399 12.6238L12.6238 11.7399Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconArrowsPointingInOutline.displayName = "IconArrowsPointingInOutline";

export default IconArrowsPointingInOutline;
