zuicon_material/icons/
nightlight_round_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(NightlightRoundSharp)]
11pub fn nightlight_round_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("NightlightRoundSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M15.5,22c1.05,0,2.05-0.16,3-0.46c-4.06-1.27-7-5.06-7-9.54s2.94-8.27,7-9.54C17.55,2.16,16.55,2,15.5,2 c-5.52,0-10,4.48-10,10S9.98,22,15.5,22L15.5,22z"/>
20 </SvgIcon>
21 }
22}