zuicon_material/icons/
tungsten_two_tone.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(TungstenTwoTone)]
11pub fn tungsten_two_tone(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("TungstenTwoTone"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M0,0h24v24H0V0z" fill="none"/><path d="M13,7.1V5h-2v2.1C11.32,7.04,11.66,7,12,7S12.68,7.04,13,7.1z" opacity=".3"/><path d="M15,8.02V3H9v5.02C7.79,8.94,7,10.37,7,12c0,2.76,2.24,5,5,5s5-2.24,5-5C17,10.37,16.21,8.94,15,8.02z M11,5h2v2.1 C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5z M12,15c-1.65,0-3-1.35-3-3s1.35-3,3-3c1.65,0,3,1.35,3,3S13.65,15,12,15z"/>
20        </SvgIcon>
21    }
22}