UNPKG

geostyler

Version:
14 lines (13 loc) 451 B
import { default as React } from 'react'; export interface ColorRampComboProps { /** Object containing predefined color ramps */ colorRamps?: Record<string, string[]>; /** The callback method that is triggered when the state changes */ onChange?: (colorRamp: string) => void; /** The selected color ramp */ colorRamp?: string; } /** * ColorRampCombo UI. */ export declare const ColorRampCombo: React.FC<ColorRampComboProps>;