From e193dd6663d20ced65dbafc00d6218243d2622cd Mon Sep 17 00:00:00 2001 From: Elijah Ahianyo Date: Wed, 19 Apr 2023 17:58:11 +0000 Subject: [PATCH] Update button docstring (#849) --- pynecone/components/forms/button.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pynecone/components/forms/button.py b/pynecone/components/forms/button.py index 5e85aa041..3a024e12a 100644 --- a/pynecone/components/forms/button.py +++ b/pynecone/components/forms/button.py @@ -9,9 +9,6 @@ class Button(ChakraComponent): tag = "Button" - # The type of button. - type: Var[str] - # The space between the button icon and label. icon_spacing: Var[int] @@ -37,6 +34,9 @@ class Button(ChakraComponent): variant: Var[str] # Built in color scheme for ease of use. + # Options: + # "whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" + # | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram" color_scheme: Var[str]