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