Change CompoundIcons.VoiceCall to CompoundIcons.VoiceCallSolid

This commit is contained in:
Benoit Marty 2025-02-26 18:49:22 +01:00
parent d2934856a0
commit 33702588ef
3 changed files with 3 additions and 3 deletions

View file

@ -100,7 +100,7 @@ internal fun IncomingCallScreen(
ActionButton( ActionButton(
size = 64.dp, size = 64.dp,
onClick = { onAnswer(notificationData) }, onClick = { onAnswer(notificationData) },
icon = CompoundIcons.VoiceCall(), icon = CompoundIcons.VoiceCallSolid(),
title = stringResource(CommonStrings.action_accept), title = stringResource(CommonStrings.action_accept),
backgroundColor = ElementTheme.colors.iconSuccessPrimary, backgroundColor = ElementTheme.colors.iconSuccessPrimary,
borderColor = ElementTheme.colors.borderSuccessSubtle borderColor = ElementTheme.colors.borderSuccessSubtle

View file

@ -31,7 +31,7 @@ fun TimelineItemLegacyCallInviteView(
modifier = modifier, modifier = modifier,
) { ) {
Icon( Icon(
imageVector = CompoundIcons.VoiceCall(), imageVector = CompoundIcons.VoiceCallSolid(),
contentDescription = null, contentDescription = null,
tint = ElementTheme.colors.iconSecondary, tint = ElementTheme.colors.iconSecondary,
) )

View file

@ -132,7 +132,7 @@ private fun NotificationSettingsContentView(
if (!state.fullScreenIntentPermissionsState.permissionGranted) { if (!state.fullScreenIntentPermissionsState.permissionGranted) {
PreferenceCategory { PreferenceCategory {
PreferenceText( PreferenceText(
icon = CompoundIcons.VoiceCall(), icon = CompoundIcons.VoiceCallSolid(),
title = stringResource(id = R.string.full_screen_intent_banner_title), title = stringResource(id = R.string.full_screen_intent_banner_title),
subtitle = stringResource(R.string.full_screen_intent_banner_message), subtitle = stringResource(R.string.full_screen_intent_banner_message),
onClick = { onClick = {