Below are the various attributes you can assign to the component. Utilizing them can allow for modifications to the pre-created object.
zero_true.Button
Zero True Component

Example Usage

import zero_true as zt

sample_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
)