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

export const IconObliqueOutline = 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-oblique-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M12.1835 2.78312C12.5794 2.90494 12.8015 3.32462 12.6797 3.72052L8.67973 16.7205C8.55791 17.1164 8.13822 17.3386 7.74233 17.2168C7.34643 17.095 7.12424 16.6753 7.24606 16.2794L11.2461 3.27939C11.3679 2.88349 11.7876 2.66131 12.1835 2.78312Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconObliqueOutline.displayName = "IconObliqueOutline";

export default IconObliqueOutline;
