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