From 8326abf5d53cd0a58b23cd8c86a55fd2fddec63a Mon Sep 17 00:00:00 2001 From: Elijah Ahianyo Date: Thu, 28 Sep 2023 17:56:28 +0000 Subject: [PATCH] Button Group variant and size props (#1873) --- reflex/components/forms/button.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/reflex/components/forms/button.py b/reflex/components/forms/button.py index 94679c8d9..88d8d0e73 100644 --- a/reflex/components/forms/button.py +++ b/reflex/components/forms/button.py @@ -65,3 +65,9 @@ class ButtonGroup(ChakraComponent): # The spacing between the buttons. spacing: Var[int] + + # "lg" | "md" | "sm" | "xs" + size: Var[str] + + # "ghost" | "outline" | "solid" | "link" | "unstyled" + variant: Var[str]