amethyst/app/src/main/java/com/vitorpamplona/amethyst/ui/theme/Shape.kt

11 wiersze
311 B
Kotlin

package com.vitorpamplona.amethyst.ui.theme
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Shapes
import androidx.compose.ui.unit.dp
val Shapes = Shapes(
small = RoundedCornerShape(4.dp),
medium = RoundedCornerShape(4.dp),
large = RoundedCornerShape(0.dp)
)