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.

9 lines (8 loc) 376 B
import type { DrawerDescriptionBaseProps } from '@ark-ui/svelte/drawer'; import type { ClassValue } from 'svelte/elements'; interface Props extends DrawerDescriptionBaseProps { class?: ClassValue; } declare const DrawerDescription: import("svelte").Component<Props, {}, "">; type DrawerDescription = ReturnType<typeof DrawerDescription>; export default DrawerDescription;