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

export const IconCornerTopRightOutline = 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-top-right-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M16.5 15.75V10.75C16.5 7.02208 13.4779 4 9.75 4H4.75C4.33579 4 4 4.33579 4 4.75C4 5.16421 4.33579 5.5 4.75 5.5H9.75C12.6495 5.5 15 7.85051 15 10.75V15.75C15 16.1642 15.3358 16.5 15.75 16.5C16.1642 16.5 16.5 16.1642 16.5 15.75Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconCornerTopRightOutline.displayName = "IconCornerTopRightOutline";

export default IconCornerTopRightOutline;
