diff --git a/src/main/kotlin/com/looker/droidify/ui/compose/theme/Shape.kt b/src/main/kotlin/com/looker/droidify/ui/compose/theme/Shape.kt new file mode 100644 index 00000000..454bb388 --- /dev/null +++ b/src/main/kotlin/com/looker/droidify/ui/compose/theme/Shape.kt @@ -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) +) \ No newline at end of file