forstok-ui-lib 8.9.1 → 8.9.2
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/upload/drag.drop.tsx +10 -2
package/package.json
CHANGED
|
@@ -277,11 +277,19 @@ const UploadDragDropComponent = ({
|
|
|
277
277
|
</UploadDragDropFilePreviewCard>
|
|
278
278
|
{evRemove !== undefined && (
|
|
279
279
|
<i
|
|
280
|
-
className="remove-button remove"
|
|
280
|
+
className="remove-button remove-button__active remove"
|
|
281
281
|
onClick={handleRemove}
|
|
282
282
|
title="Remove File"
|
|
283
283
|
>
|
|
284
|
-
|
|
284
|
+
<svg
|
|
285
|
+
fill="none"
|
|
286
|
+
stroke="#70757a"
|
|
287
|
+
strokeWidth="2"
|
|
288
|
+
viewBox="0 0 24 24"
|
|
289
|
+
>
|
|
290
|
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
|
291
|
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
|
292
|
+
</svg>
|
|
285
293
|
</i>
|
|
286
294
|
)}
|
|
287
295
|
</UploadDragDropImagePreview>
|