UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

37 lines (36 loc) 1.05 kB
import React, { ChangeEventHandler, Component, FocusEventHandler, ReactNode } from 'react'; declare function noop(): void; interface CheckboxProps { id: string; type?: string; label?: ReactNode; name?: string; className?: string; value?: string | 'indeterminate'; checked?: boolean; disabled?: boolean; error?: string; switch?: boolean; activeColor?: string; secondary?: boolean; onBlur: FocusEventHandler<HTMLInputElement>; onChange?: ChangeEventHandler<HTMLInputElement>; onFocus: FocusEventHandler<HTMLInputElement>; } export default class Checkbox extends Component<CheckboxProps> { static defaultProps: { disabled: boolean; checked: boolean; onBlur: typeof noop; onChange: typeof noop; onFocus: typeof noop; label: string; }; state: { focused: boolean; }; handleFocus: FocusEventHandler<HTMLInputElement>; handleBlur: FocusEventHandler<HTMLInputElement>; render(): React.JSX.Element; } export {};