Update button docstring (#849)

This commit is contained in:
Elijah Ahianyo 2023-04-19 17:58:11 +00:00 committed by GitHub
parent a52145e52a
commit e193dd6663
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]