@flodesk/grain 9.9.0 → 9.10.0
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/es/icons/icon-archive.js +21 -0
- package/es/icons/index.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import "core-js/modules/es.object.assign.js";
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
7
|
+
|
|
8
|
+
var IconArchive = function IconArchive(props) {
|
|
9
|
+
return ___EmotionJSX("svg", _extends({
|
|
10
|
+
viewBox: "0 0 24 24",
|
|
11
|
+
fill: "none",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
13
|
+
}, props), ___EmotionJSX("path", {
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
clipRule: "evenodd",
|
|
16
|
+
d: "M0 4a2 2 0 012-2h20a2 2 0 012 2v3a2 2 0 01-2 2v11a2 2 0 01-2 2H4a2 2 0 01-2-2V9a2 2 0 01-2-2V4zm22 3H2V4h20v3zm-2 2H4v11h16V9zm-3 2H7v2h10v-2z",
|
|
17
|
+
fill: "currentColor"
|
|
18
|
+
}));
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default IconArchive;
|
package/es/icons/index.js
CHANGED
|
@@ -58,4 +58,5 @@ export { default as IconQuestion } from './icon-question';
|
|
|
58
58
|
export { default as IconReset } from './icon-reset';
|
|
59
59
|
export { default as IconDrag } from './icon-drag';
|
|
60
60
|
export { default as IconLocation } from './icon-location';
|
|
61
|
-
export { default as IconPlay } from './icon-play';
|
|
61
|
+
export { default as IconPlay } from './icon-play';
|
|
62
|
+
export { default as IconArchive } from './icon-archive';
|