Panel
panel.Rd
A panel.
Details
See panel
Examples
panel(
`header-text` = "Panel Header",
title(level = "H1", "The Heading"),
label("Short text"),
htmltools::br(),
label("Some more text"),
htmltools::p("Thhe content of the panel can go here too.")
)
#> <ui5-panel header-text="Panel Header">
#> <ui5-title level="H1">The Heading</ui5-title>
#> <ui5-label>Short text</ui5-label>
#> <br/>
#> <ui5-label>Some more text</ui5-label>
#> <p>Thhe content of the panel can go here too.</p>
#> </ui5-panel>