shadcn-templ

Combobox

Autocomplete input with a list of suggestions.

No results found.
templ
templ ComboboxDemo() {
	<div class="flex items-center justify-center">
		@ui.Combobox(
			"Select framework...",
			[]ui.ComboboxOption{
				{Value: "next.js", Label: "Next.js"},
				{Value: "sveltekit", Label: "SvelteKit"},
				{Value: "nuxt.js", Label: "Nuxt.js"},
				{Value: "remix", Label: "Remix"},
				{Value: "astro", Label: "Astro"},
			},
			"w-[200px]",
			nil,
		)
	</div>
}