UNPKG

painless-ui

Version:
10 lines (9 loc) 199 B
import React from 'react'; interface OptionProps { children: any; text?: string; value: any; [key: string]: any; } declare const Option: React.FC<OptionProps>; export default Option;