ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 320 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface DrawerContentProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const DrawerContent: import("svelte").Component<DrawerContentProps, {}, "ref">;
type DrawerContent = ReturnType<typeof DrawerContent>;
export default DrawerContent;