zuicon_material/icons/
auto_fix_high_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AutoFixHighSharp)]
11pub fn auto_fix_high_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AutoFixHighSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M18.41,9.83l-4.24-4.24L1.59,18.17l4.24,4.24L18.41,9.83z M14.21,11.21l-1.41-1.41l1.38-1.38l1.41,1.41L14.21,11.21z"/>
20 </SvgIcon>
21 }
22}