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

Example Usage

import zero_true as zt

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