box.py 327 B

12345678910111213141516
  1. """Declarative layout and common spacing props."""
  2. from __future__ import annotations
  3. from reflex.components.el import elements
  4. from ..base import RadixThemesComponent
  5. class Box(elements.Div, RadixThemesComponent):
  6. """A fundamental layout building block, based on `div` element."""
  7. tag = "Box"
  8. box = Box.create