UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

7 lines (6 loc) 310 B
import { UseTreeViewNodeContext } from './use-tree-view-node-context'; import { ReactNode } from 'react'; export interface TreeViewNodeContextProps { children: (context: UseTreeViewNodeContext) => React.ReactNode; } export declare const TreeViewNodeContext: (props: TreeViewNodeContextProps) => ReactNode;