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