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) 370 B
import type { DrawerPositionerBaseProps } from '@ark-ui/svelte/drawer'; import type { ClassValue } from 'svelte/elements'; interface Props extends DrawerPositionerBaseProps { class?: ClassValue; } declare const DrawerPositioner: import("svelte").Component<Props, {}, "">; type DrawerPositioner = ReturnType<typeof DrawerPositioner>; export default DrawerPositioner;