zuicon_material/icons/
subtitles_off_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SubtitlesOffSharp)]
11pub fn subtitles_off_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SubtitlesOffSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M1.04,3.87L2,4.83V20h15.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,12h4v2H4V12z M4,16h9.17L14,16.83V18H4V16z"/>
20 </SvgIcon>
21 }
22}