@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
20 lines (19 loc) • 822 B
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import "../core/index.js";
import { TreeProps } from "./tree.types.js";
import { TreeIcon } from "./treeIcon.js";
import { TreeItem } from "./treeItem.js";
import { TreeText } from "./treeText.js";
import "../index.js";
//#region src/tree/tree.d.ts
declare const TreeBase: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SystemProps, never>;
/** Displays a tree of tree link items and optional heading. Exposes some props to the children via context. */
declare const Tree: VuiComponent<'div', TreeProps> & {
Icon: typeof TreeIcon;
Item: typeof TreeItem;
Text: typeof TreeText;
};
//#endregion
export { Tree, Tree as default, TreeBase };
//# sourceMappingURL=tree.d.ts.map