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