rsuite
Version:
A suite of react components
12 lines (11 loc) • 540 B
TypeScript
import { InputPickerProps } from '../InputPicker/InputPicker';
import { TagOnlyProps } from '../InputPicker/InputPickerContext';
import type { PickerComponent } from '../internals/Picker/types';
export type TagInputProps = Omit<InputPickerProps<readonly string[]>, 'data'> & Partial<TagOnlyProps>;
/**
* The `TagInput` component is an enhancement of Input and supports input tags and management tags.
*
* @see https://rsuitejs.com/components/tag-input
*/
declare const TagInput: PickerComponent<TagInputProps>;
export default TagInput;