Current section
Files
Jump to
Current section
Files
src/m3e/fab_menu_variant.gleam
//// FabMenuVariant
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type FabMenuVariant {
Primary
Secondary
Tertiary
}
pub fn to_string(level: FabMenuVariant) -> String {
case level {
Primary -> "primary"
Secondary -> "secondary"
Tertiary -> "tertiary"
}
}