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