strong.py 366 B

123456789101112131415161718
  1. """Components for rendering heading.
  2. https://www.radix-ui.com/themes/docs/theme/typography
  3. """
  4. from __future__ import annotations
  5. from reflex import el
  6. from ..base import (
  7. CommonMarginProps,
  8. RadixThemesComponent,
  9. )
  10. class Strong(el.Strong, CommonMarginProps, RadixThemesComponent):
  11. """Marks text to signify strong importance."""
  12. tag = "Strong"