UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

13 lines (12 loc) 454 B
import type { ListboxInputBaseProps } from '@ark-ui/svelte/listbox'; import type { ClassValue } from 'svelte/elements'; type Props = ListboxInputBaseProps & { class?: ClassValue; placeholder?: string; oninput?: (event: Event & { currentTarget: HTMLInputElement; }) => void; }; declare const ListboxInput: import("svelte").Component<Props, {}, "">; type ListboxInput = ReturnType<typeof ListboxInput>; export default ListboxInput;