zuicon_material/icons/
maps_ugc.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MapsUgc)]
11pub fn maps_ugc(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MapsUgc"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,2C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97 C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M16,13h-3v3h-2v-3H8v-2h3V8h2v3h3V13z" fill-rule="evenodd"/>
20 </SvgIcon>
21 }
22}