@flodesk/grain 7.1.0 → 7.2.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-reset.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
|
+
function IconReset(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: "M.026 2.28l2.052 8.738.228.974.974-.229 8.738-2.05-.457-1.948L4.42 9.442A8.007 8.007 0 019.93 4.27v.002a8.026 8.026 0 011.788-.27 8.023 8.023 0 011.844.15A7.963 7.963 0 0117.47 6.16a8.043 8.043 0 012.258 3.77 8.02 8.02 0 01.271 1.83 8.022 8.022 0 01-.152 1.801 7.962 7.962 0 01-2.025 3.929 8.042 8.042 0 01-3.75 2.238 8.025 8.025 0 01-1.831.27 8.029 8.029 0 01-1.801-.152v.002a8 8 0 01-6.166-5.777l-1.932.517c1.225 4.573 5.429 7.552 9.964 7.41a9.998 9.998 0 009.693-10.304 9.999 9.999 0 00-10.346-9.69 10.019 10.019 0 00-8.42 5.181L1.974 1.823.026 2.28z",
|
|
17
|
+
fill: "currentColor"
|
|
18
|
+
}));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export default IconReset;
|
package/es/icons/index.js
CHANGED
|
@@ -52,4 +52,5 @@ export { default as IconDownload } from './icon-download';
|
|
|
52
52
|
export { default as IconShow } from './icon-show';
|
|
53
53
|
export { default as IconHide } from './icon-hide';
|
|
54
54
|
export { default as IconInfo } from './icon-info';
|
|
55
|
-
export { default as IconQuestion } from './icon-question';
|
|
55
|
+
export { default as IconQuestion } from './icon-question';
|
|
56
|
+
export { default as IconReset } from './icon-reset';
|