/* 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", (color: string) => ( <> )); pathsByWeight.set("duotone", (color: string) => ( <> )); pathsByWeight.set("fill", () => ( <> )); pathsByWeight.set("light", (color: string) => ( <> )); pathsByWeight.set("thin", (color: string) => ( <> )); pathsByWeight.set("regular", (color: string) => ( <> )); const renderPath: RenderFunction = (weight: IconWeight, color: string) => renderPathForWeight(weight, color, pathsByWeight); const Users = forwardRef((props, ref) => ( )); Users.displayName = "Users"; export default Users;