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.

13 lines (12 loc) 465 B
import type { DrawerContentBaseProps } from '@ark-ui/svelte/drawer'; import type { ClassValue } from 'svelte/elements'; interface Props extends DrawerContentBaseProps { class?: ClassValue; backdropClass?: ClassValue; positionerClass?: ClassValue; maxWidth?: string; maxHeight?: string; } declare const DrawerContent: import("svelte").Component<Props, {}, "">; type DrawerContent = ReturnType<typeof DrawerContent>; export default DrawerContent;