secant-android-wallet/app/src/main/java/cash/z/ecc/android/app/ui/theme/Shape.kt

12 lines
314 B
Kotlin

package cash.z.ecc.android.app.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)
)