@keen.io/ui-core
Version:
Keen visual components library
17 lines (16 loc) • 426 B
TypeScript
import { FC } from 'react';
declare type Props = {
timezones: {
name: string;
utcOffset: string;
}[];
timezone?: string;
disableSelection?: boolean;
timezoneLabel: string;
timezonePlaceholderLabel: string;
emptySearchLabel: string;
dropdownHeight?: number;
onChange: (timezone: string) => void;
};
declare const Timezone: FC<Props>;
export default Timezone;