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

    Interface DevicePreviewLabels

    Customizable text labels for the DevicePreview component.

    All text displayed in the DevicePreview can be customized through this interface. This enables full internationalization (i18n) support.

    const spanishLabels: Partial<DevicePreviewLabels> = {
    microphoneLevelLabel: 'Nivel del micrófono',
    readyButton: 'Unirse',
    errorMessage: 'No se puede acceder a la cámara/micrófono',
    };

    <DevicePreview labels={spanishLabels} />
    interface DevicePreviewLabels {
        errorMessage: string;
        microphoneLevelLabel: string;
        readyButton: string;
    }
    Index

    Properties

    errorMessage: string

    Error message shown when device access fails

    microphoneLevelLabel: string

    Label shown above the audio level meter

    readyButton: string

    Text for the ready/join button