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

    Interface ConnectingScreenProps

    Props for the ConnectingScreen component.

    Displays a centered spinner with a contextual message while a room is being created or joined.

    import { ConnectingScreen } from '@hiyve/react-ui';

    function App() {
    return <ConnectingScreen isCreating={true} />;
    }
    interface ConnectingScreenProps {
        colors?: Partial<ConnectingScreenColors>;
        isCreating?: boolean;
        labels?: Partial<ConnectingScreenLabels>;
        message?: string;
        styles?: Partial<ConnectingScreenStyles>;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    colors?: Partial<ConnectingScreenColors>

    Custom colors

    isCreating?: boolean

    Whether a room is being created (true) or joined (false)

    labels?: Partial<ConnectingScreenLabels>

    Custom labels for i18n support

    message?: string

    Custom message override (bypasses label selection)

    styles?: Partial<ConnectingScreenStyles>

    Custom styles

    sx?: SxProps<Theme>

    MUI sx prop for container styling