18 lines
302 B
Python
18 lines
302 B
Python
"""Components for rendering heading.
|
|
|
|
https://www.radix-ui.com/themes/docs/theme/typography
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from reflex import el
|
|
|
|
from ..base import (
|
|
RadixThemesComponent,
|
|
)
|
|
|
|
|
|
class Em(el.Em, RadixThemesComponent):
|
|
"""Marks text to stress emphasis."""
|
|
|
|
tag = "Em"
|