HomeDashboard/.venv/lib/python3.12/site-packages/nicegui/elements/button_group.py

13 lines
390 B
Python
Raw Permalink Normal View History

2026-01-03 14:54:18 +01:00
from ..element import Element
class ButtonGroup(Element):
def __init__(self) -> None:
"""Button Group
This element is based on Quasar's `QBtnGroup <https://quasar.dev/vue-components/button-group>`_ component.
You must use the same design props on both the parent button group and the children buttons.
"""
super().__init__(tag='q-btn-group')