platform-bible-react
    Preparing search index...

    Type Alias InterfaceLanguagePickerPropsExperimental

    type InterfaceLanguagePickerProps = {
        className?: string;
        id?: string;
        languages: Record<string, LanguageInfo>;
        localizedStrings: InterfaceLanguagePickerLocalizedStrings;
        onChange: (tag: string) => void;
        value: string;
    }
    Index

    Properties

    className?: string
    id?: string
    languages: Record<string, LanguageInfo>

    Languages to offer, keyed by BCP-47 tag. Displayed by autonym (native script).

    Localized strings (search placeholder, no-results, selected label).

    onChange: (tag: string) => void

    Called with the chosen BCP-47 tag.

    value: string

    Currently selected BCP-47 tag.