Create room: fix colour for bottom sheet actions

This commit is contained in:
Chris Smith 2023-06-01 09:43:08 +01:00
parent e4377c7e0c
commit a30d87c323

View file

@ -97,7 +97,7 @@ private fun SheetContent(
Icon(
imageVector = action.icon,
contentDescription = stringResource(action.titleResId),
tint = if (action.destructive) MaterialTheme.colorScheme.error else MaterialTheme.colorScheme.primary,
tint = if (action.destructive) MaterialTheme.colorScheme.error else MaterialTheme.colorScheme.secondary,
)
}
)