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

export const IconDocumentCopyOutline = 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-document-copy-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M14.3107 1.25H7.25V4H8.75V2.75H13.6893L16.25 5.31066V13.25H14V14.75H17.75V4.68934L14.3107 1.25ZM9.31066 5.25H2.25V18.75H12.75V8.68934L9.31066 5.25ZM3.75 17.25V6.75H8.68934L11.25 9.31066V17.25H3.75Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconDocumentCopyOutline.displayName = "IconDocumentCopyOutline";

export default IconDocumentCopyOutline;
