@trail-ui/react
Version:
14 lines (9 loc) • 483 B
text/typescript
import type { ListBoxItemProps, ListBoxSectionProps } from '../listbox';
import { ListBoxItem, ListBoxSection } from '../listbox';
import CustomSelect from './customSelect';
import { Select } from './select';
// export types
export type { SelectProps } from './select';
export type { ListBoxItemProps as SelectItemProps, ListBoxSectionProps as SelectSectionProps };
// export component
export { Select, ListBoxItem as SelectItem, ListBoxSection as SelectSection, CustomSelect };