UNPKG

@sgnl-pro/react-tree

Version:

A tree view component for React

9 lines (8 loc) 276 B
import { FC, HTMLAttributes } from 'react'; import './main.sass'; export interface INodeIconProps extends HTMLAttributes<HTMLDivElement> { isParent?: boolean; expanded?: boolean; iconClassName?: string; } export declare const NodeIcon: FC<INodeIconProps>;