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

export const IconTailoringCuttingOutline = 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-tailoring-cutting-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M6.25 3C6.25 2.58579 5.91421 2.25 5.5 2.25C5.08579 2.25 4.75 2.58579 4.75 3V4.75H3C2.58579 4.75 2.25 5.08579 2.25 5.5C2.25 5.91421 2.58579 6.25 3 6.25H4.75V14.5C4.75 14.9142 5.08579 15.25 5.5 15.25H13.75V17C13.75 17.4142 14.0858 17.75 14.5 17.75C14.9142 17.75 15.25 17.4142 15.25 17V15.25H17C17.4142 15.25 17.75 14.9142 17.75 14.5C17.75 14.0858 17.4142 13.75 17 13.75H16.6341V13.7528H11.6341V13.75H6.25V6.25H6.25337V4.75H6.25V3Z"
          fill={color}
        />
        <path
          d="M13.75 11.2923H15.25V5.5C15.25 5.08579 14.9142 4.75 14.5 4.75H8.71394V6.25H13.75V11.2923Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconTailoringCuttingOutline.displayName = "IconTailoringCuttingOutline";

export default IconTailoringCuttingOutline;
