spok-ui
Version:
UI Library for SPOK system
15 lines (14 loc) • 325 B
TypeScript
import * as React from 'react';
interface Option {
title: string;
id: string | number;
[key: string]: any;
}
interface FCProps {
margin?: 'normal' | 'dense';
label?: string;
options: Option[];
style?: React.CSSProperties;
}
export declare const Select: React.FC<FCProps>;
export {};