Skip to content

This function generates an HTML object containing an SVG animation of spinning elements. The SVG is embedded directly within the HTML.

Usage

load_svg()

Value

An HTML object containing the SVG animation.

Examples

if (FALSE) { # \dontrun{
  # Example usage in a Shiny application
  ui <- fluidPage(
    load_svg()
  )

  server <- function(input, output, session) {
  }

  shinyApp(ui, server)
} # }