Current section
Files
Jump to
Current section
Files
src/m3e/button_shape.gleam
//// ButtonShape
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type ButtonShape {
Rounded
Square
}
pub fn to_string(level: ButtonShape) -> String {
case level {
Rounded -> "rounded"
Square -> "square"
}
}