zuicon_material/icons/
thirty_fps_rounded.rs

1// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
2// Use of this source is governed by Lesser General Public License
3// that can be found in the LICENSE file.
4
5// Auto generated, do not edit.
6
7use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ThirtyFpsRounded)]
11pub fn thirty_fps_rounded(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("ThirtyFpsRounded"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M0,0h24v24H0V0z" fill="none"/><path d="M2,6.5L2,6.5C2,7.33,2.67,8,3.5,8H8v2.5H4.5C3.67,10.5,3,11.17,3,12v0c0,0.83,0.67,1.5,1.5,1.5H8V16H3.5 C2.67,16,2,16.67,2,17.5v0C2,18.33,2.67,19,3.5,19H8c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8 c0-1.66-1.34-3-3-3H3.5C2.67,5,2,5.67,2,6.5z M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4 c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z"/>
20        </SvgIcon>
21    }
22}