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.

12 lines (11 loc) 517 B
import type { DialogCloseTriggerBaseProps } from '@ark-ui/svelte/dialog'; import { type ButtonVariant, type ButtonSize } from '../button/button.variants'; import type { ClassValue } from 'tailwind-variants'; interface Props extends DialogCloseTriggerBaseProps { variant?: ButtonVariant; size?: ButtonSize; class?: ClassValue; } declare const DialogCloseTrigger: import("svelte").Component<Props, {}, "">; type DialogCloseTrigger = ReturnType<typeof DialogCloseTrigger>; export default DialogCloseTrigger;