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 ..element import Element |
|
|
|
|
|
class Separator(Element): |
|
|
|
def __init__(self) -> None: |
|
"""Separator |
|
|
|
A separator for cards, menus and other component containers. |
|
Similar to HTML's <hr> tag. |
|
""" |
|
super().__init__('q-separator') |
|
self._classes = ['nicegui-separator']
|
|
|