zuicon_material/icons/
table_view_sharp.rs

1// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
2// Use of this source is governed by Lesser General Public License
3// that can be found in the LICENSE file.
4
5// Auto generated, do not edit.
6
7use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TableViewSharp)]
11pub fn table_view_sharp(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("TableViewSharp"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M21,7H7v14h14V7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9 V17z M17,19v-2h2v2H17z M6,17H3V3h14v3h-2V5H5v10h1V17z"/>
20        </SvgIcon>
21    }
22}