UNPKG

@fchh/fcos-suite-ui

Version:

Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).

16 lines (15 loc) 590 B
export interface LanguageSelectorProps { isMobileOpen?: boolean; horizontal?: boolean; languages: Array<{ locale: string; label: string; href?: string; }> | string[]; selectedLanguage?: string; onChangeLanguage?: (newLanguage: string) => void; faded?: boolean; onHover?: (value: boolean) => void; light?: boolean; } export declare function LanguageSelector({ horizontal, selectedLanguage, languages, onChangeLanguage, onHover, isMobileOpen, faded, light, }: LanguageSelectorProps): import("react/jsx-runtime").JSX.Element | null;