From 32bc17b757c14923eea03ef7b0056dea4210067b Mon Sep 17 00:00:00 2001 From: Benedikt Bartscher Date: Fri, 1 Mar 2024 19:10:45 +0100 Subject: [PATCH] minor IconButton default value fix --- reflex/components/chakra/forms/iconbutton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/components/chakra/forms/iconbutton.py b/reflex/components/chakra/forms/iconbutton.py index bd53ecae0..b89214edb 100644 --- a/reflex/components/chakra/forms/iconbutton.py +++ b/reflex/components/chakra/forms/iconbutton.py @@ -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