zuicon_material/icons/
multiple_stop_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MultipleStopSharp)]
11pub fn multiple_stop_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MultipleStopSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M17,4l4,4l-4,4V9h-4V7h4V4z M7,17h4v-2H7v-3l-4,4l4,4V17z M19,15h-2v2h2V15z M15,15h-2v2h2V15z M11,7H9v2h2V7z M7,7H5v2h2 V7z"/>
20 </SvgIcon>
21 }
22}