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