zuicon_material/icons/
nearby_off_sharp.rs

1// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
2// Use of this source is governed by Lesser General Public License
3// that can be found in the LICENSE file.
4
5// Auto generated, do not edit.
6
7use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(NearbyOffSharp)]
11pub fn nearby_off_sharp(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("NearbyOffSharp"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M0,0h24v24H0V0z" fill="none"/><path d="M22.82,12.01L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l3.99-3.99L22.82,12.01z M21.19,21.19l-1.41,1.41 L16,18.83l-3.99,3.99L1.18,11.99L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19z M14.19,17.02l-1.39-1.39l-0.8,0.8L7.58,12l0.8-0.8 l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z"/>
20        </SvgIcon>
21    }
22}