use crate::styles::position::Position;
pub const fn css_class(position: Position) -> &'static str {
match position {
Position::Start => "ZuFormControlLabel-labelPlacementStart",
Position::End => "ZuFormControlLabel-labelPlacementEnd",
Position::Top => "ZuFormControlLabel-labelPlacementTop",
Position::Bottom => "ZuFormControlLabel-labelPlacementBottom",
}
}