zuicon_material/icons/
image_not_supported_rounded.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(ImageNotSupportedRounded)]
11pub fn image_not_supported_rounded(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("ImageNotSupportedRounded"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M21.19,21.19l-0.78-0.78L18,18l-4.59-4.59L3.59,3.59v0L2.81,2.81c-0.39-0.39-1.02-0.39-1.41,0C1,3.2,1,3.83,1.39,4.22 L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61c0.39,0.39,1.02,0.39,1.41,0C21.58,22.22,21.58,21.58,21.19,21.19z M6.02,18 c-0.42,0-0.65-0.48-0.39-0.81l2.49-3.2c0.2-0.25,0.58-0.26,0.78-0.01l2.1,2.53L12.17,15l3,3H6.02z M21,18.17L5.83,3H19 c1.1,0,2,0.9,2,2V18.17z"/>
20        </SvgIcon>
21    }
22}