zuicon_material/icons/
image_not_supported_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ImageNotSupportedSharp)]
11pub fn image_not_supported_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ImageNotSupportedSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M21.9,21.9l-8.49-8.49l0,0L3,3l0,0L2.1,2.1L0.69,3.51L3,5.83V21h15.17l2.31,2.31L21.9,21.9z M5,18l3.5-4.5l2.5,3.01 L12.17,15l3,3H5z M21,18.17L5.83,3H21V18.17z"/>
20 </SvgIcon>
21 }
22}