Build an argon pagination container
argonPagination(..., size = NULL, align = NULL)
Slot for argonPaginationItem.
Pagination size: NULL, "sm" or "lg".
Pagination alignement. NULL (left), "center" or "end" (right).
align will not work if you embed the argonPagination in an argonRow.
if(interactive()){
library(argonR)
argonPagination(
size = "lg",
align = "center",
argonPaginationItem(
name = 1,
src = "test.html"
),
argonPaginationItem(
name = 2,
src = "https://www.google.com"
)
)
}