zuicon_material/icons/
web_asset_off_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(WebAssetOffSharp)]
11pub fn web_asset_off_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("WebAssetOffSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M6.83,4H22v15.17l-2-2V8h-9.17L6.83,4z M20.49,23.31L17.17,20H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M15.17,18 l-10-10H4v10H15.17z"/>
20 </SvgIcon>
21 }
22}