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) 440 B
import type { MenuCheckboxItemBaseProps } from '@ark-ui/svelte/menu'; import type { Snippet } from 'svelte'; type IndicatorSnippet = { indicator?: Snippet; }; type Props = MenuCheckboxItemBaseProps & { class?: string; children: Snippet; } & IndicatorSnippet; declare const MenuCheckboxItem: import("svelte").Component<Props, {}, "">; type MenuCheckboxItem = ReturnType<typeof MenuCheckboxItem>; export default MenuCheckboxItem;