zuicon_material/icons/
remove_from_queue.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(RemoveFromQueue)]
11pub fn remove_from_queue(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("RemoveFromQueue"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h5c1.1,0,1.99-0.9,1.99-2L23,5C23,3.89,22.1,3,21,3z M21,17H3V5 h18V17z M16,10v2H8v-2H16z"/>
20 </SvgIcon>
21 }
22}