|
- % Generated by roxygen2: do not edit by hand
- % Please edit documentation in R/components.R
- \name{bulma_message}
- \alias{bulma_message}
- \title{Bulma Message}
- \usage{
- bulma_message(..., header = NULL, delete = FALSE, color = NULL,
- size = c("normal", "small", "medium", "large"), width = NULL,
- centered = !is.null(width))
- }
- \arguments{
- \item{...}{Message body}
-
- \item{header}{Message header}
-
- \item{delete}{Should delete button be displayed in upper right corner?}
-
- \item{size}{Text size, one of \code{"small"}, \code{"normal"} (default),
- \code{"medium"}, or \code{"large"}.}
-
- \item{width}{Width of the message. If \code{NULL} then width is 100% of container.
- If specified, the message is wrapped in a \code{column} div (see \code{\link[=bulma_column]{bulma_column()}}
- for more information and for valid column sizes).}
-
- \item{centered}{Should the message container be centered horizontally?
- Requires \code{width} to be specified. If \code{TRUE}, the message container is
- inside a \code{column} div inside a \code{columns} div.}
- }
- \description{
- Creates a message box with optional title bar.
- }
- \references{
- \url{https://bulma.io/documentation/components/message/}
- }
- \concept{Bulma components}
|