zuicon_material/icons/
play_disabled_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PlayDisabledTwoTone)]
11pub fn play_disabled_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PlayDisabledTwoTone"),
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 M19,12 L8,5v0.17l8.45,8.45L19,12z"/>
20 </SvgIcon>
21 }
22}