HomeDashboard/.venv/lib/python3.12/site-packages/nicegui/elements/label.py
2026-01-03 14:54:18 +01:00

14 lines
274 B
Python

from .mixins.text_element import TextElement
class Label(TextElement):
def __init__(self, text: str = '') -> None:
"""Label
Displays some text.
:param text: the content of the label
"""
super().__init__(tag='div', text=text)