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