1 package com.android.credentialmanager.ui.theme
2 
3 import androidx.compose.foundation.shape.RoundedCornerShape
4 import androidx.compose.material3.Shapes
5 import androidx.compose.ui.unit.dp
6 
7 val Shapes = Shapes(
8   small = RoundedCornerShape(100.dp),
9   medium = RoundedCornerShape(28.dp),
10   large = RoundedCornerShape(0.dp)
11 )
12 
13 object EntryShape {
14   val TopRoundedCorner = RoundedCornerShape(28.dp, 28.dp, 0.dp, 0.dp)
15   val BottomRoundedCorner = RoundedCornerShape(0.dp, 0.dp, 28.dp, 28.dp)
16   // Used for middle entries.
17   val FullSmallRoundedCorner = RoundedCornerShape(4.dp, 4.dp, 4.dp, 4.dp)
18   // Used for when there's a single entry.
19   val FullMediumRoundedCorner = RoundedCornerShape(28.dp, 28.dp, 28.dp, 28.dp)
20 }
21