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

    Interface RoomStatsDashboardProps

    Props for the standalone RoomStatsDashboard component. Renders a full-page stats view with stat cards, chart, and recent files.

    interface RoomStatsDashboardProps {
        emptyDescription?: string;
        emptyTitle?: string;
        recentFilesTitle?: string;
        renderChart?: () => ReactNode;
        secondaryStatCards?: {
            icon: ReactNode;
            label: string;
            value: string | number;
        }[];
        statCards: { icon: ReactNode; label: string; value: string
        | number }[];
        stats: RoomStatsData;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    emptyDescription?: string

    Empty state description

    emptyTitle?: string

    Empty state title

    recentFilesTitle?: string

    Recent files section title

    renderChart?: () => ReactNode

    Render function for the activity chart — keeps the SDK free of charting library deps

    secondaryStatCards?: { icon: ReactNode; label: string; value: string | number }[]

    Secondary stat cards (bottom row, below chart)

    statCards: { icon: ReactNode; label: string; value: string | number }[]

    Primary stat cards (top row)

    Room statistics data

    sx?: SxProps<Theme>

    MUI sx prop