geostyler
Version:
Framework for styling geodata
15 lines (14 loc) • 457 B
TypeScript
import { default as React } from 'react';
export interface BoolFilterFieldProps {
/** Label for this field */
label?: string;
/** Initial value set to the field */
value?: boolean;
/** Callback function for onChange */
onValueChange?: ((newValue: boolean) => void);
size?: 'large' | 'middle' | 'small';
}
/**
* Checkbox field for a boolean filter value.
*/
export declare const BoolFilterField: React.FC<BoolFilterFieldProps>;