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

17 lines
216 B
Markdown

---
components:
- rx.radix.text.em
---
```python exec
import reflex as rx
```
# Em (Emphasis)
Marks text to stress emphasis.
```python demo
rx.text("We ", rx.text.em("had"), " to do something about it.")
```