zuicon_material/icons/
biotech_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(BiotechSharp)]
11pub fn biotech_sharp(props: &Props) -> Html {
12    let new_props = Props{
13        icon: From::from("BiotechSharp"),
14        ..props.clone()
15    };
16
17    html! {
18        <SvgIcon ..new_props>
19            <path d="M13,19v-2h5v-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62 C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H5v2h14v-2H13z"/><path d="M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.59,1.62l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94 l0.94-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z"/>
20        </SvgIcon>
21    }
22}