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