zuicon_material/icons/
connected_tv_sharp.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(ConnectedTvSharp)]
11pub fn connected_tv_sharp(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("ConnectedTvSharp"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M8.57,16H10c0-2.76-2.24-5-5-5v1.43C6.97,12.43,8.57,14.03,8.57,16z"/><path d="M11.55,16H13c0-4.42-3.59-8-8-8v1.45C8.61,9.45,11.55,12.38,11.55,16z"/><path d="M5,14v2h2C7,14.89,6.11,14,5,14z"/><path d="M22,3H2v16h6v2h8v-2h6V3z M20,17H4V5h16V17z"/>
20        </SvgIcon>
21    }
22}