This function create a notification banner
Examples
if (interactive()) {
ui <- fluidPage(
shinyGovstyle::header(
main_text = "Example",
secondary_text = "User Examples",
logo="shinyGovstyle/images/moj_logo.png"),
shinyGovstyle::noti_banner(
inputId = "banner", title_txt = "Important", body_txt = "Example text")
)
server <- function(input, output, session) {}
shinyApp(ui = ui, server = server)
}