childComponents (list): List of child component ids to be placed within the card
color (string): Background color of the card
elevation (integer): Elevation level of the card. Must be between 0 and 24
density (string): Density of the component
width (integer | string): Width of the card
Example Usage
import zero_true as ztsample_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)