# Copyright (c) Vispy Development Team. All Rights Reserved.
# Distributed under the (new) BSD License. See LICENSE.txt for more info.
__all__ = [
    "AxisWidget",
    "Console",
    "ColorBarWidget",
    "Grid",
    "Label",
    "ViewBox",
    "Widget",
]

from .axis import AxisWidget as AxisWidget
from .colorbar import ColorBarWidget as ColorBarWidget
from .console import Console as Console
from .grid import Grid as Grid
from .label import Label as Label
from .viewbox import ViewBox as ViewBox
from .widget import Widget as Widget
