UNPKG

opendash

Version:

open.DASH data visualization framework

16 lines (15 loc) 345 B
import * as React from "react"; interface Props { size?: number; options: { label: string; value: string; tooltip: string; icon: string; disabled: boolean; }[]; value: string; onChange: (value: string) => void; } export declare const Select: React.FC<Props>; export {};