zuicon_material/icons/
table_bar_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TableBarSharp)]
11pub fn table_bar_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TableBarSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M22,7.5C22,5.57,17.52,4,12,4S2,5.57,2,7.5c0,1.81,3.95,3.31,9,3.48V15H8l-2,5h2l1.2-3h5.6l1.2,3h2l-2-5h-3v-4.02 C18.05,10.81,22,9.31,22,7.5z"/>
20 </SvgIcon>
21 }
22}