Source code for duck.html.components.navbar

"""
Navigation Bar Component Module.

This module defines reusable components for creating a fully customizable navigation bar.
It includes support for branding, navigation links, and a responsive design.
"""

from duck.html.components import (
    Component,
    InnerComponent,
    Theme,
    to_component,
)
from duck.html.components.container import (
    Container,
    FlexContainer,
)
from duck.html.components.button import (
    Button,
    FlatButton,
)
from duck.html.components.link import Link
from duck.html.components.icon import Icon
from duck.html.components.image import Image
from duck.html.components.script import Script
from duck.html.components.style import Style