value (boolean): Whether the button has been clicked
text (string): Label displayed on the button
color (string): Color of the button
disabled (boolean): If true, the button is disabled
outlined (boolean): If true, the button will have an outlined style
Example Usage
import zero_true as ztsample_button = zt.Button(id='sample_button',# Unique id for a component value =False,# Whether the button has been clicked text ='Click Me',# Label displayed on the button color ='primary',# Color of the button disabled =False,# If true, the button is disabled outlined =False,# If true, the button will have an outlined style)