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