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) • 422 B
TypeScript
import type { DrawerTriggerBaseProps } from '@ark-ui/svelte/drawer';
import { type ButtonSize, type ButtonVariant } from '../button/button.variants';
type Props = DrawerTriggerBaseProps & {
variant?: ButtonVariant;
size?: ButtonSize;
class?: string;
};
declare const DrawerTrigger: import("svelte").Component<Props, {}, "">;
type DrawerTrigger = ReturnType<typeof DrawerTrigger>;
export default DrawerTrigger;