zuicon_material/icons/
fiber_smart_record_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FiberSmartRecordSharp)]
11pub fn fiber_smart_record_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FiberSmartRecordSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z"/>
20 </SvgIcon>
21 }
22}