17 lines
216 B
Markdown
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.")
|
|
```
|