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

export const IconCornerBottomLeftOutline = 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-corner-bottom-left-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M4 4.75V9.75C4 13.4779 7.02208 16.5 10.75 16.5H15.75C16.1642 16.5 16.5 16.1642 16.5 15.75C16.5 15.3358 16.1642 15 15.75 15H10.75C7.85051 15 5.5 12.6495 5.5 9.75V4.75C5.5 4.33579 5.16421 4 4.75 4C4.33579 4 4 4.33579 4 4.75Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconCornerBottomLeftOutline.displayName = "IconCornerBottomLeftOutline";

export default IconCornerBottomLeftOutline;
