minor IconButton default value fix

This commit is contained in:
Benedikt Bartscher 2024-03-01 19:10:45 +01:00
parent db3c791603
commit 32bc17b757
No known key found for this signature in database

View File

@ -19,7 +19,7 @@ class IconButton(Text):
aria_label: Optional[Var[str]] = None
# The icon to be used in the button.
icon: Optional[Component]
icon: Optional[Component] = None
# If true, the button will be styled in its active state.
is_active: Optional[Var[bool]] = None