zu/icon_button/edge.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
5use crate::styles::edge::Edge;
6
7#[must_use]
8pub const fn css_class(edge: Option<Edge>) -> &'static str {
9 match edge {
10 Some(Edge::Start) => "ZuIconButton-edgeStart",
11 Some(Edge::End) => "ZuIconButton-edgeEnd",
12 None => "",
13 }
14}