kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
17 lines (16 loc) • 519 B
TypeScript
import React, { ChangeEventHandler, FocusEventHandler, ReactNode } from 'react';
interface SwitchProps {
checked?: boolean;
type?: string;
id: string;
label?: ReactNode;
error?: string;
onBlur?: FocusEventHandler<HTMLInputElement>;
onChange?: ChangeEventHandler<HTMLInputElement>;
onFocus?: FocusEventHandler<HTMLInputElement>;
value?: string;
secondary?: boolean;
disabled?: boolean;
}
declare const Switch: (props: SwitchProps) => React.JSX.Element;
export default Switch;