Add: Duplicate xml shapes themes to compose ones

This commit is contained in:
machiav3lli 2022-02-17 23:11:34 +01:00
parent 0935402c5e
commit 0733b80c56

View File

@ -0,0 +1,11 @@
package com.looker.droidify.ui.compose.theme
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Shapes
import androidx.compose.ui.unit.dp
val AppShapes = Shapes(
small = RoundedCornerShape(4.dp),
medium = RoundedCornerShape(8.dp),
large = RoundedCornerShape(16.dp)
)