UNPKG
dmn-js-boxed-expression
Version:
latest (17.10.1)
17.10.1
17.10.0
17.9.0
17.8.1
17.8.0
17.7.0
17.6.0
17.5.0
17.4.0
17.3.0
17.2.1
17.1.0
17.0.2
17.0.1
17.0.0
16.8.2
16.8.1
16.8.0
16.7.1
16.7.0
16.6.1
16.5.0
16.4.0
16.3.2
16.3.1
16.3.0
16.2.3
16.2.2
16.2.1
16.2.0
A boxed expression view for dmn-js
bpmn-io/dmn-js
dmn-js-boxed-expression
/
lib
/
components
/
EditButton.js
12 lines
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ createVNode }
from
"inferno"
;
export
function
EditButton
(
{ label, onClick }
) {
return
createVNode
(
1
,
"button"
,
"edit-button dmn-icon-edit"
,
null
,
1
, {
"aria-label"
: label,
"type"
:
"button"
,
"onClick"
: onClick }); }
//# sourceMappingURL=EditButton.js.map