reflex/reflex/components/typography/__init__.py
2023-06-25 16:56:55 -07:00

12 lines
302 B
Python

"""Typography components."""
from reflex.components.component import Component
from .heading import Heading
from .highlight import Highlight
from .markdown import Markdown
from .span import Span
from .text import Text
__all__ = [f for f in dir() if f[0].isupper() or f in ("span",)] # type: ignore