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