zuicon_material/icons/
auto_awesome_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AutoAwesomeTwoTone)]
11pub fn auto_awesome_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AutoAwesomeTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5-5.5L17,12L11.5,9.5z M9.99,12.99L9,15.17l-0.99-2.18L5.83,12l2.18-0.99 L9,8.83l0.99,2.18L12.17,12L9.99,12.99z"/>
20 </SvgIcon>
21 }
22}