Если речь идет только о значках, вы найдете его здесь:
https://fontawesome.com/icons/circle?style=regular
Но если вы хотите показать число внутри, вы можете сделать это простым CSS.
library(shiny)
ui <- fluidPage(
titlePanel("Circle"),
sidebarLayout(
sidebarPanel(
includeCSS("www/style.css"),
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30)
),
# Show a plot of the generated distribution
mainPanel(
tags$div(id="insidediv", textOutput("slideroutput"))
)
)
)
# Define server logic required to draw a histogram
server <- function(input, output) {
output$slideroutput <- renderText({
input$bins
})
}
# Run the application
shinyApp(ui = ui, server = server)
Файл CSS:
#insidediv {
background-color:#fff;
border:4.5px solid grey;
height:100px;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
width:100px;
}
#slideroutput {
padding-top: 30px;
padding-bottom: 30px;
text-align: center;
font-weight: bold;
font-size: 24px;
}