UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

15 lines (14 loc) β€’ 450 B
import Select, { SelectProps } from '../select'; import React from 'react'; import GhostSelect from './GhostSelect'; export interface ISelectProps extends SelectProps { title?: string; ghost?: boolean; type?: 'select' | 'checkbox' | 'cascader'; } declare const LMSelect: React.FC<ISelectProps> & { Option?: typeof Select.Option; OptGroup?: typeof Select.OptGroup; GhostSelect?: typeof GhostSelect; }; export default LMSelect;