baseui
Version:
A React Component library implementing the Base design language
8 lines (7 loc) • 373 B
TypeScript
import type { ComboboxProps } from './types';
export { SIZE } from '../input';
export { default as Combobox } from './combobox';
export { StyledRoot, StyledInputContainer, StyledListBox, StyledListItem, } from './styled-components';
export * from './types';
/** @deprecated use ComboboxProps instead. To be removed in future versions.*/
export type PropsT = ComboboxProps;