common: make theme providedValues be vararg

This commit is contained in:
Harsh Shandilya 2022-01-19 12:52:55 +05:30
parent 77d15ae6c6
commit c99b51000b
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 3 additions and 6 deletions

View file

@ -68,7 +68,7 @@ val DarkThemeColors =
@Composable
fun LobstersTheme(
providedValues: Array<ProvidedValue<*>> = emptyArray(),
vararg providedValues: ProvidedValue<*> = emptyArray(),
colorScheme: ColorScheme,
content: @Composable () -> Unit,
) {