separator.py 234 B

1234567891011
  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. """
  7. super().__init__('q-separator')