I am using Shiny DashboardPlus and I want the sidebar-mini to display only icons. The problem is that text appears also.
Same issue with shiny dashboard also.
The code for creating the sidebar menu below:
sidebar = dashboardSidebar(
sidebarMenu(
menuItem("DASHBOARD1", tabName = "Spectrum", icon = icon("table")
), #menuItem
menuItem("DASHBOARD2", tabName = "LTE", icon = icon("mobile-alt"))
)),
See it here:

