@dartech/arsenal-ui 1.3.18 → 1.3.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -2
- package/package.json +1 -1
package/index.js
CHANGED
@@ -3371,12 +3371,16 @@ const StringPropertyFields = ({
|
|
3371
3371
|
onKeyDown: handleKeyDown
|
3372
3372
|
},
|
3373
3373
|
InputProps: {
|
3374
|
-
endAdornment:
|
3374
|
+
endAdornment: jsx(IconButton, Object.assign({
|
3375
3375
|
size: "small",
|
3376
3376
|
onClick: handleAddValue,
|
3377
3377
|
disabled: !!error
|
3378
3378
|
}, {
|
3379
|
-
children:
|
3379
|
+
children: jsx(SvgIcon, {
|
3380
|
+
children: jsx("path", {
|
3381
|
+
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
3382
|
+
})
|
3383
|
+
})
|
3380
3384
|
}))
|
3381
3385
|
}
|
3382
3386
|
})
|