zuicon_material/icons/
fmd_good_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(FmdGoodTwoTone)]
11pub fn fmd_good_two_tone(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("FmdGoodTwoTone"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M0,0h24v24H0V0z" fill="none"/><path d="M12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14 C18,6.57,15.35,4,12,4z M12,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C14,11.1,13.1,12,12,12z" enable-background="new" opacity=".3"/><path d="M12,8c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2C14,8.9,13.1,8,12,8z M12,2c-4.2,0-8,3.22-8,8.2 c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M12,19.33c-4.05-3.7-6-6.79-6-9.14C6,6.57,8.65,4,12,4 s6,2.57,6,6.2C18,12.54,16.05,15.64,12,19.33z"/>
20        </SvgIcon>
21    }
22}