summaryrefslogtreecommitdiffstats
path: root/src/main/java/ui/theme/Shape.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/ui/theme/Shape.kt')
-rw-r--r--src/main/java/ui/theme/Shape.kt11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/ui/theme/Shape.kt b/src/main/java/ui/theme/Shape.kt
new file mode 100644
index 0000000..d3f1ec9
--- /dev/null
+++ b/src/main/java/ui/theme/Shape.kt
@@ -0,0 +1,11 @@
+package ski.kramkow.paste.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)
+)