linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
20 lines (19 loc) β’ 766 B
TypeScript
import React from 'react';
import type { SelectProps } from './select';
import Select from './select';
export type { BaseOptionType, DefaultOptionType, InternalSelectProps, LabeledValue, OptionProps, RefSelectProps, SelectValue, } from './select';
export type { SelectProps };
export interface ISelectProps extends SelectProps {
className?: string;
style?: React.CSSProperties;
Option?: typeof Select.Option;
OptGroup?: typeof Select.OptGroup;
defaultLabel?: string;
fatalOptions?: typeof Select.Option;
suffix?: React.ReactNode;
icon?: React.ReactNode;
iconClick?: () => void;
}
declare type SelectType = typeof Select & typeof Select.Option & typeof Select.OptGroup;
declare const LMSelect: SelectType;
export default LMSelect;