Current section
Files
Jump to
Current section
Files
src/m3e/card_variant.gleam
//// CardVariant
////
//// This file was generated:
//// By: m3e/generator version 0.1.0
//// On: 2026-05-05T14:38:23+10:00
////
//// DO NOT EDIT
////
pub type CardVariant {
Elevated
Filled
Outlined
}
pub fn to_string(level: CardVariant) -> String {
case level {
Elevated -> "elevated"
Filled -> "filled"
Outlined -> "outlined"
}
}