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) • 421 B
TypeScript
import type { PopoverTriggerBaseProps } from '@ark-ui/svelte/popover';
import type { ClassValue } from 'svelte/elements';
import type { Snippet } from 'svelte';
interface Props extends PopoverTriggerBaseProps {
class?: ClassValue;
children: Snippet;
}
declare const PopoverTrigger: import("svelte").Component<Props, {}, "">;
type PopoverTrigger = ReturnType<typeof PopoverTrigger>;
export default PopoverTrigger;