zuicon_material/icons/
delete_sweep_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DeleteSweepSharp)]
11pub fn delete_sweep_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DeleteSweepSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M15 16h4v2h-4v-2zm0-8h7v2h-7V8zm0 4h6v2h-6v-2zM3 20h10V8H3v12zM14 5h-3l-1-1H6L5 5H2v2h12V5z"/>
20 </SvgIcon>
21 }
22}