@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
11 lines (10 loc) • 355 B
TypeScript
import { FormControlProps } from '@mui/material/FormControl';
export interface LocaleSelectProps {
showTitle?: boolean;
showFullNames?: boolean;
formControlProps?: FormControlProps;
}
/**
* A UI for selecting the locale with i18next
*/
export default function LocaleSelect(props: LocaleSelectProps): import("react/jsx-runtime").JSX.Element;