zuicon_material/icons/
horizontal_rule_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(HorizontalRuleRounded)]
11pub fn horizontal_rule_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("HorizontalRuleRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M19,13H5c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h14c0.55,0,1,0.45,1,1v0 C20,12.55,19.55,13,19,13z" fill-rule="evenodd"/>
20 </SvgIcon>
21 }
22}