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.

9 lines (8 loc) 363 B
import type { ListboxValueTextBaseProps } from '@ark-ui/svelte/listbox'; import type { ClassValue } from 'svelte/elements'; type Props = ListboxValueTextBaseProps & { class?: ClassValue; }; declare const ListboxValueText: import("svelte").Component<Props, {}, "">; type ListboxValueText = ReturnType<typeof ListboxValueText>; export default ListboxValueText;