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.

8 lines (7 loc) 289 B
import type { DrawerRootProps } from '@ark-ui/svelte/drawer'; interface Props extends Omit<DrawerRootProps, 'open'> { open?: boolean; } declare const DrawerRoot: import("svelte").Component<Props, {}, "open">; type DrawerRoot = ReturnType<typeof DrawerRoot>; export default DrawerRoot;