UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 400 B
import type { PanelProps } from '@zag-js/splitter'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface SplitterPanelProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement>, PanelProps> { } declare const SplitterPanel: import("svelte").Component<SplitterPanelProps, {}, "ref">; type SplitterPanel = ReturnType<typeof SplitterPanel>; export default SplitterPanel;