separator.py 316 B

12345678910111213
  1. from ..element import Element
  2. class Separator(Element):
  3. def __init__(self) -> None:
  4. """Separator
  5. A separator for cards, menus and other component containers.
  6. Similar to HTML's <hr> tag.
  7. """
  8. super().__init__('q-separator')
  9. self._classes = ['nicegui-separator']