zuicon_material/icons/
account_tree_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AccountTreeOutlined)]
11pub fn account_tree_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AccountTreeOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z"/>
20 </SvgIcon>
21 }
22}