18 lines
472 B
Python
18 lines
472 B
Python
"""A text component."""
|
|
from __future__ import annotations
|
|
|
|
from reflex.components.chakra import ChakraComponent
|
|
from reflex.vars import Var
|
|
|
|
|
|
class Text(ChakraComponent):
|
|
"""Render a paragraph of text."""
|
|
|
|
tag = "Text"
|
|
|
|
# Override the tag. The default tag is `<p>`.
|
|
as_: Var[str]
|
|
|
|
# Truncate text after a specific number of lines. It will render an ellipsis when the text exceeds the width of the viewport or max_width prop.
|
|
no_of_lines: Var[int]
|