zuicon_material/icons/
solar_power_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SolarPowerTwoTone)]
11pub fn solar_power_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SolarPowerTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20,12H4L2,22h20L20,12z M13,14h5.36l0.4,2H13V14z M11,20H4.44l0.4-2H11V20z M11,16H5.24l0.4-2H11V16z M13,20v-2h6.16 l0.4,2H13z"/><path d="M12,7c2.76,0,5-2.24,5-5h-2c0,1.65-1.35,3-3,3S9,3.65,9,2H7C7,4.76,9.24,7,12,7z"/><path d="M15,2c0,1.66-1.34,3-3,3S9,3.66,9,2H15z" opacity=".3"/>
20 </SvgIcon>
21 }
22}