summaryrefslogtreecommitdiffstats
path: root/src/main/java/ui/theme/Shape.kt
blob: d3f1ec916fe7d03f5777fc3cf68b567fdb98b530 (plain)
1
2
3
4
5
6
7
8
9
10
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)
)