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