20 lines
313 B
Markdown
20 lines
313 B
Markdown
---
|
||
components:
|
||
- rx.radix.text.quote
|
||
---
|
||
|
||
```python exec
|
||
import reflex as rx
|
||
```
|
||
|
||
# Quote
|
||
|
||
A short inline quotation.
|
||
|
||
```python demo
|
||
rx.text("His famous quote, ",
|
||
rx.text.quote("Styles come and go. Good design is a language, not a style"),
|
||
", elegantly sums up Massimo’s philosophy of design."
|
||
)
|
||
```
|