12 lines
317 B
TypeScript
12 lines
317 B
TypeScript
import Select from './Select';
|
|
import Option from './Option';
|
|
import OptGroup from './OptGroup';
|
|
import { BaseProps } from './generate';
|
|
|
|
// eslint-disable-next-line prettier/prettier
|
|
export type { ExportedSelectProps as SelectProps } from './Select';
|
|
|
|
export { Option, OptGroup, BaseProps };
|
|
|
|
export default Select;
|