zuicon_material/icons/
app_registration_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AppRegistrationOutlined)]
11pub fn app_registration_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AppRegistrationOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20.85,11.56l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12l1.06-1.06C21.05,12.07,21.05,11.76,20.85,11.56z"/>
20 </SvgIcon>
21 }
22}