UNPKG
@sgnl-pro/react-tree
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.4
0.1.3
0.1.2
A tree view component for React
@sgnl-pro/react-tree
/
dist
/
NodeIcon.d.ts
9 lines
(8 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
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
>;