UNPKG

@ark-ui/react

Version:

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

14 lines (13 loc) 345 B
import { JsonNode } from '@zag-js/json-tree-utils'; interface JsonTreeViewKeyNodeProps { /** * The node to render. */ node: JsonNode; /** * Whether to show quotes on the key. */ showQuotes?: boolean; } export declare const JsonTreeViewKeyNode: (props: JsonTreeViewKeyNodeProps) => React.ReactNode; export {};