Android app module for Zeichen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
312 B

  1. package sh.modal.apps.zeichen.ui.theme
  2. import androidx.compose.foundation.shape.RoundedCornerShape
  3. import androidx.compose.material.Shapes
  4. import androidx.compose.ui.unit.dp
  5. val Shapes = Shapes(
  6. small = RoundedCornerShape(4.dp),
  7. medium = RoundedCornerShape(4.dp),
  8. large = RoundedCornerShape(0.dp)
  9. )