zuicon_material/icons/
play_disabled_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PlayDisabledOutlined)]
11pub fn play_disabled_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PlayDisabledOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M2.81,2.81L1.39,4.22L8,10.83V19l4.99-3.18l6.78,6.78l1.41-1.41L2.81,2.81z M10,15.36v-2.53l1.55,1.55L10,15.36z"/>
20 </SvgIcon>
21 }
22}