reflex/reflex/components/radix/themes/typography/strong.py
2023-12-06 16:47:03 -08:00

19 lines
366 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 (
CommonMarginProps,
RadixThemesComponent,
)
class Strong(el.Strong, CommonMarginProps, RadixThemesComponent):
"""Marks text to signify strong importance."""
tag = "Strong"