Current section
Files
Jump to
Current section
Files
src/m3e/card_variant.gleam
//// CardVariant
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type CardVariant {
Elevated
Filled
Outlined
}
pub fn to_string(level: CardVariant) -> String {
case level {
Elevated -> "elevated"
Filled -> "filled"
Outlined -> "outlined"
}
}