/* GENERATED FILE */ import React, { forwardRef } from "react"; import { IconWeight, IconProps, PaintFunction, renderPathForWeight, } from "../lib"; import IconBase, { RenderFunction } from "../lib/IconBase"; const pathsByWeight = new Map(); pathsByWeight.set("bold", () => ( <> )); pathsByWeight.set("duotone", (color: string) => ( <> )); pathsByWeight.set("fill", () => ( <> )); pathsByWeight.set("light", () => ( <> )); pathsByWeight.set("thin", () => ( <> )); pathsByWeight.set("regular", () => ( <> )); const renderPath: RenderFunction = (weight: IconWeight, color: string) => renderPathForWeight(weight, color, pathsByWeight); const WifiNone = forwardRef((props, ref) => ( )); WifiNone.displayName = "WifiNone"; export default WifiNone;