ReactNext.js
1<InputTags label="Skills" placeholder="Add skills (press Enter)..." />2<InputTags label="Pre-filled" defaultValue={["React", "Next.js"]} />3<InputTags label="Max Tags (3)" maxTags={3} />Installation
npx zeroui@latest add input-tagsProps
| name | type | default | description |
|---|---|---|---|
| label | string | - | - |
| placeholder | string | "Add a tag..." | - |
| defaultValue | string[] | [] | - |
| maxTags | number | - | - |
| onChange | (tags: string[]) => void | - | - |