zuicon_material/icons/
outlined_flag_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(OutlinedFlagOutlined)]
11pub fn outlined_flag_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("OutlinedFlagOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z"/>
20 </SvgIcon>
21 }
22}