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) • 351 B
TypeScript
import type { ClassValue } from 'svelte/elements';
import type { Snippet } from 'svelte';
interface Props {
class?: ClassValue;
children: Snippet;
showArrow?: boolean;
}
declare const HoverCardContent: import("svelte").Component<Props, {}, "">;
type HoverCardContent = ReturnType<typeof HoverCardContent>;
export default HoverCardContent;