@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
18 lines (15 loc) • 493 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { TreeItemProps } from './types.js';
import '@react-types/shared';
import 'react-aria-components';
import 'tailwind-variants';
import '../../hooks/use-tree/types.js';
import 'react';
import './styles.js';
/**
* TreeItem - Individual node in a tree
*
* Represents a single item in the tree structure
*/
declare function TreeItem({ className, id, ...rest }: TreeItemProps): react_jsx_runtime.JSX.Element;
export { TreeItem };