Build a tabler avatar list
Arguments
- ...
Slot for tablerAvatar.
- stacked
Whether to stack avatars. FALSE by default.
Author
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = NULL,
footer = NULL,
title = "test",
body = tablerDashBody(
tablerAvatarList(
stacked = TRUE,
tablerAvatar(
name = "DG",
size = "xxl"
),
tablerAvatar(
name = "DG",
color = "orange"
),
tablerAvatar(
name = "DG",
status = "warning"
),
tablerAvatar(url = "https://image.flaticon.com/icons/svg/145/145852.svg")
)
)
),
server = function(input, output) {}
)
}