geostyler
Version:
Framework for styling geodata
12 lines (11 loc) • 356 B
TypeScript
import { default as React } from 'react';
import { ColorMapEntry } from 'geostyler-style';
export interface ColorMapEntryFieldProps {
labelPlaceholder?: string;
onChange?: (colorMapEntry: ColorMapEntry) => void;
value?: ColorMapEntry;
}
/**
* ColorMapEntry Field
*/
export declare const ColorMapEntryField: React.FC<ColorMapEntryFieldProps>;