argonFooter {argonR} | R Documentation |
Create a Boostrap 4 argon footer
Description
Build an argon footer
Usage
argonFooter(..., has_card = FALSE, status = NULL, gradient = FALSE)
Arguments
... |
Footer content. |
has_card |
Enable card rendering in the footer. FALSE by default. |
status |
Footer status color. See https://demos.creative-tim.com/argon-design-system/docs/foundation/colors.html. |
gradient |
Whether to apply a gradient. FALSE by default. |
Author(s)
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(argonR)
argonFooter(
has_card = FALSE,
argonContainer(
size = "lg",
argonRow(
argonColumn(
width = 6,
argonIconWrapper(
iconTag = argonIcon("atom"),
size = "lg",
status = "success",
shadow = TRUE,
hover_shadow = TRUE
),
argonH1(
display = 3,
"Insert anything in the footer"
),
argonLead(
"The Arctic Ocean freezes every winter and much of
the sea-ice then thaws every summer, and that process
will continue whatever"
)
),
argonColumn(
width = 6,
argonCarousel(
width = 12,
id = "carousel2",
argonCarouselItem(
src = "http://www.72pxdesigns.com/wp-content/uploads/2017/06/preview-814162.png",
active = TRUE
),
argonCarouselItem(
src = "http://www.72pxdesigns.com/wp-content/uploads/2017/06/preview-814162.png",
active = FALSE
)
)
)
)
)
)
}
[Package argonR version 0.2.0 Index]