UNPKG
@delove/reaflow
Version:
latest (5.4.1)
5.4.1
5.3.4
5.3.2
5.3.1
Node-based Visualizations for React
github.com/reaviz/reaflow
reaviz/reaflow
@delove/reaflow
/
dist
/
symbols
/
Icon
/
Icon.d.ts
12 lines
(11 loc)
•
237 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
FC
}
from
'react'
;
export
interface
IconProps
{
x
:
number
;
y
:
number
;
url
:
string
;
height
:
number
;
width
:
number
;
style
?:
any
;
className
?:
string
; }
export
declare
const
Icon
:
FC
<
Partial
<
IconProps
>>;