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

export const IconAngleOutline = 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-angle-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M4 10.75C4 7.02208 7.02208 4 10.75 4H16.25C16.6642 4 17 4.33579 17 4.75C17 5.16421 16.6642 5.5 16.25 5.5H10.75C7.85051 5.5 5.5 7.85051 5.5 10.75V16.25C5.5 16.6642 5.16421 17 4.75 17C4.33579 17 4 16.6642 4 16.25V10.75Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconAngleOutline.displayName = "IconAngleOutline";

export default IconAngleOutline;
