argonFooter {argonR} | R Documentation |
Build an argon footer
argonFooter(..., has_card = FALSE, status = NULL, gradient = FALSE)
... |
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. |
David Granjon, dgranjon@ymail.com
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 ) ) ) ) ) ) }