zuicon_material/icons/
near_me_disabled_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(NearMeDisabledSharp)]
11pub fn near_me_disabled_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("NearMeDisabledSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,6.34L21,3l-3.34,9L12,6.34z M22.61,19.78L4.22,1.39L2.81,2.81l5.07,5.07L3,9.69v1.41l7.07,2.83L12.9,21h1.41l1.81-4.88 l5.07,5.07L22.61,19.78z"/>
20 </SvgIcon>
21 }
22}