In shiny dashboard, Is it possible to use one's own icon with the value/info box? I have tried:
valueBox(10 * 2, "New Orders", icon = list(iconUrl="test_green.png"))
as suggested in the "
Shiny-Leaflet custom marker icons"
discussion, but i got the following error:
Error in tagAssert(icon, type = "i") :
Expected an object with class 'shiny.tag'.
the icon parameters uses/call the icon function in shiny package, so I guess another way of asking the same question: Is it possible to use custom (one own) icons with the icons function in shiny, and if so, how?
Thanks