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

Example Usage

import zero_true as zt

sample_textarea = zt.TextArea(
  id = 'sample_textarea',  # Unique id for a component
  hint = 'Press Enter to Submit',  # Hint text for the text input
  value = '',  # The input text value
  placeholder = '',  # Placeholder text
  label = '',  # Label for the text input
  readonly = False,  # If true, the input is read-only
  disabled = False,  # If true, the input is disabled
)