Current section

Files

Jump to
m3e src m3e button_shape.gleam
Raw

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