UNPKG

antd-tag-input

Version:

```js import TagInput from 'antd-tag-input'; import 'antd-tag-input/dist/style.css'; ```

11 lines (10 loc) 282 B
import React, { FC } from 'react'; declare type TagInputProps = { className?: string; style?: React.CSSProperties; placeholder?: string; value: string[]; onChange: (value: string[]) => void; }; declare const TagInput: FC<TagInputProps>; export default TagInput;