MultiSelect

Input component for selecting multiple items from a list, with create and update functionality.

View on GitHub

Usage

Comboxbox extends the Input component. All props from Input are available.

import { MultiSelect } from '@nerdfish/ui'
import Image from 'next/image'
<MultiSelect
	name="framework"
	label="Framework"
	placeholder="Select a framework"
	options={[
		{ value: 'next.js', label: 'Next.js' },
		{ value: 'sveltekit', label: 'SvelteKit' },
		{ value: 'nuxt.js', label: 'Nuxt.js' },
		{ value: 'remix', label: 'Remix' },
		{ value: 'astro', label: 'Astro' },
	]}
/>