I see in the latest version of material, that RippleTheme is deprecated in favour of RippleConfiguration, before I was setting a custom ripple that changed the color that came from a composition local. Is it ok to create RippleConfigurations inline like this (where dsTheme is @Composable)
CompositionLocalProvider(LocalRippleConfiguration provides RippleConfiguration(color = dsTheme.colors.primary.v120)) { ... }