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

Example Usage

import zero_true as zt

sample_card = zt.Card(
  id = 'sample_card',  # Unique id for a component
  childComponents = [],  # List of child component ids to be placed within the card
  color = None,  # Background color of the card
  elevation = 0,  # Elevation level of the card. Must be between 0 and 24
  density = 'default',  # Density of the component
  width = '100%',  # Width of the card
)