| divider | R Documentation | 
Divider is a component that separates content in a page.
divider(...)
| ... | Props to pass to the component. The allowed props are listed below in the Details section. | 
orientation. Type: `horizontal` OR `vertical`. Default: "`horizontal`".
An object of class shiny.tag containing the
necessary configuration and including options such as JavaScript
dependencies to instantiate a HeroUI divider component.
See https://heroui.com/docs/components/divider.
library(shiny)
library(shinyNextUI)
library(shiny.react)
ui <- nextui_page(
  debug_react = TRUE,
  card(
    card_header("Header"),
    divider(),
    card_body("Body"),
    divider(),
    card_footer("Footer")
  )
)
server <- function(input, output, session) {
}
if (interactive() || is_testing()) shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.