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

Example Usage

import zero_true as zt

sample_iframe = zt.iFrame(
  id = 'sample_iframe',  # Unique id for a component
  src = '',  # Source URL of the iframe
  width = '100%',  # Width of the iframe
  height = '100%',  # Height of the iframe
  frameborder = 0,  # Frame border of the iframe
  scrolling = 'auto',  # Scrolling of the iframe
  allowtransparency = False,  # Allow transparency of the iframe
)