zuicon_material/icons/
cancel_presentation_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CancelPresentationSharp)]
11pub fn cancel_presentation_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CancelPresentationSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M1 3v18h22V3H1zm20 16H3V5h18v14zM9.41 16L12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59z"/>
20 </SvgIcon>
21 }
22}