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

export const IconLineDottedLargeOutline = 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-line-dotted-large-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M9 10C9 10.5523 8.55228 11 8 11H1C.447715 11 0 10.5523 0 10 0 9.44772.447715 9 1 9H8C8.55228 9 9 9.44772 9 10ZM20 10C20 10.5523 19.5523 11 19 11H12C11.4477 11 11 10.5523 11 10 11 9.44772 11.4477 9 12 9H19C19.5523 9 20 9.44772 20 10Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconLineDottedLargeOutline.displayName = "IconLineDottedLargeOutline";

export default IconLineDottedLargeOutline;
