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