zuicon_material/icons/
mode_night_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ModeNightRounded)]
11pub fn mode_night_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ModeNightRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M11.93,2.3C9.89,1.8,7.91,1.95,6.16,2.58C5.44,2.84,5.25,3.8,5.85,4.29C8.08,6.12,9.5,8.89,9.5,12 c0,3.11-1.42,5.88-3.65,7.71c-0.59,0.49-0.42,1.45,0.31,1.7C7.2,21.79,8.33,22,9.5,22c6.05,0,10.85-5.38,9.87-11.6 C18.76,6.48,15.78,3.24,11.93,2.3z"/>
20 </SvgIcon>
21 }
22}