reflex/docs/library/typography/strong.md
2024-02-26 17:18:28 +01:00

17 lines
250 B
Markdown

---
components:
- rx.radix.text.strong
---
```python exec
import reflex as rx
```
# Strong
Marks text to signify strong importance.
```python demo
rx.text("The most important thing to remember is, ", rx.text.strong("stay positive"), ".")
```