zuicon_material/icons/
videocam_off_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(VideocamOffSharp)]
11pub fn videocam_off_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("VideocamOffSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M21 16.61V6.5l-4 4V6h-6.61zM3.41 1.86L2 3.27 4.73 6H3v12h13.73l3 3 1.41-1.41z"/>
20 </SvgIcon>
21 }
22}