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.
11 lines (10 loc) • 396 B
TypeScript
import type { ListboxItemBaseProps } from '@ark-ui/svelte/listbox';
import type { Snippet } from 'svelte';
import type { ClassValue } from 'svelte/elements';
type Props = ListboxItemBaseProps & {
class?: ClassValue;
children?: Snippet;
};
declare const ListboxItem: import("svelte").Component<Props, {}, "">;
type ListboxItem = ReturnType<typeof ListboxItem>;
export default ListboxItem;