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) • 383 B
TypeScript
import type { TooltipContentBaseProps } from '@ark-ui/svelte/tooltip';
import type { Snippet } from 'svelte';
type Props = TooltipContentBaseProps & {
class?: string;
children: Snippet;
showArrow?: boolean;
};
declare const TooltipContent: import("svelte").Component<Props, {}, "">;
type TooltipContent = ReturnType<typeof TooltipContent>;
export default TooltipContent;