Skip to content

Commit

Permalink
Make icons squircle. Fixes #301 (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Feb 4, 2023
1 parent dfe9945 commit ad8d715
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.OutlinedButton
Expand Down Expand Up @@ -62,7 +61,7 @@ fun CircularIcon(
contentScale = ContentScale.Crop,
modifier = modifier
.size(size)
.clip(CircleShape)
.clip(RoundedCornerShape(12f))
)
}

Expand Down

0 comments on commit ad8d715

Please sign in to comment.