patternfly-yew 0.7.4

PatternFly 5 components for Yew
Documentation
1
2
3
4
5
6
7
use yew::prelude::*;

/// A divider used in toolbars.
#[function_component(ToolbarDivider)]
pub fn divider() -> Html {
    html!(<hr class="pf-v6-c-divider pf-m-vertical" />)
}