Multi-value tag input with create support.
import { TagInput } from "@/components/ui";2 / 6 tags
<TagInput
value={["react", "typescript"]}
onChange={setTags}
placeholder="Add tags..."
/>Show autocomplete suggestions
<TagInput value={tags} onChange={setTags} suggestions={["react", "vue", "angular", "svelte"]} placeholder="Type to search..."/>Limit number of tags
<TagInput value={tags} onChange={setTags} maxTags={5} placeholder="Max 5 tags..."/>Only allow suggested values
<TagInput value={tags} onChange={setTags} suggestions={availableTags} allowCreate={false} placeholder="Select from suggestions..."/>Configure your app with the features you need and download production-ready code.
Start Configuring