UNPKG

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.

10 lines (9 loc) 310 B
import type { Snippet } from 'svelte'; import type { ClassValue } from 'svelte/elements'; interface Props { class?: ClassValue; children: Snippet; } declare const DrawerHeader: import("svelte").Component<Props, {}, "">; type DrawerHeader = ReturnType<typeof DrawerHeader>; export default DrawerHeader;