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

export const IconCornerBottomRightOutline = 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-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 4.75V9.75C16.5 13.4779 13.4779 16.5 9.75 16.5H4.75C4.33579 16.5 4 16.1642 4 15.75C4 15.3358 4.33579 15 4.75 15H9.75C12.6495 15 15 12.6495 15 9.75V4.75C15 4.33579 15.3358 4 15.75 4C16.1642 4 16.5 4.33579 16.5 4.75Z"
        fill={color}
      />
    </svg>
  );
});

IconCornerBottomRightOutline.displayName = "IconCornerBottomRightOutline";

export default IconCornerBottomRightOutline;
