fix color of icon to match theme (#2488)

This commit is contained in:
Thomas Brandého 2024-01-30 23:31:57 +01:00 committed by GitHub
parent 0b3693f744
commit 1d6da9010e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,7 +63,7 @@ class Icon(LucideIconComponent):
def _apply_theme(self, theme: Component | None): def _apply_theme(self, theme: Component | None):
self.style = Style( self.style = Style(
{ {
"color": f"var(--accent-12)", "color": f"var(--current-color)",
**self.style, **self.style,
} }
) )