@epilot360/icons 1.17.38 → 1.17.39
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/icons.config.yaml +16 -2
- package/index.js +653 -29
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/AdminPanelSettings/index.d.ts +4 -0
- package/react/AdminPanelSettings/index.js +209 -0
- package/react/AdminPanelSettings/index.js.map +1 -0
- package/react/DoNotDisturbOn/index.d.ts +4 -0
- package/react/DoNotDisturbOn/index.js +209 -0
- package/react/DoNotDisturbOn/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +8 -0
- package/react/EpilotIcon.js +509 -21
- package/react/EpilotIcon.js.map +1 -1
- package/react/MoreHoriz/index.js +32 -10
- package/react/MoreHoriz/index.js.map +1 -1
- package/react/MoreVert/index.js +32 -10
- package/react/MoreVert/index.js.map +1 -1
- package/react/Sync/index.d.ts +4 -0
- package/react/Sync/index.js +209 -0
- package/react/Sync/index.js.map +1 -0
- package/react/SyncDisabled/index.d.ts +4 -0
- package/react/SyncDisabled/index.js +209 -0
- package/react/SyncDisabled/index.js.map +1 -0
- package/react/index.d.ts +4 -0
- package/react/index.js +524 -24
- package/react/index.js.map +1 -1
- package/svg/AdminPanelSettings/icon-fill.svg +1 -0
- package/svg/AdminPanelSettings/icon.svg +1 -0
- package/svg/AdminPanelSettings/index.d.ts +3 -0
- package/svg/AdminPanelSettings/index.js +159 -0
- package/svg/AdminPanelSettings/index.js.map +1 -0
- package/svg/DoNotDisturbOn/icon-fill.svg +1 -0
- package/svg/DoNotDisturbOn/icon.svg +1 -0
- package/svg/DoNotDisturbOn/index.d.ts +3 -0
- package/svg/DoNotDisturbOn/index.js +159 -0
- package/svg/DoNotDisturbOn/index.js.map +1 -0
- package/svg/MoreHoriz/icon-fill.svg +5 -1
- package/svg/MoreHoriz/icon.svg +5 -1
- package/svg/MoreHoriz/index.js +32 -10
- package/svg/MoreHoriz/index.js.map +1 -1
- package/svg/MoreVert/icon-fill.svg +5 -1
- package/svg/MoreVert/icon.svg +5 -1
- package/svg/MoreVert/index.js +32 -10
- package/svg/MoreVert/index.js.map +1 -1
- package/svg/Sync/icon-fill.svg +1 -0
- package/svg/Sync/icon.svg +1 -0
- package/svg/Sync/index.d.ts +3 -0
- package/svg/Sync/index.js +159 -0
- package/svg/Sync/index.js.map +1 -0
- package/svg/SyncDisabled/icon-fill.svg +1 -0
- package/svg/SyncDisabled/icon.svg +1 -0
- package/svg/SyncDisabled/index.d.ts +3 -0
- package/svg/SyncDisabled/index.js +159 -0
- package/svg/SyncDisabled/index.js.map +1 -0
- package/svg/index.d.ts +4 -0
- package/svg/index.js +392 -24
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +4 -0
- package/svg/svgIcon.js +377 -21
- package/svg/svgIcon.js.map +1 -1
package/react/MoreHoriz/index.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
/* harmony export */ });
|
|
11
11
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
12
12
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
13
|
-
var
|
|
13
|
+
var _circle, _circle2, _circle3;
|
|
14
14
|
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); }
|
|
15
15
|
|
|
16
16
|
var SvgIconFill = function SvgIconFill(props) {
|
|
@@ -18,13 +18,24 @@ var SvgIconFill = function SvgIconFill(props) {
|
|
|
18
18
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19
19
|
width: 48,
|
|
20
20
|
height: 48,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
fill: "currentColor",
|
|
22
|
+
viewBox: "0 0 24 24"
|
|
23
|
+
}, props), _circle || (_circle = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
24
|
+
cx: 5,
|
|
25
|
+
cy: 12,
|
|
26
|
+
r: 2
|
|
27
|
+
})), _circle2 || (_circle2 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
28
|
+
cx: 12,
|
|
29
|
+
cy: 12,
|
|
30
|
+
r: 2
|
|
31
|
+
})), _circle3 || (_circle3 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
32
|
+
cx: 19,
|
|
33
|
+
cy: 12,
|
|
34
|
+
r: 2
|
|
24
35
|
})));
|
|
25
36
|
};
|
|
26
37
|
|
|
27
|
-
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"
|
|
38
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"48\" height=\"48\" fill=\"currentColor\">\n <circle cx=\"5\" cy=\"12\" r=\"2\"/>\n <circle cx=\"12\" cy=\"12\" r=\"2\"/>\n <circle cx=\"19\" cy=\"12\" r=\"2\"/>\n</svg>\n");
|
|
28
39
|
|
|
29
40
|
/***/ }),
|
|
30
41
|
|
|
@@ -36,7 +47,7 @@ var SvgIconFill = function SvgIconFill(props) {
|
|
|
36
47
|
/* harmony export */ });
|
|
37
48
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
38
49
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
39
|
-
var
|
|
50
|
+
var _circle, _circle2, _circle3;
|
|
40
51
|
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); }
|
|
41
52
|
|
|
42
53
|
var SvgIcon = function SvgIcon(props) {
|
|
@@ -44,13 +55,24 @@ var SvgIcon = function SvgIcon(props) {
|
|
|
44
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
45
56
|
width: 48,
|
|
46
57
|
height: 48,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
58
|
+
fill: "currentColor",
|
|
59
|
+
viewBox: "0 0 24 24"
|
|
60
|
+
}, props), _circle || (_circle = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
61
|
+
cx: 5,
|
|
62
|
+
cy: 12,
|
|
63
|
+
r: 2
|
|
64
|
+
})), _circle2 || (_circle2 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
65
|
+
cx: 12,
|
|
66
|
+
cy: 12,
|
|
67
|
+
r: 2
|
|
68
|
+
})), _circle3 || (_circle3 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
69
|
+
cx: 19,
|
|
70
|
+
cy: 12,
|
|
71
|
+
r: 2
|
|
50
72
|
})));
|
|
51
73
|
};
|
|
52
74
|
|
|
53
|
-
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"
|
|
75
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"48\" height=\"48\" fill=\"currentColor\">\n <circle cx=\"5\" cy=\"12\" r=\"2\"/>\n <circle cx=\"12\" cy=\"12\" r=\"2\"/>\n <circle cx=\"19\" cy=\"12\" r=\"2\"/>\n</svg>\n");
|
|
54
76
|
|
|
55
77
|
/***/ }),
|
|
56
78
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react/MoreHoriz/index.js","mappings":";;;;;;;;;;;;AAAA;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA,GAAG;AACH;AACyC;AACzC,sEAAe,
|
|
1
|
+
{"version":3,"file":"react/MoreHoriz/index.js","mappings":";;;;;;;;;;;;AAAA;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA;AACA,GAAG,6CAA6C,gDAAmB;AACnE;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG;AACH;AACyC;AACzC,sEAAe,uPAAuP;;;;;;;;;;;;ACzBtQ;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA;AACA,GAAG,6CAA6C,gDAAmB;AACnE;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG;AACH;AACqC;AACrC,sEAAe,uPAAuP;;;;;;;;;;;ACvB/P,MAAM,mBAA8B;AAAA,EACzC,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,SAAS;AACX;;;;;;;;ACPA;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACNkB;AAEuB;AACE;AACV;AAGjC,MAAM,OAAO;AAEN,SAAS,UAAU,OAAuB;AAC/C,QAAkC,uCAC7B,qDAAgB,GAChB,QAFG,UAVV,IAUoC,IAAd,sBAAc,IAAd,CAAZ;AAIR,QAAM,gBAAgB,YAAY,aAAa,4EAAQ,GAAG,iFAAM;AAEhE,QAAM,YAAY,MAAM,OAAO,EAAE,OAAO,MAAM,MAAM,QAAQ,MAAM,KAAK,IAAI,CAAC;AAE5E,SAAO,2EAAC,+CAAc,cAAY,QAAU,YAAe,UAAW;AACxE;AAEA,iEAAe,SAAS,EAAC","sources":["webpack://icons/./src/svg/MoreHoriz/icon-fill.svg","webpack://icons/./src/svg/MoreHoriz/icon.svg","webpack://icons/./src/react/common.ts","webpack://icons/external commonjs2 \"react\"","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/compat get default export","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/react/MoreHoriz/index.tsx"],"sourcesContent":["var _circle, _circle2, _circle3;\nfunction _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); }\nimport * as React from \"react\";\nvar SvgIconFill = function SvgIconFill(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n fill: \"currentColor\",\n viewBox: \"0 0 24 24\"\n }, props), _circle || (_circle = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 5,\n cy: 12,\n r: 2\n })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 12,\n r: 2\n })), _circle3 || (_circle3 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 19,\n cy: 12,\n r: 2\n })));\n};\nexport { SvgIconFill as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" viewBox=\\\"0 0 24 24\\\" width=\\\"48\\\" height=\\\"48\\\" fill=\\\"currentColor\\\">\\n <circle cx=\\\"5\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"19\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n</svg>\\n\";","var _circle, _circle2, _circle3;\nfunction _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); }\nimport * as React from \"react\";\nvar SvgIcon = function SvgIcon(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n fill: \"currentColor\",\n viewBox: \"0 0 24 24\"\n }, props), _circle || (_circle = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 5,\n cy: 12,\n r: 2\n })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 12,\n r: 2\n })), _circle3 || (_circle3 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 19,\n cy: 12,\n r: 2\n })));\n};\nexport { SvgIcon as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" viewBox=\\\"0 0 24 24\\\" width=\\\"48\\\" height=\\\"48\\\" fill=\\\"currentColor\\\">\\n <circle cx=\\\"5\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"19\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n</svg>\\n\";","import type { IconProps } from '../types';\n\nexport const defaultIconProps: IconProps = {\n width: 20,\n height: 20,\n fill: 'currentColor',\n variant: 'filled',\n};\n","module.exports = require(\"react\");","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import React from 'react';\n\nimport { ReactComponent as Filled } from '../../svg/MoreHoriz/icon-fill.svg';\nimport { ReactComponent as Outlined } from '../../svg/MoreHoriz/icon.svg';\nimport { defaultIconProps } from '../common';\nimport type { IconPropsReact } from '../types';\n\nconst name = 'more_horiz';\n\nexport function MoreHoriz(props: IconPropsReact) {\n const { variant, ...restProps } = {\n ...defaultIconProps,\n ...props,\n };\n const IconComponent = variant === 'outlined' ? Outlined : Filled;\n\n const overrides = props.size ? { width: props.size, height: props.size } : {};\n\n return <IconComponent aria-label={name} {...restProps} {...overrides} />;\n}\n\nexport default MoreHoriz;\n"],"names":[],"sourceRoot":""}
|
package/react/MoreVert/index.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
/* harmony export */ });
|
|
11
11
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
12
12
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
13
|
-
var
|
|
13
|
+
var _circle, _circle2, _circle3;
|
|
14
14
|
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); }
|
|
15
15
|
|
|
16
16
|
var SvgIconFill = function SvgIconFill(props) {
|
|
@@ -18,13 +18,24 @@ var SvgIconFill = function SvgIconFill(props) {
|
|
|
18
18
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19
19
|
width: 48,
|
|
20
20
|
height: 48,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
fill: "currentColor",
|
|
22
|
+
viewBox: "0 0 24 24"
|
|
23
|
+
}, props), _circle || (_circle = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
24
|
+
cx: 12,
|
|
25
|
+
cy: 5,
|
|
26
|
+
r: 2
|
|
27
|
+
})), _circle2 || (_circle2 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
28
|
+
cx: 12,
|
|
29
|
+
cy: 12,
|
|
30
|
+
r: 2
|
|
31
|
+
})), _circle3 || (_circle3 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
32
|
+
cx: 12,
|
|
33
|
+
cy: 19,
|
|
34
|
+
r: 2
|
|
24
35
|
})));
|
|
25
36
|
};
|
|
26
37
|
|
|
27
|
-
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"
|
|
38
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"48\" height=\"48\" fill=\"currentColor\">\n <circle cx=\"12\" cy=\"5\" r=\"2\"/>\n <circle cx=\"12\" cy=\"12\" r=\"2\"/>\n <circle cx=\"12\" cy=\"19\" r=\"2\"/>\n</svg>\n");
|
|
28
39
|
|
|
29
40
|
/***/ }),
|
|
30
41
|
|
|
@@ -36,7 +47,7 @@ var SvgIconFill = function SvgIconFill(props) {
|
|
|
36
47
|
/* harmony export */ });
|
|
37
48
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
38
49
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
39
|
-
var
|
|
50
|
+
var _circle, _circle2, _circle3;
|
|
40
51
|
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); }
|
|
41
52
|
|
|
42
53
|
var SvgIcon = function SvgIcon(props) {
|
|
@@ -44,13 +55,24 @@ var SvgIcon = function SvgIcon(props) {
|
|
|
44
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
45
56
|
width: 48,
|
|
46
57
|
height: 48,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
58
|
+
fill: "currentColor",
|
|
59
|
+
viewBox: "0 0 24 24"
|
|
60
|
+
}, props), _circle || (_circle = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
61
|
+
cx: 12,
|
|
62
|
+
cy: 5,
|
|
63
|
+
r: 2
|
|
64
|
+
})), _circle2 || (_circle2 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
65
|
+
cx: 12,
|
|
66
|
+
cy: 12,
|
|
67
|
+
r: 2
|
|
68
|
+
})), _circle3 || (_circle3 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle", {
|
|
69
|
+
cx: 12,
|
|
70
|
+
cy: 19,
|
|
71
|
+
r: 2
|
|
50
72
|
})));
|
|
51
73
|
};
|
|
52
74
|
|
|
53
|
-
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"
|
|
75
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"48\" height=\"48\" fill=\"currentColor\">\n <circle cx=\"12\" cy=\"5\" r=\"2\"/>\n <circle cx=\"12\" cy=\"12\" r=\"2\"/>\n <circle cx=\"12\" cy=\"19\" r=\"2\"/>\n</svg>\n");
|
|
54
76
|
|
|
55
77
|
/***/ }),
|
|
56
78
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react/MoreVert/index.js","mappings":";;;;;;;;;;;;AAAA;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA,GAAG;AACH;AACyC;AACzC,sEAAe,
|
|
1
|
+
{"version":3,"file":"react/MoreVert/index.js","mappings":";;;;;;;;;;;;AAAA;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA;AACA,GAAG,6CAA6C,gDAAmB;AACnE;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG;AACH;AACyC;AACzC,sEAAe,uPAAuP;;;;;;;;;;;;ACzBtQ;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA;AACA,GAAG,6CAA6C,gDAAmB;AACnE;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA;AACA;AACA,GAAG;AACH;AACqC;AACrC,sEAAe,uPAAuP;;;;;;;;;;;ACvB/P,MAAM,mBAA8B;AAAA,EACzC,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,SAAS;AACX;;;;;;;;ACPA;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACNkB;AAEuB;AACE;AACV;AAGjC,MAAM,OAAO;AAEN,SAAS,SAAS,OAAuB;AAC9C,QAAkC,uCAC7B,qDAAgB,GAChB,QAFG,UAVV,IAUoC,IAAd,sBAAc,IAAd,CAAZ;AAIR,QAAM,gBAAgB,YAAY,aAAa,2EAAQ,GAAG,gFAAM;AAEhE,QAAM,YAAY,MAAM,OAAO,EAAE,OAAO,MAAM,MAAM,QAAQ,MAAM,KAAK,IAAI,CAAC;AAE5E,SAAO,2EAAC,+CAAc,cAAY,QAAU,YAAe,UAAW;AACxE;AAEA,iEAAe,QAAQ,EAAC","sources":["webpack://icons/./src/svg/MoreVert/icon-fill.svg","webpack://icons/./src/svg/MoreVert/icon.svg","webpack://icons/./src/react/common.ts","webpack://icons/external commonjs2 \"react\"","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/compat get default export","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/react/MoreVert/index.tsx"],"sourcesContent":["var _circle, _circle2, _circle3;\nfunction _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); }\nimport * as React from \"react\";\nvar SvgIconFill = function SvgIconFill(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n fill: \"currentColor\",\n viewBox: \"0 0 24 24\"\n }, props), _circle || (_circle = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 5,\n r: 2\n })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 12,\n r: 2\n })), _circle3 || (_circle3 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 19,\n r: 2\n })));\n};\nexport { SvgIconFill as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" viewBox=\\\"0 0 24 24\\\" width=\\\"48\\\" height=\\\"48\\\" fill=\\\"currentColor\\\">\\n <circle cx=\\\"12\\\" cy=\\\"5\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"12\\\" cy=\\\"19\\\" r=\\\"2\\\"/>\\n</svg>\\n\";","var _circle, _circle2, _circle3;\nfunction _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); }\nimport * as React from \"react\";\nvar SvgIcon = function SvgIcon(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n fill: \"currentColor\",\n viewBox: \"0 0 24 24\"\n }, props), _circle || (_circle = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 5,\n r: 2\n })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 12,\n r: 2\n })), _circle3 || (_circle3 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 19,\n r: 2\n })));\n};\nexport { SvgIcon as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" viewBox=\\\"0 0 24 24\\\" width=\\\"48\\\" height=\\\"48\\\" fill=\\\"currentColor\\\">\\n <circle cx=\\\"12\\\" cy=\\\"5\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"/>\\n <circle cx=\\\"12\\\" cy=\\\"19\\\" r=\\\"2\\\"/>\\n</svg>\\n\";","import type { IconProps } from '../types';\n\nexport const defaultIconProps: IconProps = {\n width: 20,\n height: 20,\n fill: 'currentColor',\n variant: 'filled',\n};\n","module.exports = require(\"react\");","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import React from 'react';\n\nimport { ReactComponent as Filled } from '../../svg/MoreVert/icon-fill.svg';\nimport { ReactComponent as Outlined } from '../../svg/MoreVert/icon.svg';\nimport { defaultIconProps } from '../common';\nimport type { IconPropsReact } from '../types';\n\nconst name = 'more_vert';\n\nexport function MoreVert(props: IconPropsReact) {\n const { variant, ...restProps } = {\n ...defaultIconProps,\n ...props,\n };\n const IconComponent = variant === 'outlined' ? Outlined : Filled;\n\n const overrides = props.size ? { width: props.size, height: props.size } : {};\n\n return <IconComponent aria-label={name} {...restProps} {...overrides} />;\n}\n\nexport default MoreVert;\n"],"names":[],"sourceRoot":""}
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
/******/ (() => { // webpackBootstrap
|
|
2
|
+
/******/ "use strict";
|
|
3
|
+
/******/ var __webpack_modules__ = ({
|
|
4
|
+
|
|
5
|
+
/***/ 59033:
|
|
6
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7
|
+
|
|
8
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9
|
+
/* harmony export */ r: () => (/* binding */ SvgIconFill)
|
|
10
|
+
/* harmony export */ });
|
|
11
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
12
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
13
|
+
var _path;
|
|
14
|
+
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); }
|
|
15
|
+
|
|
16
|
+
var SvgIconFill = function SvgIconFill(props) {
|
|
17
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
|
|
18
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
+
width: 48,
|
|
20
|
+
height: 48,
|
|
21
|
+
viewBox: "0 -960 960 960"
|
|
22
|
+
}, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
|
|
23
|
+
d: "M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z"
|
|
24
|
+
})));
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z\"/></svg>");
|
|
28
|
+
|
|
29
|
+
/***/ }),
|
|
30
|
+
|
|
31
|
+
/***/ 55198:
|
|
32
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
33
|
+
|
|
34
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
35
|
+
/* harmony export */ r: () => (/* binding */ SvgIcon)
|
|
36
|
+
/* harmony export */ });
|
|
37
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
38
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
39
|
+
var _path;
|
|
40
|
+
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); }
|
|
41
|
+
|
|
42
|
+
var SvgIcon = function SvgIcon(props) {
|
|
43
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
width: 48,
|
|
46
|
+
height: 48,
|
|
47
|
+
viewBox: "0 -960 960 960"
|
|
48
|
+
}, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
|
|
49
|
+
d: "M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z"
|
|
50
|
+
})));
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z\"/></svg>");
|
|
54
|
+
|
|
55
|
+
/***/ }),
|
|
56
|
+
|
|
57
|
+
/***/ 58387:
|
|
58
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
59
|
+
|
|
60
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
61
|
+
/* harmony export */ defaultIconProps: () => (/* binding */ defaultIconProps)
|
|
62
|
+
/* harmony export */ });
|
|
63
|
+
|
|
64
|
+
const defaultIconProps = {
|
|
65
|
+
width: 20,
|
|
66
|
+
height: 20,
|
|
67
|
+
fill: "currentColor",
|
|
68
|
+
variant: "filled"
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
/***/ }),
|
|
73
|
+
|
|
74
|
+
/***/ 99497:
|
|
75
|
+
/***/ ((module) => {
|
|
76
|
+
|
|
77
|
+
module.exports = require("react");
|
|
78
|
+
|
|
79
|
+
/***/ })
|
|
80
|
+
|
|
81
|
+
/******/ });
|
|
82
|
+
/************************************************************************/
|
|
83
|
+
/******/ // The module cache
|
|
84
|
+
/******/ var __webpack_module_cache__ = {};
|
|
85
|
+
/******/
|
|
86
|
+
/******/ // The require function
|
|
87
|
+
/******/ function __webpack_require__(moduleId) {
|
|
88
|
+
/******/ // Check if module is in cache
|
|
89
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
90
|
+
/******/ if (cachedModule !== undefined) {
|
|
91
|
+
/******/ return cachedModule.exports;
|
|
92
|
+
/******/ }
|
|
93
|
+
/******/ // Create a new module (and put it into the cache)
|
|
94
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
95
|
+
/******/ // no module.id needed
|
|
96
|
+
/******/ // no module.loaded needed
|
|
97
|
+
/******/ exports: {}
|
|
98
|
+
/******/ };
|
|
99
|
+
/******/
|
|
100
|
+
/******/ // Execute the module function
|
|
101
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
102
|
+
/******/
|
|
103
|
+
/******/ // Return the exports of the module
|
|
104
|
+
/******/ return module.exports;
|
|
105
|
+
/******/ }
|
|
106
|
+
/******/
|
|
107
|
+
/************************************************************************/
|
|
108
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
109
|
+
/******/ (() => {
|
|
110
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
111
|
+
/******/ __webpack_require__.n = (module) => {
|
|
112
|
+
/******/ var getter = module && module.__esModule ?
|
|
113
|
+
/******/ () => (module['default']) :
|
|
114
|
+
/******/ () => (module);
|
|
115
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
116
|
+
/******/ return getter;
|
|
117
|
+
/******/ };
|
|
118
|
+
/******/ })();
|
|
119
|
+
/******/
|
|
120
|
+
/******/ /* webpack/runtime/define property getters */
|
|
121
|
+
/******/ (() => {
|
|
122
|
+
/******/ // define getter functions for harmony exports
|
|
123
|
+
/******/ __webpack_require__.d = (exports, definition) => {
|
|
124
|
+
/******/ for(var key in definition) {
|
|
125
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
126
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
127
|
+
/******/ }
|
|
128
|
+
/******/ }
|
|
129
|
+
/******/ };
|
|
130
|
+
/******/ })();
|
|
131
|
+
/******/
|
|
132
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
133
|
+
/******/ (() => {
|
|
134
|
+
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
135
|
+
/******/ })();
|
|
136
|
+
/******/
|
|
137
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
138
|
+
/******/ (() => {
|
|
139
|
+
/******/ // define __esModule on exports
|
|
140
|
+
/******/ __webpack_require__.r = (exports) => {
|
|
141
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
142
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
143
|
+
/******/ }
|
|
144
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
145
|
+
/******/ };
|
|
146
|
+
/******/ })();
|
|
147
|
+
/******/
|
|
148
|
+
/************************************************************************/
|
|
149
|
+
var __webpack_exports__ = {};
|
|
150
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
151
|
+
(() => {
|
|
152
|
+
__webpack_require__.r(__webpack_exports__);
|
|
153
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
154
|
+
/* harmony export */ Sync: () => (/* binding */ Sync),
|
|
155
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
156
|
+
/* harmony export */ });
|
|
157
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
|
|
158
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
159
|
+
/* harmony import */ var _svg_Sync_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(59033);
|
|
160
|
+
/* harmony import */ var _svg_Sync_icon_svg__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(55198);
|
|
161
|
+
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(58387);
|
|
162
|
+
|
|
163
|
+
var __defProp = Object.defineProperty;
|
|
164
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
165
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
166
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
167
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
168
|
+
var __spreadValues = (a, b) => {
|
|
169
|
+
for (var prop in b || (b = {}))
|
|
170
|
+
if (__hasOwnProp.call(b, prop))
|
|
171
|
+
__defNormalProp(a, prop, b[prop]);
|
|
172
|
+
if (__getOwnPropSymbols)
|
|
173
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
174
|
+
if (__propIsEnum.call(b, prop))
|
|
175
|
+
__defNormalProp(a, prop, b[prop]);
|
|
176
|
+
}
|
|
177
|
+
return a;
|
|
178
|
+
};
|
|
179
|
+
var __objRest = (source, exclude) => {
|
|
180
|
+
var target = {};
|
|
181
|
+
for (var prop in source)
|
|
182
|
+
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
183
|
+
target[prop] = source[prop];
|
|
184
|
+
if (source != null && __getOwnPropSymbols)
|
|
185
|
+
for (var prop of __getOwnPropSymbols(source)) {
|
|
186
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
187
|
+
target[prop] = source[prop];
|
|
188
|
+
}
|
|
189
|
+
return target;
|
|
190
|
+
};
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
const name = "sync";
|
|
196
|
+
function Sync(props) {
|
|
197
|
+
const _a = __spreadValues(__spreadValues({}, _common__WEBPACK_IMPORTED_MODULE_3__.defaultIconProps), props), { variant } = _a, restProps = __objRest(_a, ["variant"]);
|
|
198
|
+
const IconComponent = variant === "outlined" ? _svg_Sync_icon_svg__WEBPACK_IMPORTED_MODULE_2__/* .ReactComponent */ .r : _svg_Sync_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__/* .ReactComponent */ .r;
|
|
199
|
+
const overrides = props.size ? { width: props.size, height: props.size } : {};
|
|
200
|
+
return /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0___default().createElement(IconComponent, __spreadValues(__spreadValues({ "aria-label": name }, restProps), overrides));
|
|
201
|
+
}
|
|
202
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Sync);
|
|
203
|
+
|
|
204
|
+
})();
|
|
205
|
+
|
|
206
|
+
module.exports = __webpack_exports__;
|
|
207
|
+
/******/ })()
|
|
208
|
+
;
|
|
209
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react/Sync/index.js","mappings":";;;;;;;;;;;;AAAA;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA,GAAG;AACH;AACyC;AACzC,sEAAe,2mCAA2mC;;;;;;;;;;;;ACd1nC;AACA,sBAAsB,sEAAsE,gBAAgB,sBAAsB,OAAO,2BAA2B,0BAA0B,yDAAyD,iCAAiC,kBAAkB;AAC3Q;AAC/B;AACA,sBAAsB,gDAAmB;AACzC;AACA;AACA;AACA;AACA,GAAG,yCAAyC,gDAAmB;AAC/D;AACA,GAAG;AACH;AACqC;AACrC,sEAAe,2mCAA2mC;;;;;;;;;;;ACZnnC,MAAM,mBAA8B;AAAA,EACzC,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,SAAS;AACX;;;;;;;;ACPA;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACNkB;AAEuB;AACE;AACV;AAGjC,MAAM,OAAO;AAEN,SAAS,KAAK,OAAuB;AAC1C,QAAkC,uCAC7B,qDAAgB,GAChB,QAFG,UAVV,IAUoC,IAAd,sBAAc,IAAd,CAAZ;AAIR,QAAM,gBAAgB,YAAY,aAAa,uEAAQ,GAAG,4EAAM;AAEhE,QAAM,YAAY,MAAM,OAAO,EAAE,OAAO,MAAM,MAAM,QAAQ,MAAM,KAAK,IAAI,CAAC;AAE5E,SAAO,2EAAC,+CAAc,cAAY,QAAU,YAAe,UAAW;AACxE;AAEA,iEAAe,IAAI,EAAC","sources":["webpack://icons/./src/svg/Sync/icon-fill.svg","webpack://icons/./src/svg/Sync/icon.svg","webpack://icons/./src/react/common.ts","webpack://icons/external commonjs2 \"react\"","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/compat get default export","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/react/Sync/index.tsx"],"sourcesContent":["var _path;\nfunction _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); }\nimport * as React from \"react\";\nvar SvgIconFill = function SvgIconFill(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n viewBox: \"0 -960 960 960\"\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z\"\n })));\n};\nexport { SvgIconFill as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"48\\\" height=\\\"48\\\" viewBox=\\\"0 -960 960 960\\\"><path d=\\\"M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z\\\"/></svg>\";","var _path;\nfunction _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); }\nimport * as React from \"react\";\nvar SvgIcon = function SvgIcon(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 48,\n height: 48,\n viewBox: \"0 -960 960 960\"\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z\"\n })));\n};\nexport { SvgIcon as ReactComponent };\nexport default \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"48\\\" height=\\\"48\\\" viewBox=\\\"0 -960 960 960\\\"><path d=\\\"M229.04-477q0 60.74 22.66 105.26 22.65 44.52 61.52 77.39l26.61 17.61v-80.43q0-14.13 9.34-23.48 9.35-9.35 24.05-9.35 14.13 0 23.48 9.35 9.34 9.35 9.34 23.48v166.04q0 16.96-11.32 28.28-11.33 11.33-28.29 11.33H200.96q-14.13 0-23.48-9.63t-9.35-23.76q0-14.13 9.35-23.48t24.04-9.35H284l-9.35-8.04q-64.56-53.83-94.98-114.68Q149.26-401.3 149.26-477q0-98.52 53.17-179.41 53.18-80.89 141.27-121.46 13.82-6.13 26.08 1.7 12.26 7.82 16.83 22.78 5 14.96-1.98 29.56-6.98 14.61-20.8 22.31-61.74 32.87-98.26 93.11-36.53 60.24-36.53 131.41Zm501.92-6q0-45.74-22.94-93.26-22.93-47.52-58.67-84.39l-25.61-22.61v80.43q0 14.13-9.63 23.48T590.35-570q-14.13 0-23.76-9.63t-9.63-23.76v-165.48q0-16.96 11.32-28.28 11.33-11.33 28.85-11.33h164.91q14.13 0 23.76 9.35t9.63 23.48q0 14.13-9.63 23.76t-23.76 9.63H678l9.91 10.04q61.13 57.13 91.98 122.83Q810.74-543.7 810.74-483q0 97.52-51.39 177.41T621.3-183.13q-13.82 7.13-27.58-.2-13.76-7.32-18.76-23.28-5.57-14.96 1.41-29.56 6.98-14.61 21.37-22.31 61.61-31.87 97.41-92.61 35.81-60.74 35.81-131.91Z\\\"/></svg>\";","import type { IconProps } from '../types';\n\nexport const defaultIconProps: IconProps = {\n width: 20,\n height: 20,\n fill: 'currentColor',\n variant: 'filled',\n};\n","module.exports = require(\"react\");","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import React from 'react';\n\nimport { ReactComponent as Filled } from '../../svg/Sync/icon-fill.svg';\nimport { ReactComponent as Outlined } from '../../svg/Sync/icon.svg';\nimport { defaultIconProps } from '../common';\nimport type { IconPropsReact } from '../types';\n\nconst name = 'sync';\n\nexport function Sync(props: IconPropsReact) {\n const { variant, ...restProps } = {\n ...defaultIconProps,\n ...props,\n };\n const IconComponent = variant === 'outlined' ? Outlined : Filled;\n\n const overrides = props.size ? { width: props.size, height: props.size } : {};\n\n return <IconComponent aria-label={name} {...restProps} {...overrides} />;\n}\n\nexport default Sync;\n"],"names":[],"sourceRoot":""}
|