UNPKG

opendash

Version:

open.DASH data visualization framework

10 lines (9 loc) 272 B
import * as React from "react"; interface Props { value: [string, number]; onChange: (nextValue: [string, number]) => void; placeholder?: string; style?: React.CSSProperties; } export declare const DataItemValuePicker: React.FC<Props>; export {};