UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 302 B
import type { HtmlIngredientProps } from '../types.js'; export interface DrawerBodyProps extends HtmlIngredientProps<'div', HTMLDivElement> { } declare const DrawerBody: import("svelte").Component<DrawerBodyProps, {}, "ref">; type DrawerBody = ReturnType<typeof DrawerBody>; export default DrawerBody;