blockQuote: AdminLTE2 block quote

Description Usage Arguments Author(s) Examples

View source: R/useful-items.R

Description

If you want to quote text

Usage

1
blockQuote(..., side = "left")

Arguments

...

any element.

side

blockquote orientation. "left" by default, can be set to "right".

Author(s)

David Granjon, dgranjon@ymail.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
if (interactive()) {
 library(shiny)
 library(shinydashboard)
 library(shinydashboardPlus)
 
 shinyApp(
  ui = dashboardPage(
    dashboardHeader(),
    dashboardSidebar(),
    dashboardBody(
     box(
      title = "BlockQuote example",
      blockQuote("I quote some text here!"),
      blockQuote("I quote some text here!", side = "right")
     )
    ),
    title = "blockQuote"
  ),
  server = function(input, output) { }
 )
}

shinydashboardPlus documentation built on Sept. 16, 2021, 1:06 a.m.