Set button corners to material default values

This commit is contained in:
Bernhard Franke-Polz 2023-11-29 09:45:52 +01:00
parent 2c1b6636e6
commit 9e58bba5d4

View file

@ -9,7 +9,7 @@ import androidx.compose.material.Shapes as MaterialShapes
@Immutable
data class Shapes(
val small: CornerBasedShape = RoundedCornerShape(8.dp),
val small: CornerBasedShape = RoundedCornerShape(4.dp),
val medium: CornerBasedShape = RoundedCornerShape(4.dp),
val large: CornerBasedShape = RoundedCornerShape(0.dp),
)