diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt index fd345a55d..455e638ce 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt @@ -152,7 +152,6 @@ import com.vitorpamplona.amethyst.ui.theme.BitcoinOrange import com.vitorpamplona.amethyst.ui.theme.DividerThickness import com.vitorpamplona.amethyst.ui.theme.DoubleHorzSpacer import com.vitorpamplona.amethyst.ui.theme.DoubleVertSpacer -import com.vitorpamplona.amethyst.ui.theme.Following import com.vitorpamplona.amethyst.ui.theme.Font14SP import com.vitorpamplona.amethyst.ui.theme.HalfPadding import com.vitorpamplona.amethyst.ui.theme.HalfVertSpacer @@ -3220,10 +3219,10 @@ fun FollowingIcon(iconSize: Dp) { } Icon( - painter = painterResource(R.drawable.ic_verified), - stringResource(id = R.string.following), + painter = painterResource(R.drawable.verified_follow_shield), + contentDescription = stringResource(id = R.string.following), modifier = modifier, - tint = Following + tint = Color.Unspecified ) } diff --git a/app/src/main/res/drawable/verified_follow_shield.png b/app/src/main/res/drawable/verified_follow_shield.png new file mode 100644 index 000000000..0aa45cd5f Binary files /dev/null and b/app/src/main/res/drawable/verified_follow_shield.png differ