Create room: fix colour for bottom sheet actions

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

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,
)
}
)