Current section

Files

Jump to
m3e src m3e app_bar_size.gleam
Raw

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"
}
}