ui-ingredients
Version:
Headless component library for Svelte powered by zag
9 lines (8 loc) • 431 B
TypeScript
import type { PanelProps } from '@zag-js/splitter';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface SplitterPanelProps extends Merge<HtmlIngredientProps<'div', HTMLDivElement>, PanelProps> {
}
declare const SplitterPanel: import("svelte").Component<SplitterPanelProps, {}, "ref">;
type SplitterPanel = ReturnType<typeof SplitterPanel>;
export default SplitterPanel;