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

export const IconLineDottedMiddleOutline = 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-middle-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M5.3 10C5.3 10.5523 4.85229 11 4.3 11H1C.447715 11 0 10.5523 0 10 0 9.44772.447715 9 1 9H4.3C4.85228 9 5.3 9.44772 5.3 10ZM12.6 10C12.6 10.5523 12.1523 11 11.6 11H8.3C7.74772 11 7.3 10.5523 7.3 10 7.3 9.44772 7.74772 9 8.3 9H11.6C12.1523 9 12.6 9.44772 12.6 10ZM19.9 10C19.9 10.5523 19.4523 11 18.9 11H15.6C15.0477 11 14.6 10.5523 14.6 10 14.6 9.44772 15.0477 9 15.6 9H18.9C19.4523 9 19.9 9.44772 19.9 10Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconLineDottedMiddleOutline.displayName = "IconLineDottedMiddleOutline";

export default IconLineDottedMiddleOutline;
