Hiyve Components - v1.0.0
    Preparing search index...

    Interface PrebuiltRoomCustomTab

    A consumer-provided sidebar tab. Lets the host app add panels PrebuiltRoom doesn't bundle (e.g. an app-specific read-only view) without forking the component. Appended after the built-in tabs; ordered via PrebuiltRoomSidebarConfig.tabOrder by id; rendered when active.

    interface PrebuiltRoomCustomTab {
        content: ReactNode;
        icon: ReactNode;
        id: string;
        label: string;
    }
    Index

    Properties

    Properties

    content: ReactNode

    Panel content rendered when this tab is the active one.

    icon: ReactNode

    Tab icon (an MUI icon element or any node).

    id: string

    Stable id — referenced by sidebar.tabOrder and presenter-sync activeTab. Avoid clashing with built-in ids (participants, chat, files, …).

    label: string

    Label shown in the tab rail / tooltip.