UNPKG
@tabula/ui-node-icon
Version:
beta (7.0.3-beta.0)
latest (12.0.0)
next (11.3.0-next.0)
12.0.0
11.13.0
11.12.0
11.11.0
11.10.0
11.9.0
11.8.1
11.8.0
11.7.0
11.6.0
11.5.0
11.4.0
11.3.0
11.3.0-next.0
11.2.2
11.2.1
11.2.0
11.1.0
11.0.0
11.0.0-next.0
10.1.0
10.0.0
9.0.0
9.0.0-next.0
8.0.3
8.0.2
8.0.1
8.0.0
7.1.0
7.0.3-beta.0
7.0.2
7.0.1
7.0.0
6.0.1
6.0.0
5.0.0
4.2.3
4.2.2
4.2.1
4.2.0
4.1.1
4.1.0
4.0.1
4.0.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
Icons for nodes
github.com/ReTable/ui-kit/tree/main/components/ui-node-icon
ReTable/ui-kit
@tabula/ui-node-icon
/
typings
/
utils.d.ts
7 lines
(6 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
ComponentType
,
HTMLProps
}
from
'react'
;
export
type
Props
=
HTMLProps
<
SVGSVGElement
> & {
isDisabled
?:
boolean
;
testId
?:
string
; };
export
declare
function
createIcon
(
Icon
:
ComponentType
<
Props
>,
iconClassName
:
string
):
ComponentType
<
Props
>;