UNPKG
reagraph
Version:
latest (4.32.0)
4.32.0
4.31.0
4.30.8
4.30.7
4.30.6
4.30.5
4.30.4
4.30.3
4.30.2
4.30.1
4.30.0
4.29.0
4.28.0
4.27.0
4.26.0
4.25.0
4.24.2
4.24.1
4.24.0
4.23.1
4.23.0
4.22.0
4.21.6
4.21.5
4.21.4
4.21.3
4.21.2
4.21.1
4.21.0
4.20.1
4.20.0
4.19.5
4.19.4
4.19.3
4.19.2
4.19.1
4.19.0
4.18.1
4.18.0
4.17.4
4.17.3
4.17.2
4.17.1
4.17.0
4.16.1
4.16.0
4.15.27
4.15.26
4.15.25
4.15.24
4.15.23
4.15.22
4.15.21
4.15.20
4.15.19
4.15.18
4.15.17
4.15.16
4.15.15
4.15.14
4.15.13
4.15.12
4.15.11
4.15.10
4.15.9
4.15.8
4.15.7
4.15.6
4.15.5
4.15.4
4.15.3
4.15.2
4.15.1
4.15.0
4.14.2
4.14.1
4.14.0
4.13.0
4.12.4
4.12.3
4.12.2
4.12.1
4.12.0
4.11.1
4.11.0
4.10.5
4.10.4
4.10.3
4.10.2
4.10.1
4.10.0
4.9.3
4.9.2
4.9.1
4.9.0
4.8.4
4.8.3
4.8.2
4.8.1
4.8.0
4.7.12
4.7.11
4.7.10
4.7.9
4.7.8
4.7.7
4.7.6
4.7.5
4.7.4
4.7.3
4.7.2
4.7.1
4.7.0
4.6.3
4.6.2
4.6.1
4.6.0
4.5.1
4.5.0
4.4.5
4.4.4
4.4.3
4.4.2
4.4.1
4.4.0
4.3.1
4.3.0
4.2.0
4.1.0
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.0.2
3.0.1
3.0.0
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
0.0.1
WebGL Node-based Graph for React
github.com/reaviz/reagraph
reaviz/reagraph
reagraph
/
dist
/
symbols
/
nodes
/
SphereWithIcon.d.ts
11 lines
(9 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
FC
}
from
'react'
;
import
{
NodeRendererProps
}
from
'../../types'
;
export
interface
SphereWithIconProps
extends
NodeRendererProps
{
/** * The image to display on the icon. */
image
:
string
; }
export
declare
const
SphereWithIcon
:
FC
<
SphereWithIconProps
>;