zuicon_material/icons/
account_balance_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AccountBalanceSharp)]
11pub fn account_balance_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AccountBalanceSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z"/>
20 </SvgIcon>
21 }
22}