zuicon_material/icons/
fiber_smart_record_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FiberSmartRecordRounded)]
11pub fn fiber_smart_record_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FiberSmartRecordRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M17 5.55v.18c0 .37.23.69.57.85C19.6 7.54 21 9.61 21 12s-1.4 4.46-3.43 5.42c-.34.16-.57.47-.57.84v.18c0 .68.71 1.11 1.32.82C21.08 18.01 23 15.23 23 12s-1.92-6.01-4.68-7.27c-.61-.28-1.32.14-1.32.82z"/>
20 </SvgIcon>
21 }
22}