Current section
Files
Jump to
Current section
Files
src/m3e/app_bar_size.gleam
//// AppBarSize
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type AppBarSize {
Small
Medium
Large
}
pub fn to_string(level: AppBarSize) -> String {
case level {
Small -> "small"
Medium -> "medium"
Large -> "large"
}
}