Macro webui::title_tertiary
source · [−]macro_rules! title_tertiary {
( $($x:expr ),* ) => { ... };
}Expand description
Macro for expanding string arguments into a title
This title will use the .theme-tertiary class.
example
use webui::*;
fn page() -> Html {
html! {
{title_tertiary!("Text for your title")}
}
}