You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|
|
|