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