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

20 lines
313 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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 Massimos philosophy of design."
)
```