我有此信息框:
infoBox("Test", value = 10, subtitle = "test",
icon = shiny::icon("bar-chart"), color = "aqua", width = 4,
href = NULL, fill = FALSE)
我想将图标替换为自定义图像。我正在使用img(src = "image.png", width = 50)
这样做,但是它返回一个错误。
有什么想法怎么做吗?
我是这样做的:
infoBox("Test", value = 10, subtitle = "test",
icon = img(src = "image.png", width = 50), color = "aqua", width = 4,
href = NULL, fill = FALSE)