zuicon_material/icons/
label_important_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(LabelImportantOutlined)]
11pub fn label_important_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("LabelImportantOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z"/>
20 </SvgIcon>
21 }
22}