File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
docs/demo/src/commonMain/kotlin Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import top.yukonga.miuix.kmp.icon.icons.useful.Edit
2121import top.yukonga.miuix.kmp.icon.icons.useful.Personal
2222import top.yukonga.miuix.kmp.icon.icons.useful.Rename
2323import top.yukonga.miuix.kmp.icon.icons.useful.Settings
24+ import top.yukonga.miuix.kmp.theme.MiuixTheme
2425
2526@Composable
2627fun IconDemo () {
@@ -46,11 +47,13 @@ fun IconDemo() {
4647 ) {
4748 Icon (
4849 imageVector = MiuixIcons .Useful .Personal ,
49- contentDescription = " Personal"
50+ contentDescription = " Personal" ,
51+ tint = MiuixTheme .colorScheme.onBackground
5052 )
5153 Icon (
5254 imageVector = MiuixIcons .Useful .Settings ,
53- contentDescription = " Settings"
55+ contentDescription = " Settings" ,
56+ tint = MiuixTheme .colorScheme.onBackground
5457 )
5558 Icon (
5659 imageVector = MiuixIcons .Useful .Edit ,
You can’t perform that action at this time.
0 commit comments