@activecollab/components 2.0.353 → 2.0.354

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.
Files changed (39) hide show
  1. package/dist/cjs/components/Icons/collection/Cloud.js +47 -0
  2. package/dist/cjs/components/Icons/collection/Cloud.js.map +1 -0
  3. package/dist/cjs/components/Icons/collection/CloudDeploy.js +53 -0
  4. package/dist/cjs/components/Icons/collection/CloudDeploy.js.map +1 -0
  5. package/dist/cjs/components/Icons/collection/CloudDeployFailed.js +53 -0
  6. package/dist/cjs/components/Icons/collection/CloudDeployFailed.js.map +1 -0
  7. package/dist/cjs/components/Icons/collection/GitMerge.js +57 -0
  8. package/dist/cjs/components/Icons/collection/GitMerge.js.map +1 -0
  9. package/dist/cjs/components/Icons/collection/GitPullRequestClosed.js +8 -8
  10. package/dist/cjs/components/Icons/collection/GitPullRequestClosed.js.map +1 -1
  11. package/dist/cjs/components/Icons/collection/index.js +28 -0
  12. package/dist/cjs/components/Icons/collection/index.js.map +1 -1
  13. package/dist/esm/components/Icons/collection/Cloud.d.ts +15 -0
  14. package/dist/esm/components/Icons/collection/Cloud.d.ts.map +1 -0
  15. package/dist/esm/components/Icons/collection/Cloud.js +40 -0
  16. package/dist/esm/components/Icons/collection/Cloud.js.map +1 -0
  17. package/dist/esm/components/Icons/collection/CloudDeploy.d.ts +17 -0
  18. package/dist/esm/components/Icons/collection/CloudDeploy.d.ts.map +1 -0
  19. package/dist/esm/components/Icons/collection/CloudDeploy.js +46 -0
  20. package/dist/esm/components/Icons/collection/CloudDeploy.js.map +1 -0
  21. package/dist/esm/components/Icons/collection/CloudDeployFailed.d.ts +17 -0
  22. package/dist/esm/components/Icons/collection/CloudDeployFailed.d.ts.map +1 -0
  23. package/dist/esm/components/Icons/collection/CloudDeployFailed.js +46 -0
  24. package/dist/esm/components/Icons/collection/CloudDeployFailed.js.map +1 -0
  25. package/dist/esm/components/Icons/collection/GitMerge.d.ts +17 -0
  26. package/dist/esm/components/Icons/collection/GitMerge.d.ts.map +1 -0
  27. package/dist/esm/components/Icons/collection/GitMerge.js +50 -0
  28. package/dist/esm/components/Icons/collection/GitMerge.js.map +1 -0
  29. package/dist/esm/components/Icons/collection/GitPullRequestClosed.js +8 -8
  30. package/dist/esm/components/Icons/collection/GitPullRequestClosed.js.map +1 -1
  31. package/dist/esm/components/Icons/collection/index.d.ts +4 -0
  32. package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
  33. package/dist/esm/components/Icons/collection/index.js +4 -0
  34. package/dist/esm/components/Icons/collection/index.js.map +1 -1
  35. package/dist/index.js +434 -264
  36. package/dist/index.js.map +1 -1
  37. package/dist/index.min.js +1 -1
  38. package/dist/index.min.js.map +1 -1
  39. package/package.json +1 -1
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _GradientDefs = require("../../GradientDefs");
9
+ var _excluded = ["gradient"];
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
12
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
13
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
14
+ /**
15
+ * @component CloudIcon
16
+ * @description
17
+ * Outline cloud glyph for cloud/storage/sync signifiers.
18
+ *
19
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
20
+ *
21
+ * @see https://design.activecollab.com/docs/foundations/icons
22
+ */
23
+ var CloudIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
24
+ var gradient = _ref.gradient,
25
+ props = _objectWithoutProperties(_ref, _excluded);
26
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
27
+ xmlns: "http://www.w3.org/2000/svg",
28
+ width: 24,
29
+ height: 24,
30
+ viewBox: "0 0 24 24",
31
+ "data-testid": "CloudIcon",
32
+ fill: "none",
33
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
34
+ strokeWidth: 2,
35
+ strokeLinecap: "round",
36
+ strokeLinejoin: "round",
37
+ focusable: false,
38
+ ref: ref
39
+ }, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
40
+ gradient: gradient
41
+ }), /*#__PURE__*/_react.default.createElement("path", {
42
+ d: "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"
43
+ }));
44
+ });
45
+ CloudIcon.displayName = "CloudIcon";
46
+ var _default = exports.default = CloudIcon;
47
+ //# sourceMappingURL=Cloud.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Cloud.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","CloudIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","stroke","strokeWidth","strokeLinecap","strokeLinejoin","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/Cloud.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component CloudIcon\n * @description\n * Outline cloud glyph for cloud/storage/sync signifiers.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.\n *\n * @see https://design.activecollab.com/docs/foundations/icons\n */\nconst CloudIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"CloudIcon\"\n fill=\"none\"\n stroke={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.stroke\n ? props.stroke\n : \"var(--color-theme-600)\"\n }\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878\" />\n </svg>\n )\n);\nCloudIcon.displayName = \"CloudIcon\";\nexport default CloudIcon;\n"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _GradientDefs = require("../../GradientDefs");
9
+ var _excluded = ["gradient"];
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
12
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
13
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
14
+ /**
15
+ * @component CloudDeployIcon
16
+ * @description
17
+ * Outline cloud glyph with an upward arrow through the middle for
18
+ * deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so
19
+ * it does not intersect the arrow shaft.
20
+ *
21
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
22
+ *
23
+ * @see https://design.activecollab.com/docs/foundations/icons
24
+ */
25
+ var CloudDeployIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
26
+ var gradient = _ref.gradient,
27
+ props = _objectWithoutProperties(_ref, _excluded);
28
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ width: 24,
31
+ height: 24,
32
+ viewBox: "0 0 24 24",
33
+ "data-testid": "CloudDeployIcon",
34
+ fill: "none",
35
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
36
+ strokeWidth: 2,
37
+ strokeLinecap: "round",
38
+ strokeLinejoin: "round",
39
+ focusable: false,
40
+ ref: ref
41
+ }, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
42
+ gradient: gradient
43
+ }), /*#__PURE__*/_react.default.createElement("path", {
44
+ d: "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-3.535M9 18h-2.343"
45
+ }), /*#__PURE__*/_react.default.createElement("path", {
46
+ d: "M12 20v-8"
47
+ }), /*#__PURE__*/_react.default.createElement("path", {
48
+ d: "M9.5 14.5l2.5 -2.5l2.5 2.5"
49
+ }));
50
+ });
51
+ CloudDeployIcon.displayName = "CloudDeployIcon";
52
+ var _default = exports.default = CloudDeployIcon;
53
+ //# sourceMappingURL=CloudDeploy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudDeploy.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","CloudDeployIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","stroke","strokeWidth","strokeLinecap","strokeLinejoin","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/CloudDeploy.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component CloudDeployIcon\n * @description\n * Outline cloud glyph with an upward arrow through the middle for\n * deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so\n * it does not intersect the arrow shaft.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.\n *\n * @see https://design.activecollab.com/docs/foundations/icons\n */\nconst CloudDeployIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"CloudDeployIcon\"\n fill=\"none\"\n stroke={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.stroke\n ? props.stroke\n : \"var(--color-theme-600)\"\n }\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-3.535M9 18h-2.343\" />\n <path d=\"M12 20v-8\" />\n <path d=\"M9.5 14.5l2.5 -2.5l2.5 2.5\" />\n </svg>\n )\n);\nCloudDeployIcon.displayName = \"CloudDeployIcon\";\nexport default CloudDeployIcon;\n"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _GradientDefs = require("../../GradientDefs");
9
+ var _excluded = ["gradient"];
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
12
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
13
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
14
+ /**
15
+ * @component CloudDeployFailedIcon
16
+ * @description
17
+ * Outline cloud glyph with an X through the bottom for failed
18
+ * deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so
19
+ * it does not intersect the X.
20
+ *
21
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
22
+ *
23
+ * @see https://design.activecollab.com/docs/foundations/icons
24
+ */
25
+ var CloudDeployFailedIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
26
+ var gradient = _ref.gradient,
27
+ props = _objectWithoutProperties(_ref, _excluded);
28
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ width: 24,
31
+ height: 24,
32
+ viewBox: "0 0 24 24",
33
+ "data-testid": "CloudDeployFailedIcon",
34
+ fill: "none",
35
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
36
+ strokeWidth: 2,
37
+ strokeLinecap: "round",
38
+ strokeLinejoin: "round",
39
+ focusable: false,
40
+ ref: ref
41
+ }, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
42
+ gradient: gradient
43
+ }), /*#__PURE__*/_react.default.createElement("path", {
44
+ d: "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-1.535M7 18h-0.343"
45
+ }), /*#__PURE__*/_react.default.createElement("path", {
46
+ d: "M9.5 15.5l5 5"
47
+ }), /*#__PURE__*/_react.default.createElement("path", {
48
+ d: "M14.5 15.5l-5 5"
49
+ }));
50
+ });
51
+ CloudDeployFailedIcon.displayName = "CloudDeployFailedIcon";
52
+ var _default = exports.default = CloudDeployFailedIcon;
53
+ //# sourceMappingURL=CloudDeployFailed.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudDeployFailed.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","CloudDeployFailedIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","stroke","strokeWidth","strokeLinecap","strokeLinejoin","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/CloudDeployFailed.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component CloudDeployFailedIcon\n * @description\n * Outline cloud glyph with an X through the bottom for failed\n * deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so\n * it does not intersect the X.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.\n *\n * @see https://design.activecollab.com/docs/foundations/icons\n */\nconst CloudDeployFailedIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"CloudDeployFailedIcon\"\n fill=\"none\"\n stroke={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.stroke\n ? props.stroke\n : \"var(--color-theme-600)\"\n }\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-1.535M7 18h-0.343\" />\n <path d=\"M9.5 15.5l5 5\" />\n <path d=\"M14.5 15.5l-5 5\" />\n </svg>\n )\n);\nCloudDeployFailedIcon.displayName = \"CloudDeployFailedIcon\";\nexport default CloudDeployFailedIcon;\n"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _GradientDefs = require("../../GradientDefs");
9
+ var _excluded = ["gradient"];
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
12
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
13
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
14
+ /**
15
+ * @component GitMergeIcon
16
+ * @description
17
+ * Outline git merge glyph for source-control signifiers. Matches
18
+ * GitPullRequestIcon, but the incoming branch runs as a connector line into
19
+ * the upper-left node instead of ending in an arrowhead, signifying a merge.
20
+ *
21
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
22
+ *
23
+ * @see https://design.activecollab.com/docs/foundations/icons
24
+ */
25
+ var GitMergeIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
26
+ var gradient = _ref.gradient,
27
+ props = _objectWithoutProperties(_ref, _excluded);
28
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ width: 24,
31
+ height: 24,
32
+ viewBox: "0 0 24 24",
33
+ "data-testid": "GitMergeIcon",
34
+ fill: "none",
35
+ stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
36
+ strokeWidth: 2,
37
+ strokeLinecap: "round",
38
+ strokeLinejoin: "round",
39
+ focusable: false,
40
+ ref: ref
41
+ }, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
42
+ gradient: gradient
43
+ }), /*#__PURE__*/_react.default.createElement("path", {
44
+ d: "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
45
+ }), /*#__PURE__*/_react.default.createElement("path", {
46
+ d: "M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
47
+ }), /*#__PURE__*/_react.default.createElement("path", {
48
+ d: "M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
49
+ }), /*#__PURE__*/_react.default.createElement("path", {
50
+ d: "M7 8v8"
51
+ }), /*#__PURE__*/_react.default.createElement("path", {
52
+ d: "M9 6h4a4 4 0 0 1 4 4v6"
53
+ }));
54
+ });
55
+ GitMergeIcon.displayName = "GitMergeIcon";
56
+ var _default = exports.default = GitMergeIcon;
57
+ //# sourceMappingURL=GitMerge.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GitMerge.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","GitMergeIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","stroke","strokeWidth","strokeLinecap","strokeLinejoin","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/GitMerge.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component GitMergeIcon\n * @description\n * Outline git merge glyph for source-control signifiers. Matches\n * GitPullRequestIcon, but the incoming branch runs as a connector line into\n * the upper-left node instead of ending in an arrowhead, signifying a merge.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.\n *\n * @see https://design.activecollab.com/docs/foundations/icons\n */\nconst GitMergeIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"GitMergeIcon\"\n fill=\"none\"\n stroke={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.stroke\n ? props.stroke\n : \"var(--color-theme-600)\"\n }\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M7 8v8\" />\n <path d=\"M9 6h4a4 4 0 0 1 4 4v6\" />\n </svg>\n )\n);\nGitMergeIcon.displayName = \"GitMergeIcon\";\nexport default GitMergeIcon;\n"],"mappings":"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","ignoreList":[]}
@@ -42,21 +42,21 @@ var GitPullRequestClosedIcon = /*#__PURE__*/_react.default.forwardRef(function (
42
42
  }, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
43
43
  gradient: gradient
44
44
  }), /*#__PURE__*/_react.default.createElement("path", {
45
- d: "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
45
+ d: "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
46
46
  }), /*#__PURE__*/_react.default.createElement("path", {
47
- d: "M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
47
+ d: "M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
48
48
  }), /*#__PURE__*/_react.default.createElement("path", {
49
- d: "M6 8v8"
49
+ d: "M7 8v8"
50
50
  }), /*#__PURE__*/_react.default.createElement("path", {
51
- d: "M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
51
+ d: "M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
52
52
  }), /*#__PURE__*/_react.default.createElement("path", {
53
- d: "M18 13.5v0"
53
+ d: "M17 13.5v0"
54
54
  }), /*#__PURE__*/_react.default.createElement("path", {
55
- d: "M18 10.5v0"
55
+ d: "M17 10.5v0"
56
56
  }), /*#__PURE__*/_react.default.createElement("path", {
57
- d: "M16 4l4 4"
57
+ d: "M15 4l4 4"
58
58
  }), /*#__PURE__*/_react.default.createElement("path", {
59
- d: "M20 4l-4 4"
59
+ d: "M19 4l-4 4"
60
60
  }));
61
61
  });
62
62
  GitPullRequestClosedIcon.displayName = "GitPullRequestClosedIcon";
@@ -1 +1 @@
1
- {"version":3,"file":"GitPullRequestClosed.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","GitPullRequestClosedIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","stroke","strokeWidth","strokeLinecap","strokeLinejoin","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/GitPullRequestClosed.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component GitPullRequestClosedIcon\n * @description\n * Outline git pull-request glyph for a closed (unmerged) pull request.\n * The left branch matches GitPullRequestIcon (two nodes and a connecting line).\n * On the right, the incoming branch is shown as two evenly spaced dots leading\n * up to an X node, signifying that the pull request was closed without merging.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.\n *\n * @see https://design.activecollab.com/docs/foundations/icons\n */\nconst GitPullRequestClosedIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"GitPullRequestClosedIcon\"\n fill=\"none\"\n stroke={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.stroke\n ? props.stroke\n : \"var(--color-theme-600)\"\n }\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M6 8v8\" />\n <path d=\"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M18 13.5v0\" />\n <path d=\"M18 10.5v0\" />\n <path d=\"M16 4l4 4\" />\n <path d=\"M20 4l-4 4\" />\n </svg>\n )\n);\nGitPullRequestClosedIcon.displayName = \"GitPullRequestClosedIcon\";\nexport default GitPullRequestClosedIcon;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"GitPullRequestClosed.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","GitPullRequestClosedIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","stroke","strokeWidth","strokeLinecap","strokeLinejoin","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/GitPullRequestClosed.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component GitPullRequestClosedIcon\n * @description\n * Outline git pull-request glyph for a closed (unmerged) pull request.\n * The left branch matches GitPullRequestIcon (two nodes and a connecting line).\n * On the right, the incoming branch is shown as two evenly spaced dots leading\n * up to an X node, signifying that the pull request was closed without merging.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.\n *\n * @see https://design.activecollab.com/docs/foundations/icons\n */\nconst GitPullRequestClosedIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"GitPullRequestClosedIcon\"\n fill=\"none\"\n stroke={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.stroke\n ? props.stroke\n : \"var(--color-theme-600)\"\n }\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M7 8v8\" />\n <path d=\"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0\" />\n <path d=\"M17 13.5v0\" />\n <path d=\"M17 10.5v0\" />\n <path d=\"M15 4l4 4\" />\n <path d=\"M19 4l-4 4\" />\n </svg>\n )\n);\nGitPullRequestClosedIcon.displayName = \"GitPullRequestClosedIcon\";\nexport default GitPullRequestClosedIcon;\n"],"mappings":"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","ignoreList":[]}
@@ -321,6 +321,24 @@ Object.defineProperty(exports, "CloseSmallIcon", {
321
321
  return _CloseSmall.default;
322
322
  }
323
323
  });
324
+ Object.defineProperty(exports, "CloudDeployFailedIcon", {
325
+ enumerable: true,
326
+ get: function get() {
327
+ return _CloudDeployFailed.default;
328
+ }
329
+ });
330
+ Object.defineProperty(exports, "CloudDeployIcon", {
331
+ enumerable: true,
332
+ get: function get() {
333
+ return _CloudDeploy.default;
334
+ }
335
+ });
336
+ Object.defineProperty(exports, "CloudIcon", {
337
+ enumerable: true,
338
+ get: function get() {
339
+ return _Cloud.default;
340
+ }
341
+ });
324
342
  Object.defineProperty(exports, "CollapsIcon", {
325
343
  enumerable: true,
326
344
  get: function get() {
@@ -633,6 +651,12 @@ Object.defineProperty(exports, "GitLabIcon", {
633
651
  return _GitLab.default;
634
652
  }
635
653
  });
654
+ Object.defineProperty(exports, "GitMergeIcon", {
655
+ enumerable: true,
656
+ get: function get() {
657
+ return _GitMerge.default;
658
+ }
659
+ });
636
660
  Object.defineProperty(exports, "GitPullRequestClosedIcon", {
637
661
  enumerable: true,
638
662
  get: function get() {
@@ -1449,6 +1473,9 @@ var _CloseCircle = _interopRequireDefault(require("./CloseCircle"));
1449
1473
  var _CloseDocument = _interopRequireDefault(require("./CloseDocument"));
1450
1474
  var _CloseSmall = _interopRequireDefault(require("./CloseSmall"));
1451
1475
  var _Close = _interopRequireDefault(require("./Close"));
1476
+ var _Cloud = _interopRequireDefault(require("./Cloud"));
1477
+ var _CloudDeploy = _interopRequireDefault(require("./CloudDeploy"));
1478
+ var _CloudDeployFailed = _interopRequireDefault(require("./CloudDeployFailed"));
1452
1479
  var _CollapsIcon = _interopRequireDefault(require("./CollapsIcon"));
1453
1480
  var _CollapseAll = _interopRequireDefault(require("./CollapseAll"));
1454
1481
  var _CollapseExpandSingle = _interopRequireDefault(require("./CollapseExpandSingle"));
@@ -1501,6 +1528,7 @@ var _GitCommit = _interopRequireDefault(require("./GitCommit"));
1501
1528
  var _GitHub = _interopRequireDefault(require("./GitHub"));
1502
1529
  var _Git = _interopRequireDefault(require("./Git"));
1503
1530
  var _GitLab = _interopRequireDefault(require("./GitLab"));
1531
+ var _GitMerge = _interopRequireDefault(require("./GitMerge"));
1504
1532
  var _GitPullRequest = _interopRequireDefault(require("./GitPullRequest"));
1505
1533
  var _GitPullRequestDraft = _interopRequireDefault(require("./GitPullRequestDraft"));
1506
1534
  var _GitPullRequestClosed = _interopRequireDefault(require("./GitPullRequestClosed"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_GitBranch","_GitCommit","_GitHub","_Git","_GitLab","_GitPullRequest","_GitPullRequestDraft","_GitPullRequestClosed","_GitRepository","_GitRepositoryConnect","_GroupBy","_Hashtag","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GitBranchIcon } from \"./GitBranch\";\nexport { default as GitCommitIcon } from \"./GitCommit\";\nexport { default as GitHubIcon } from \"./GitHub\";\nexport { default as GitIcon } from \"./Git\";\nexport { default as GitLabIcon } from \"./GitLab\";\nexport { default as GitPullRequestIcon } from \"./GitPullRequest\";\nexport { default as GitPullRequestDraftIcon } from \"./GitPullRequestDraft\";\nexport { default as GitPullRequestClosedIcon } from \"./GitPullRequestClosed\";\nexport { default as GitRepositoryIcon } from \"./GitRepository\";\nexport { default as GitRepositoryConnectIcon } from \"./GitRepositoryConnect\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_Cloud","_CloudDeploy","_CloudDeployFailed","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_GitBranch","_GitCommit","_GitHub","_Git","_GitLab","_GitMerge","_GitPullRequest","_GitPullRequestDraft","_GitPullRequestClosed","_GitRepository","_GitRepositoryConnect","_GroupBy","_Hashtag","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CloudIcon } from \"./Cloud\";\nexport { default as CloudDeployIcon } from \"./CloudDeploy\";\nexport { default as CloudDeployFailedIcon } from \"./CloudDeployFailed\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GitBranchIcon } from \"./GitBranch\";\nexport { default as GitCommitIcon } from \"./GitCommit\";\nexport { default as GitHubIcon } from \"./GitHub\";\nexport { default as GitIcon } from \"./Git\";\nexport { default as GitLabIcon } from \"./GitLab\";\nexport { default as GitMergeIcon } from \"./GitMerge\";\nexport { default as GitPullRequestIcon } from \"./GitPullRequest\";\nexport { default as GitPullRequestDraftIcon } from \"./GitPullRequestDraft\";\nexport { default as GitPullRequestClosedIcon } from \"./GitPullRequestClosed\";\nexport { default as GitRepositoryIcon } from \"./GitRepository\";\nexport { default as GitRepositoryConnectIcon } from \"./GitRepositoryConnect\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,UAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,SAAA,GAAAH,sBAAA,CAAAC,OAAA;AACA,IAAAG,aAAA,GAAAJ,sBAAA,CAAAC,OAAA;AACA,IAAAI,SAAA,GAAAL,sBAAA,CAAAC,OAAA;AACA,IAAAK,QAAA,GAAAN,sBAAA,CAAAC,OAAA;AACA,IAAAM,gBAAA,GAAAP,sBAAA,CAAAC,OAAA;AACA,IAAAO,sBAAA,GAAAR,sBAAA,CAAAC,OAAA;AACA,IAAAQ,cAAA,GAAAT,sBAAA,CAAAC,OAAA;AACA,IAAAS,eAAA,GAAAV,sBAAA,CAAAC,OAAA;AACA,IAAAU,UAAA,GAAAX,sBAAA,CAAAC,OAAA;AACA,IAAAW,qBAAA,GAAAZ,sBAAA,CAAAC,OAAA;AACA,IAAAY,aAAA,GAAAb,sBAAA,CAAAC,OAAA;AACA,IAAAa,UAAA,GAAAd,sBAAA,CAAAC,OAAA;AACA,IAAAc,aAAA,GAAAf,sBAAA,CAAAC,OAAA;AACA,IAAAe,aAAA,GAAAhB,sBAAA,CAAAC,OAAA;AACA,IAAAgB,WAAA,GAAAjB,sBAAA,CAAAC,OAAA;AACA,IAAAiB,YAAA,GAAAlB,sBAAA,CAAAC,OAAA;AACA,IAAAkB,QAAA,GAAAnB,sBAAA,CAAAC,OAAA;AACA,IAAAmB,OAAA,GAAApB,sBAAA,CAAAC,OAAA;AACA,IAAAoB,WAAA,GAAArB,sBAAA,CAAAC,OAAA;AACA,IAAAqB,aAAA,GAAAtB,sBAAA,CAAAC,OAAA;AACA,IAAAsB,QAAA,GAAAvB,sBAAA,CAAAC,OAAA;AACA,IAAAuB,QAAA,GAAAxB,sBAAA,CAAAC,OAAA;AACA,IAAAwB,YAAA,GAAAzB,sBAAA,CAAAC,OAAA;AACA,IAAAyB,KAAA,GAAA1B,sBAAA,CAAAC,OAAA;AACA,IAAA0B,aAAA,GAAA3B,sBAAA,CAAAC,OAAA;AACA,IAAA2B,eAAA,GAAA5B,sBAAA,CAAAC,OAAA;AACA,IAAA4B,SAAA,GAAA7B,sBAAA,CAAAC,OAAA;AACA,IAAA6B,YAAA,GAAA9B,sBAAA,CAAAC,OAAA;AACA,IAAA8B,UAAA,GAAA/B,sBAAA,CAAAC,OAAA;AACA,IAAA+B,WAAA,GAAAhC,sBAAA,CAAAC,OAAA;AACA,IAAAgC,KAAA,GAAAjC,sBAAA,CAAAC,OAAA;AACA,IAAAiC,MAAA,GAAAlC,sBAAA,CAAAC,OAAA;AACA,IAAAkC,qBAAA,GAAAnC,sBAAA,CAAAC,OAAA;AACA,IAAAmC,oBAAA,GAAApC,sBAAA,CAAAC,OAAA;AACA,IAAAoC,oBAAA,GAAArC,sBAAA,CAAAC,OAAA;AACA,IAAAqC,kBAAA,GAAAtC,sBAAA,CAAAC,OAAA;AACA,IAAAsC,SAAA,GAAAvC,sBAAA,CAAAC,OAAA;AACA,IAAAuC,eAAA,GAAAxC,sBAAA,CAAAC,OAAA;AACA,IAAAwC,UAAA,GAAAzC,sBAAA,CAAAC,OAAA;AACA,IAAAyC,WAAA,GAAA1C,sBAAA,CAAAC,OAAA;AACA,IAAA0C,eAAA,GAAA3C,sBAAA,CAAAC,OAAA;AACA,IAAA2C,SAAA,GAAA5C,sBAAA,CAAAC,OAAA;AACA,IAAA4C,YAAA,GAAA7C,sBAAA,CAAAC,OAAA;AACA,IAAA6C,WAAA,GAAA9C,sBAAA,CAAAC,OAAA;AACA,IAAA8C,wBAAA,GAAA/C,sBAAA,CAAAC,OAAA;AACA,IAAA+C,oBAAA,GAAAhD,sBAAA,CAAAC,OAAA;AACA,IAAAgD,eAAA,GAAAjD,sBAAA,CAAAC,OAAA;AACA,IAAAiD,MAAA,GAAAlD,sBAAA,CAAAC,OAAA;AACA,IAAAkD,YAAA,GAAAnD,sBAAA,CAAAC,OAAA;AACA,IAAAmD,cAAA,GAAApD,sBAAA,CAAAC,OAAA;AACA,IAAAoD,WAAA,GAAArD,sBAAA,CAAAC,OAAA;AACA,IAAAqD,MAAA,GAAAtD,sBAAA,CAAAC,OAAA;AACA,IAAAsD,MAAA,GAAAvD,sBAAA,CAAAC,OAAA;AACA,IAAAuD,YAAA,GAAAxD,sBAAA,CAAAC,OAAA;AACA,IAAAwD,kBAAA,GAAAzD,sBAAA,CAAAC,OAAA;AACA,IAAAyD,YAAA,GAAA1D,sBAAA,CAAAC,OAAA;AACA,IAAA0D,YAAA,GAAA3D,sBAAA,CAAAC,OAAA;AACA,IAAA2D,qBAAA,GAAA5D,sBAAA,CAAAC,OAAA;AACA,IAAA4D,WAAA,GAAA7D,sBAAA,CAAAC,OAAA;AACA,IAAA6D,QAAA,GAAA9D,sBAAA,CAAAC,OAAA;AACA,IAAA8D,SAAA,GAAA/D,sBAAA,CAAAC,OAAA;AACA,IAAA+D,eAAA,GAAAhE,sBAAA,CAAAC,OAAA;AACA,IAAAgE,KAAA,GAAAjE,sBAAA,CAAAC,OAAA;AACA,IAAAiE,WAAA,GAAAlE,sBAAA,CAAAC,OAAA;AACA,IAAAkE,cAAA,GAAAnE,sBAAA,CAAAC,OAAA;AACA,IAAAmE,gBAAA,GAAApE,sBAAA,CAAAC,OAAA;AACA,IAAAoE,WAAA,GAAArE,sBAAA,CAAAC,OAAA;AACA,IAAAqE,iBAAA,GAAAtE,sBAAA,CAAAC,OAAA;AACA,IAAAsE,YAAA,GAAAvE,sBAAA,CAAAC,OAAA;AACA,IAAAuE,cAAA,GAAAxE,sBAAA,CAAAC,OAAA;AACA,IAAAwE,WAAA,GAAAzE,sBAAA,CAAAC,OAAA;AACA,IAAAyE,qBAAA,GAAA1E,sBAAA,CAAAC,OAAA;AACA,IAAA0E,gBAAA,GAAA3E,sBAAA,CAAAC,OAAA;AACA,IAAA2E,iBAAA,GAAA5E,sBAAA,CAAAC,OAAA;AACA,IAAA4E,YAAA,GAAA7E,sBAAA,CAAAC,OAAA;AACA,IAAA6E,mBAAA,GAAA9E,sBAAA,CAAAC,OAAA;AACA,IAAA8E,eAAA,GAAA/E,sBAAA,CAAAC,OAAA;AACA,IAAA+E,eAAA,GAAAhF,sBAAA,CAAAC,OAAA;AACA,IAAAgF,UAAA,GAAAjF,sBAAA,CAAAC,OAAA;AACA,IAAAiF,YAAA,GAAAlF,sBAAA,CAAAC,OAAA;AACA,IAAAkF,OAAA,GAAAnF,sBAAA,CAAAC,OAAA;AACA,IAAAmF,SAAA,GAAApF,sBAAA,CAAAC,OAAA;AACA,IAAAoF,SAAA,GAAArF,sBAAA,CAAAC,OAAA;AACA,IAAAqF,MAAA,GAAAtF,sBAAA,CAAAC,OAAA;AACA,IAAAsF,QAAA,GAAAvF,sBAAA,CAAAC,OAAA;AACA,IAAAuF,UAAA,GAAAxF,sBAAA,CAAAC,OAAA;AACA,IAAAwF,aAAA,GAAAzF,sBAAA,CAAAC,OAAA;AACA,IAAAyF,KAAA,GAAA1F,sBAAA,CAAAC,OAAA;AACA,IAAA0F,MAAA,GAAA3F,sBAAA,CAAAC,OAAA;AACA,IAAA2F,aAAA,GAAA5F,sBAAA,CAAAC,OAAA;AACA,IAAA4F,UAAA,GAAA7F,sBAAA,CAAAC,OAAA;AACA,IAAA6F,UAAA,GAAA9F,sBAAA,CAAAC,OAAA;AACA,IAAA8F,WAAA,GAAA/F,sBAAA,CAAAC,OAAA;AACA,IAAA+F,YAAA,GAAAhG,sBAAA,CAAAC,OAAA;AACA,IAAAgG,YAAA,GAAAjG,sBAAA,CAAAC,OAAA;AACA,IAAAiG,OAAA,GAAAlG,sBAAA,CAAAC,OAAA;AACA,IAAAkG,SAAA,GAAAnG,sBAAA,CAAAC,OAAA;AACA,IAAAmG,IAAA,GAAApG,sBAAA,CAAAC,OAAA;AACA,IAAAoG,OAAA,GAAArG,sBAAA,CAAAC,OAAA;AACA,IAAAqG,WAAA,GAAAtG,sBAAA,CAAAC,OAAA;AACA,IAAAsG,cAAA,GAAAvG,sBAAA,CAAAC,OAAA;AACA,IAAAuG,KAAA,GAAAxG,sBAAA,CAAAC,OAAA;AACA,IAAAwG,UAAA,GAAAzG,sBAAA,CAAAC,OAAA;AACA,IAAAyG,UAAA,GAAA1G,sBAAA,CAAAC,OAAA;AACA,IAAA0G,OAAA,GAAA3G,sBAAA,CAAAC,OAAA;AACA,IAAA2G,IAAA,GAAA5G,sBAAA,CAAAC,OAAA;AACA,IAAA4G,OAAA,GAAA7G,sBAAA,CAAAC,OAAA;AACA,IAAA6G,SAAA,GAAA9G,sBAAA,CAAAC,OAAA;AACA,IAAA8G,eAAA,GAAA/G,sBAAA,CAAAC,OAAA;AACA,IAAA+G,oBAAA,GAAAhH,sBAAA,CAAAC,OAAA;AACA,IAAAgH,qBAAA,GAAAjH,sBAAA,CAAAC,OAAA;AACA,IAAAiH,cAAA,GAAAlH,sBAAA,CAAAC,OAAA;AACA,IAAAkH,qBAAA,GAAAnH,sBAAA,CAAAC,OAAA;AACA,IAAAmH,QAAA,GAAApH,sBAAA,CAAAC,OAAA;AACA,IAAAoH,QAAA,GAAArH,sBAAA,CAAAC,OAAA;AACA,IAAAqH,KAAA,GAAAtH,sBAAA,CAAAC,OAAA;AACA,IAAAsH,iBAAA,GAAAvH,sBAAA,CAAAC,OAAA;AACA,IAAAuH,MAAA,GAAAxH,sBAAA,CAAAC,OAAA;AACA,IAAAwH,UAAA,GAAAzH,sBAAA,CAAAC,OAAA;AACA,IAAAyH,KAAA,GAAA1H,sBAAA,CAAAC,OAAA;AACA,IAAA0H,WAAA,GAAA3H,sBAAA,CAAAC,OAAA;AACA,IAAA2H,aAAA,GAAA5H,sBAAA,CAAAC,OAAA;AACA,IAAA4H,SAAA,GAAA7H,sBAAA,CAAAC,OAAA;AACA,IAAA6H,OAAA,GAAA9H,sBAAA,CAAAC,OAAA;AACA,IAAA8H,iBAAA,GAAA/H,sBAAA,CAAAC,OAAA;AACA,IAAA+H,WAAA,GAAAhI,sBAAA,CAAAC,OAAA;AACA,IAAAgI,OAAA,GAAAjI,sBAAA,CAAAC,OAAA;AACA,IAAAiI,UAAA,GAAAlI,sBAAA,CAAAC,OAAA;AACA,IAAAkI,KAAA,GAAAnI,sBAAA,CAAAC,OAAA;AACA,IAAAmI,OAAA,GAAApI,sBAAA,CAAAC,OAAA;AACA,IAAAoI,WAAA,GAAArI,sBAAA,CAAAC,OAAA;AACA,IAAAqI,aAAA,GAAAtI,sBAAA,CAAAC,OAAA;AACA,IAAAsI,aAAA,GAAAvI,sBAAA,CAAAC,OAAA;AACA,IAAAuI,aAAA,GAAAxI,sBAAA,CAAAC,OAAA;AACA,IAAAwI,YAAA,GAAAzI,sBAAA,CAAAC,OAAA;AACA,IAAAyI,QAAA,GAAA1I,sBAAA,CAAAC,OAAA;AACA,IAAA0I,MAAA,GAAA3I,sBAAA,CAAAC,OAAA;AACA,IAAA2I,WAAA,GAAA5I,sBAAA,CAAAC,OAAA;AACA,IAAA4I,WAAA,GAAA7I,sBAAA,CAAAC,OAAA;AACA,IAAA6I,KAAA,GAAA9I,sBAAA,CAAAC,OAAA;AACA,IAAA8I,YAAA,GAAA/I,sBAAA,CAAAC,OAAA;AACA,IAAA+I,KAAA,GAAAhJ,sBAAA,CAAAC,OAAA;AACA,IAAAgJ,OAAA,GAAAjJ,sBAAA,CAAAC,OAAA;AACA,IAAAiJ,QAAA,GAAAlJ,sBAAA,CAAAC,OAAA;AACA,IAAAkJ,KAAA,GAAAnJ,sBAAA,CAAAC,OAAA;AACA,IAAAmJ,SAAA,GAAApJ,sBAAA,CAAAC,OAAA;AACA,IAAAoJ,iBAAA,GAAArJ,sBAAA,CAAAC,OAAA;AACA,IAAAqJ,aAAA,GAAAtJ,sBAAA,CAAAC,OAAA;AACA,IAAAsJ,UAAA,GAAAvJ,sBAAA,CAAAC,OAAA;AACA,IAAAuJ,WAAA,GAAAxJ,sBAAA,CAAAC,OAAA;AACA,IAAAwJ,UAAA,GAAAzJ,sBAAA,CAAAC,OAAA;AACA,IAAAyJ,mBAAA,GAAA1J,sBAAA,CAAAC,OAAA;AACA,IAAA0J,UAAA,GAAA3J,sBAAA,CAAAC,OAAA;AACA,IAAA2J,WAAA,GAAA5J,sBAAA,CAAAC,OAAA;AACA,IAAA4J,YAAA,GAAA7J,sBAAA,CAAAC,OAAA;AACA,IAAA6J,OAAA,GAAA9J,sBAAA,CAAAC,OAAA;AACA,IAAA8J,oBAAA,GAAA/J,sBAAA,CAAAC,OAAA;AACA,IAAA+J,OAAA,GAAAhK,sBAAA,CAAAC,OAAA;AACA,IAAAgK,qBAAA,GAAAjK,sBAAA,CAAAC,OAAA;AACA,IAAAiK,gBAAA,GAAAlK,sBAAA,CAAAC,OAAA;AACA,IAAAkK,aAAA,GAAAnK,sBAAA,CAAAC,OAAA;AACA,IAAAmK,WAAA,GAAApK,sBAAA,CAAAC,OAAA;AACA,IAAAoK,WAAA,GAAArK,sBAAA,CAAAC,OAAA;AACA,IAAAqK,OAAA,GAAAtK,sBAAA,CAAAC,OAAA;AACA,IAAAsK,SAAA,GAAAvK,sBAAA,CAAAC,OAAA;AACA,IAAAuK,IAAA,GAAAxK,sBAAA,CAAAC,OAAA;AACA,IAAAwK,kBAAA,GAAAzK,sBAAA,CAAAC,OAAA;AACA,IAAAyK,SAAA,GAAA1K,sBAAA,CAAAC,OAAA;AACA,IAAA0K,UAAA,GAAA3K,sBAAA,CAAAC,OAAA;AACA,IAAA2K,YAAA,GAAA5K,sBAAA,CAAAC,OAAA;AACA,IAAA4K,WAAA,GAAA7K,sBAAA,CAAAC,OAAA;AACA,IAAA6K,cAAA,GAAA9K,sBAAA,CAAAC,OAAA;AACA,IAAA8K,YAAA,GAAA/K,sBAAA,CAAAC,OAAA;AACA,IAAA+K,mBAAA,GAAAhL,sBAAA,CAAAC,OAAA;AACA,IAAAgL,uBAAA,GAAAjL,sBAAA,CAAAC,OAAA;AACA,IAAAiL,gBAAA,GAAAlL,sBAAA,CAAAC,OAAA;AACA,IAAAkL,SAAA,GAAAnL,sBAAA,CAAAC,OAAA;AACA,IAAAmL,OAAA,GAAApL,sBAAA,CAAAC,OAAA;AACA,IAAAoL,WAAA,GAAArL,sBAAA,CAAAC,OAAA;AACA,IAAAqL,YAAA,GAAAtL,sBAAA,CAAAC,OAAA;AACA,IAAAsL,SAAA,GAAAvL,sBAAA,CAAAC,OAAA;AACA,IAAAuL,eAAA,GAAAxL,sBAAA,CAAAC,OAAA;AACA,IAAAwL,wBAAA,GAAAzL,sBAAA,CAAAC,OAAA;AACA,IAAAyL,mBAAA,GAAA1L,sBAAA,CAAAC,OAAA;AACA,IAAA0L,gBAAA,GAAA3L,sBAAA,CAAAC,OAAA;AACA,IAAA2L,eAAA,GAAA5L,sBAAA,CAAAC,OAAA;AACA,IAAA4L,aAAA,GAAA7L,sBAAA,CAAAC,OAAA;AACA,IAAA6L,QAAA,GAAA9L,sBAAA,CAAAC,OAAA;AACA,IAAA8L,WAAA,GAAA/L,sBAAA,CAAAC,OAAA;AACA,IAAA+L,QAAA,GAAAhM,sBAAA,CAAAC,OAAA;AACA,IAAAgM,MAAA,GAAAjM,sBAAA,CAAAC,OAAA;AACA,IAAAiM,YAAA,GAAAlM,sBAAA,CAAAC,OAAA;AACA,IAAAkM,OAAA,GAAAnM,sBAAA,CAAAC,OAAA;AACA,IAAAmM,qBAAA,GAAApM,sBAAA,CAAAC,OAAA;AACA,IAAAoM,KAAA,GAAArM,sBAAA,CAAAC,OAAA;AACA,IAAAqM,YAAA,GAAAtM,sBAAA,CAAAC,OAAA;AACA,IAAAsM,WAAA,GAAAvM,sBAAA,CAAAC,OAAA;AACA,IAAAuM,OAAA,GAAAxM,sBAAA,CAAAC,OAAA;AACA,IAAAwM,UAAA,GAAAzM,sBAAA,CAAAC,OAAA;AACA,IAAAyM,WAAA,GAAA1M,sBAAA,CAAAC,OAAA;AACA,IAAA0M,SAAA,GAAA3M,sBAAA,CAAAC,OAAA;AACA,IAAA2M,OAAA,GAAA5M,sBAAA,CAAAC,OAAA;AACA,IAAA4M,YAAA,GAAA7M,sBAAA,CAAAC,OAAA;AACA,IAAA6M,SAAA,GAAA9M,sBAAA,CAAAC,OAAA;AACA,IAAA8M,SAAA,GAAA/M,sBAAA,CAAAC,OAAA;AACA,IAAA+M,UAAA,GAAAhN,sBAAA,CAAAC,OAAA;AACA,IAAAgN,MAAA,GAAAjN,sBAAA,CAAAC,OAAA;AACA,IAAAiN,YAAA,GAAAlN,sBAAA,CAAAC,OAAA;AACA,IAAAkN,KAAA,GAAAnN,sBAAA,CAAAC,OAAA;AACA,IAAAmN,OAAA,GAAApN,sBAAA,CAAAC,OAAA;AACA,IAAAoN,WAAA,GAAArN,sBAAA,CAAAC,OAAA;AACA,IAAAqN,KAAA,GAAAtN,sBAAA,CAAAC,OAAA;AACA,IAAAsN,UAAA,GAAAvN,sBAAA,CAAAC,OAAA;AACA,IAAAuN,IAAA,GAAAxN,sBAAA,CAAAC,OAAA;AACA,IAAAwN,eAAA,GAAAzN,sBAAA,CAAAC,OAAA;AACA,IAAAyN,QAAA,GAAA1N,sBAAA,CAAAC,OAAA;AACA,IAAA0N,YAAA,GAAA3N,sBAAA,CAAAC,OAAA;AACA,IAAA2N,iBAAA,GAAA5N,sBAAA,CAAAC,OAAA;AACA,IAAA4N,SAAA,GAAA7N,sBAAA,CAAAC,OAAA;AACA,IAAA6N,SAAA,GAAA9N,sBAAA,CAAAC,OAAA;AACA,IAAA8N,eAAA,GAAA/N,sBAAA,CAAAC,OAAA;AACA,IAAA+N,MAAA,GAAAhO,sBAAA,CAAAC,OAAA;AACA,IAAAgO,SAAA,GAAAjO,sBAAA,CAAAC,OAAA;AACA,IAAAiO,aAAA,GAAAlO,sBAAA,CAAAC,OAAA;AACA,IAAAkO,OAAA,GAAAnO,sBAAA,CAAAC,OAAA;AACA,IAAAmO,QAAA,GAAApO,sBAAA,CAAAC,OAAA;AACA,IAAAoO,SAAA,GAAArO,sBAAA,CAAAC,OAAA;AACA,IAAAqO,SAAA,GAAAtO,sBAAA,CAAAC,OAAA;AACA,IAAAsO,aAAA,GAAAvO,sBAAA,CAAAC,OAAA;AACA,IAAAuO,WAAA,GAAAxO,sBAAA,CAAAC,OAAA;AACA,IAAAwO,qBAAA,GAAAzO,sBAAA,CAAAC,OAAA;AACA,IAAAyO,gBAAA,GAAA1O,sBAAA,CAAAC,OAAA;AACA,IAAA0O,QAAA,GAAA3O,sBAAA,CAAAC,OAAA;AACA,IAAA2O,SAAA,GAAA5O,sBAAA,CAAAC,OAAA;AAAqD,SAAAD,uBAAA6O,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA","ignoreList":[]}
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ /**
3
+ * @component CloudIcon
4
+ * @description
5
+ * Outline cloud glyph for cloud/storage/sync signifiers.
6
+ *
7
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
8
+ *
9
+ * @see https://design.activecollab.com/docs/foundations/icons
10
+ */
11
+ declare const CloudIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
12
+ gradient?: string;
13
+ }, "ref"> & React.RefAttributes<SVGSVGElement>>;
14
+ export default CloudIcon;
15
+ //# sourceMappingURL=Cloud.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Cloud.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/Cloud.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;GAQG;AACH,QAAA,MAAM,SAAS;eAME,MAAM;+CA6BtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -0,0 +1,40 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
3
+ const _excluded = ["gradient"];
4
+ import React from "react";
5
+ import { GradientDefs } from "../../GradientDefs";
6
+
7
+ /**
8
+ * @component CloudIcon
9
+ * @description
10
+ * Outline cloud glyph for cloud/storage/sync signifiers.
11
+ *
12
+ * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
13
+ *
14
+ * @see https://design.activecollab.com/docs/foundations/icons
15
+ */
16
+ const CloudIcon = /*#__PURE__*/React.forwardRef((_ref, ref) => {
17
+ let gradient = _ref.gradient,
18
+ props = _objectWithoutPropertiesLoose(_ref, _excluded);
19
+ return /*#__PURE__*/React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 24,
22
+ height: 24,
23
+ viewBox: "0 0 24 24",
24
+ "data-testid": "CloudIcon",
25
+ fill: "none",
26
+ stroke: gradient ? "url(#icon-gradient)" : props != null && props.stroke ? props.stroke : "var(--color-theme-600)",
27
+ strokeWidth: 2,
28
+ strokeLinecap: "round",
29
+ strokeLinejoin: "round",
30
+ focusable: false,
31
+ ref: ref
32
+ }, props), /*#__PURE__*/React.createElement(GradientDefs, {
33
+ gradient: gradient
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ d: "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"
36
+ }));
37
+ });
38
+ CloudIcon.displayName = "CloudIcon";
39
+ export default CloudIcon;
40
+ //# sourceMappingURL=Cloud.js.map