zuicon_material/icons/
flash_auto_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FlashAutoTwoTone)]
11pub fn flash_auto_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FlashAutoTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M3 2v12h3v9l7-12H9l4-9zm14 0l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2h-2zm-.15 5.65L18 4l1.15 3.65h-2.3z"/>
20 </SvgIcon>
21 }
22}