Below are the various attributes you can assign to the component. Utilizing them can allow for modifications to the pre-created object.
zero_true.Image
Zero True Component
id (string): Unique id for a component
src (string): Source URL or Path of the image
alt (string): Alternative text for the image
width (integer | string): Width of the image
height (integer | string): Height of the image
Example Usage
import zero_true as ztsample_image = zt.Image(id='sample_image',# Unique id for a component src ='',# Source URL or Path of the image alt ='',# Alternative text for the image width ='100%',# Width of the image height ='100%',# Height of the image)