@activecollab/components 2.0.110 → 2.0.111

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 (29) hide show
  1. package/dist/cjs/components/Icons/collection/CheckboxDocuments.js +46 -0
  2. package/dist/cjs/components/Icons/collection/CheckboxDocuments.js.map +1 -0
  3. package/dist/cjs/components/Icons/collection/CloseDocument.js +46 -0
  4. package/dist/cjs/components/Icons/collection/CloseDocument.js.map +1 -0
  5. package/dist/cjs/components/Icons/collection/DollarDocumentPlus.js +46 -0
  6. package/dist/cjs/components/Icons/collection/DollarDocumentPlus.js.map +1 -0
  7. package/dist/cjs/components/Icons/collection/index.js +21 -0
  8. package/dist/cjs/components/Icons/collection/index.js.map +1 -1
  9. package/dist/esm/components/Icons/collection/CheckboxDocuments.d.ts +23 -0
  10. package/dist/esm/components/Icons/collection/CheckboxDocuments.d.ts.map +1 -0
  11. package/dist/esm/components/Icons/collection/CheckboxDocuments.js +38 -0
  12. package/dist/esm/components/Icons/collection/CheckboxDocuments.js.map +1 -0
  13. package/dist/esm/components/Icons/collection/CloseDocument.d.ts +23 -0
  14. package/dist/esm/components/Icons/collection/CloseDocument.d.ts.map +1 -0
  15. package/dist/esm/components/Icons/collection/CloseDocument.js +38 -0
  16. package/dist/esm/components/Icons/collection/CloseDocument.js.map +1 -0
  17. package/dist/esm/components/Icons/collection/DollarDocumentPlus.d.ts +23 -0
  18. package/dist/esm/components/Icons/collection/DollarDocumentPlus.d.ts.map +1 -0
  19. package/dist/esm/components/Icons/collection/DollarDocumentPlus.js +38 -0
  20. package/dist/esm/components/Icons/collection/DollarDocumentPlus.js.map +1 -0
  21. package/dist/esm/components/Icons/collection/index.d.ts +3 -0
  22. package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
  23. package/dist/esm/components/Icons/collection/index.js +3 -0
  24. package/dist/esm/components/Icons/collection/index.js.map +1 -1
  25. package/dist/index.js +114 -0
  26. package/dist/index.js.map +1 -1
  27. package/dist/index.min.js +1 -1
  28. package/dist/index.min.js.map +1 -1
  29. package/package.json +1 -1
@@ -0,0 +1,46 @@
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
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+ 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); }
10
+ /**
11
+ * @component CheckboxDocumentsIcon
12
+ * @description
13
+ *
14
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
15
+ * The Icon component is
16
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
17
+ *
18
+ *
19
+ * @example
20
+ * return (
21
+ * <CheckboxDocumentsIcon className="mr-2" />
22
+ * )
23
+ *
24
+ * @see
25
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
26
+ * @see
27
+ * https://design.activecollab.com/docs/foundations/icons
28
+ */
29
+ var CheckboxDocumentsIcon = /*#__PURE__*/_react.default.forwardRef(function (props, svgRef) {
30
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
31
+ xmlns: "http://www.w3.org/2000/svg",
32
+ width: 24,
33
+ height: 24,
34
+ "data-testid": "CheckboxDocumentsIcon",
35
+ fill: "var(--color-theme-600)",
36
+ focusable: false,
37
+ ref: svgRef
38
+ }, props), /*#__PURE__*/_react.default.createElement("path", {
39
+ fillRule: "evenodd",
40
+ d: "M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zm.667 9.82a1.105 1.105 0 00.02-1.499.96.96 0 00-1.414-.021l-4.446 4.58-2.16-2.225a.96.96 0 00-1.414.021c-.385.42-.376 1.09.02 1.499l2.16 2.225c.776.8 2.012.8 2.788 0l4.446-4.58z",
41
+ clipRule: "evenodd"
42
+ }));
43
+ });
44
+ CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
45
+ var _default = exports.default = CheckboxDocumentsIcon;
46
+ //# sourceMappingURL=CheckboxDocuments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckboxDocuments.js","names":["_react","_interopRequireDefault","require","obj","__esModule","default","_extends","Object","assign","bind","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","CheckboxDocumentsIcon","React","forwardRef","props","svgRef","createElement","xmlns","width","height","fill","focusable","ref","fillRule","d","clipRule","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/CheckboxDocuments.tsx"],"sourcesContent":["import React from \"react\";\n\n/**\n * @component CheckboxDocumentsIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n *\n * @example\n * return (\n * <CheckboxDocumentsIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst CheckboxDocumentsIcon = React.forwardRef(\n (props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"CheckboxDocumentsIcon\"\n fill=\"var(--color-theme-600)\"\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n d=\"M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zm.667 9.82a1.105 1.105 0 00.02-1.499.96.96 0 00-1.414-.021l-4.446 4.58-2.16-2.225a.96.96 0 00-1.414.021c-.385.42-.376 1.09.02 1.499l2.16 2.225c.776.8 2.012.8 2.788 0l4.446-4.58z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nCheckboxDocumentsIcon.displayName = \"CheckboxDocumentsIcon\";\nexport default CheckboxDocumentsIcon;\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAA0B,SAAAD,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,SAAA,IAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAF,CAAA,UAAAG,MAAA,GAAAF,SAAA,CAAAD,CAAA,YAAAI,GAAA,IAAAD,MAAA,QAAAP,MAAA,CAAAS,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAJ,MAAA,EAAAC,GAAA,KAAAL,MAAA,CAAAK,GAAA,IAAAD,MAAA,CAAAC,GAAA,gBAAAL,MAAA,YAAAJ,QAAA,CAAAa,KAAA,OAAAP,SAAA;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAMQ,qBAAqB,gBAAGC,cAAK,CAACC,UAAU,CAC5C,UAACC,KAAoC,EAAEC,MAAiC;EAAA,oBACtExB,MAAA,CAAAK,OAAA,CAAAoB,aAAA,QAAAnB,QAAA;IACEoB,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACX,eAAY,uBAAuB;IACnCC,IAAI,EAAC,wBAAwB;IAC7BC,SAAS,EAAE,KAAM;IACjBC,GAAG,EAAEP;EAAO,GACRD,KAAK,gBAETvB,MAAA,CAAAK,OAAA,CAAAoB,aAAA;IACEO,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,kRAAkR;IACpRC,QAAQ,EAAC;EAAS,CACnB,CACE,CAAC;AAAA,CAEV,CAAC;AACDd,qBAAqB,CAACe,WAAW,GAAG,uBAAuB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAhC,OAAA,GAC7Ce,qBAAqB"}
@@ -0,0 +1,46 @@
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
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+ 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); }
10
+ /**
11
+ * @component CloseDocumentIcon
12
+ * @description
13
+ *
14
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
15
+ * The Icon component is
16
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
17
+ *
18
+ *
19
+ * @example
20
+ * return (
21
+ * <CloseDocumentIcon className="mr-2" />
22
+ * )
23
+ *
24
+ * @see
25
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
26
+ * @see
27
+ * https://design.activecollab.com/docs/foundations/icons
28
+ */
29
+ var CloseDocumentIcon = /*#__PURE__*/_react.default.forwardRef(function (props, svgRef) {
30
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
31
+ xmlns: "http://www.w3.org/2000/svg",
32
+ width: 24,
33
+ height: 24,
34
+ "data-testid": "CloseDocumentIcon",
35
+ fill: "var(--color-theme-600)",
36
+ focusable: false,
37
+ ref: svgRef
38
+ }, props), /*#__PURE__*/_react.default.createElement("path", {
39
+ fillRule: "evenodd",
40
+ d: "M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zM9.707 9.293a1 1 0 00-1.414 1.414L10.586 13l-2.293 2.293a1 1 0 101.414 1.414L12 14.414l2.293 2.293a1 1 0 001.414-1.414L13.414 13l2.293-2.293a1 1 0 00-1.414-1.414L12 11.586 9.707 9.293z",
41
+ clipRule: "evenodd"
42
+ }));
43
+ });
44
+ CloseDocumentIcon.displayName = "CloseDocumentIcon";
45
+ var _default = exports.default = CloseDocumentIcon;
46
+ //# sourceMappingURL=CloseDocument.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloseDocument.js","names":["_react","_interopRequireDefault","require","obj","__esModule","default","_extends","Object","assign","bind","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","CloseDocumentIcon","React","forwardRef","props","svgRef","createElement","xmlns","width","height","fill","focusable","ref","fillRule","d","clipRule","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/CloseDocument.tsx"],"sourcesContent":["import React from \"react\";\n\n/**\n * @component CloseDocumentIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n *\n * @example\n * return (\n * <CloseDocumentIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst CloseDocumentIcon = React.forwardRef(\n (props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"CloseDocumentIcon\"\n fill=\"var(--color-theme-600)\"\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n d=\"M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zM9.707 9.293a1 1 0 00-1.414 1.414L10.586 13l-2.293 2.293a1 1 0 101.414 1.414L12 14.414l2.293 2.293a1 1 0 001.414-1.414L13.414 13l2.293-2.293a1 1 0 00-1.414-1.414L12 11.586 9.707 9.293z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nCloseDocumentIcon.displayName = \"CloseDocumentIcon\";\nexport default CloseDocumentIcon;\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAA0B,SAAAD,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,SAAA,IAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAF,CAAA,UAAAG,MAAA,GAAAF,SAAA,CAAAD,CAAA,YAAAI,GAAA,IAAAD,MAAA,QAAAP,MAAA,CAAAS,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAJ,MAAA,EAAAC,GAAA,KAAAL,MAAA,CAAAK,GAAA,IAAAD,MAAA,CAAAC,GAAA,gBAAAL,MAAA,YAAAJ,QAAA,CAAAa,KAAA,OAAAP,SAAA;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAMQ,iBAAiB,gBAAGC,cAAK,CAACC,UAAU,CACxC,UAACC,KAAoC,EAAEC,MAAiC;EAAA,oBACtExB,MAAA,CAAAK,OAAA,CAAAoB,aAAA,QAAAnB,QAAA;IACEoB,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACX,eAAY,mBAAmB;IAC/BC,IAAI,EAAC,wBAAwB;IAC7BC,SAAS,EAAE,KAAM;IACjBC,GAAG,EAAEP;EAAO,GACRD,KAAK,gBAETvB,MAAA,CAAAK,OAAA,CAAAoB,aAAA;IACEO,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,yRAAyR;IAC3RC,QAAQ,EAAC;EAAS,CACnB,CACE,CAAC;AAAA,CAEV,CAAC;AACDd,iBAAiB,CAACe,WAAW,GAAG,mBAAmB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAhC,OAAA,GACrCe,iBAAiB"}
@@ -0,0 +1,46 @@
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
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+ 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); }
10
+ /**
11
+ * @component DollarDocumentPlusIcon
12
+ * @description
13
+ *
14
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
15
+ * The Icon component is
16
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
17
+ *
18
+ *
19
+ * @example
20
+ * return (
21
+ * <DollarDocumentPlusIcon className="mr-2" />
22
+ * )
23
+ *
24
+ * @see
25
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
26
+ * @see
27
+ * https://design.activecollab.com/docs/foundations/icons
28
+ */
29
+ var DollarDocumentPlusIcon = /*#__PURE__*/_react.default.forwardRef(function (props, svgRef) {
30
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
31
+ xmlns: "http://www.w3.org/2000/svg",
32
+ width: 24,
33
+ height: 24,
34
+ "data-testid": "DollarDocumentPlusIcon",
35
+ fill: "var(--color-theme-600)",
36
+ focusable: false,
37
+ ref: svgRef
38
+ }, props), /*#__PURE__*/_react.default.createElement("path", {
39
+ fillRule: "evenodd",
40
+ d: "M16.03 2L21 7.075V12h-2V7.891L15.19 4H5v16l7-.001V22H5a2 2 0 01-2-2V4a2 2 0 012-2h11.03zM19 14v3h3v2h-3v3h-2v-3.001L14 19v-2l3-.001V14h2zm-7-7v1h2v2h-4v1h3a1 1 0 01.993.883L14 12v3a1 1 0 01-.883.993L13 16h-1v1h-2v-1H8v-2h4v-1H9a1 1 0 01-.993-.883L8 12V9a1 1 0 01.883-.993L9 8h1V7h2z",
41
+ clipRule: "evenodd"
42
+ }));
43
+ });
44
+ DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
45
+ var _default = exports.default = DollarDocumentPlusIcon;
46
+ //# sourceMappingURL=DollarDocumentPlus.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DollarDocumentPlus.js","names":["_react","_interopRequireDefault","require","obj","__esModule","default","_extends","Object","assign","bind","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","DollarDocumentPlusIcon","React","forwardRef","props","svgRef","createElement","xmlns","width","height","fill","focusable","ref","fillRule","d","clipRule","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/DollarDocumentPlus.tsx"],"sourcesContent":["import React from \"react\";\n\n/**\n * @component DollarDocumentPlusIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n *\n * @example\n * return (\n * <DollarDocumentPlusIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst DollarDocumentPlusIcon = React.forwardRef(\n (props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"DollarDocumentPlusIcon\"\n fill=\"var(--color-theme-600)\"\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n d=\"M16.03 2L21 7.075V12h-2V7.891L15.19 4H5v16l7-.001V22H5a2 2 0 01-2-2V4a2 2 0 012-2h11.03zM19 14v3h3v2h-3v3h-2v-3.001L14 19v-2l3-.001V14h2zm-7-7v1h2v2h-4v1h3a1 1 0 01.993.883L14 12v3a1 1 0 01-.883.993L13 16h-1v1h-2v-1H8v-2h4v-1H9a1 1 0 01-.993-.883L8 12V9a1 1 0 01.883-.993L9 8h1V7h2z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nDollarDocumentPlusIcon.displayName = \"DollarDocumentPlusIcon\";\nexport default DollarDocumentPlusIcon;\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAA0B,SAAAD,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,SAAA,IAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAF,CAAA,UAAAG,MAAA,GAAAF,SAAA,CAAAD,CAAA,YAAAI,GAAA,IAAAD,MAAA,QAAAP,MAAA,CAAAS,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAJ,MAAA,EAAAC,GAAA,KAAAL,MAAA,CAAAK,GAAA,IAAAD,MAAA,CAAAC,GAAA,gBAAAL,MAAA,YAAAJ,QAAA,CAAAa,KAAA,OAAAP,SAAA;AAE1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAMQ,sBAAsB,gBAAGC,cAAK,CAACC,UAAU,CAC7C,UAACC,KAAoC,EAAEC,MAAiC;EAAA,oBACtExB,MAAA,CAAAK,OAAA,CAAAoB,aAAA,QAAAnB,QAAA;IACEoB,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACX,eAAY,wBAAwB;IACpCC,IAAI,EAAC,wBAAwB;IAC7BC,SAAS,EAAE,KAAM;IACjBC,GAAG,EAAEP;EAAO,GACRD,KAAK,gBAETvB,MAAA,CAAAK,OAAA,CAAAoB,aAAA;IACEO,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,4RAA4R;IAC9RC,QAAQ,EAAC;EAAS,CACnB,CACE,CAAC;AAAA,CAEV,CAAC;AACDd,sBAAsB,CAACe,WAAW,GAAG,wBAAwB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAhC,OAAA,GAC/Ce,sBAAsB"}
@@ -195,6 +195,12 @@ Object.defineProperty(exports, "CheckboxCircleArrowIcon", {
195
195
  return _CheckboxCircleArrow.default;
196
196
  }
197
197
  });
198
+ Object.defineProperty(exports, "CheckboxDocumentsIcon", {
199
+ enumerable: true,
200
+ get: function get() {
201
+ return _CheckboxDocuments.default;
202
+ }
203
+ });
198
204
  Object.defineProperty(exports, "CheckboxIcon", {
199
205
  enumerable: true,
200
206
  get: function get() {
@@ -255,6 +261,12 @@ Object.defineProperty(exports, "ClockStopwatchSmallIcon", {
255
261
  return _ClockStopwatchSmall.default;
256
262
  }
257
263
  });
264
+ Object.defineProperty(exports, "CloseDocumentIcon", {
265
+ enumerable: true,
266
+ get: function get() {
267
+ return _CloseDocument.default;
268
+ }
269
+ });
258
270
  Object.defineProperty(exports, "CloseIcon", {
259
271
  enumerable: true,
260
272
  get: function get() {
@@ -387,6 +399,12 @@ Object.defineProperty(exports, "DollarDocumentIcon", {
387
399
  return _DollarDocument.default;
388
400
  }
389
401
  });
402
+ Object.defineProperty(exports, "DollarDocumentPlusIcon", {
403
+ enumerable: true,
404
+ get: function get() {
405
+ return _DollarDocumentPlus.default;
406
+ }
407
+ });
390
408
  Object.defineProperty(exports, "DollarIcon", {
391
409
  enumerable: true,
392
410
  get: function get() {
@@ -1121,6 +1139,7 @@ var _Chat = _interopRequireDefault(require("./Chat"));
1121
1139
  var _Check = _interopRequireDefault(require("./Check"));
1122
1140
  var _CheckboxBlankToggler = _interopRequireDefault(require("./CheckboxBlankToggler"));
1123
1141
  var _CheckboxCircleArrow = _interopRequireDefault(require("./CheckboxCircleArrow"));
1142
+ var _CheckboxDocuments = _interopRequireDefault(require("./CheckboxDocuments"));
1124
1143
  var _Checkbox = _interopRequireDefault(require("./Checkbox"));
1125
1144
  var _ChecklistSmall = _interopRequireDefault(require("./ChecklistSmall"));
1126
1145
  var _Checklist = _interopRequireDefault(require("./Checklist"));
@@ -1131,6 +1150,7 @@ var _ClockStopwatchIndicator = _interopRequireDefault(require("./ClockStopwatchI
1131
1150
  var _ClockStopwatchSmall = _interopRequireDefault(require("./ClockStopwatchSmall"));
1132
1151
  var _ClockStopwatch = _interopRequireDefault(require("./ClockStopwatch"));
1133
1152
  var _Clock = _interopRequireDefault(require("./Clock"));
1153
+ var _CloseDocument = _interopRequireDefault(require("./CloseDocument"));
1134
1154
  var _CloseSmall = _interopRequireDefault(require("./CloseSmall"));
1135
1155
  var _Close = _interopRequireDefault(require("./Close"));
1136
1156
  var _CollapsIcon = _interopRequireDefault(require("./CollapsIcon"));
@@ -1152,6 +1172,7 @@ var _DollarCheckmarkSmall = _interopRequireDefault(require("./DollarCheckmarkSma
1152
1172
  var _DollarCheckmark = _interopRequireDefault(require("./DollarCheckmark"));
1153
1173
  var _DollarClockSmall = _interopRequireDefault(require("./DollarClockSmall"));
1154
1174
  var _DollarClock = _interopRequireDefault(require("./DollarClock"));
1175
+ var _DollarDocumentPlus = _interopRequireDefault(require("./DollarDocumentPlus"));
1155
1176
  var _DollarDocument = _interopRequireDefault(require("./DollarDocument"));
1156
1177
  var _DollarOffSmall = _interopRequireDefault(require("./DollarOffSmall"));
1157
1178
  var _DollarOff = _interopRequireDefault(require("./DollarOff"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["_AccessLog","_interopRequireDefault","require","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_CalendarAddX","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_Checkbox","_ChecklistSmall","_Checklist","_CircleMultiple","_ClockAdd","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseSmall","_Close","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_Hashtag","_Help","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_Message","_Minus","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonPlus","_Person","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringSmall","_ReportTime","_Reports","_Rocket","_SearchLarge","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_StarOutline","_Star","_Stopwatch","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_ThumbUpOutline","_Trash","_TreeDots","_Upload","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","obj","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { 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 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 CalendarAddXIcon } from \"./CalendarAddX\";\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 CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\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 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 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 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 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 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 HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\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 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 MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\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 PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\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 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 RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\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 StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\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 ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as UploadIcon } from \"./Upload\";\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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"}
1
+ {"version":3,"file":"index.js","names":["_AccessLog","_interopRequireDefault","require","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_CalendarAddX","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleMultiple","_ClockAdd","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseDocument","_CloseSmall","_Close","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_Hashtag","_Help","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_Message","_Minus","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonPlus","_Person","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringSmall","_ReportTime","_Reports","_Rocket","_SearchLarge","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_StarOutline","_Star","_Stopwatch","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_ThumbUpOutline","_Trash","_TreeDots","_Upload","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","obj","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { 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 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 CalendarAddXIcon } from \"./CalendarAddX\";\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 CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\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 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 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 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 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 HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\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 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 MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\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 PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\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 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 RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\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 StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\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 ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as UploadIcon } from \"./Upload\";\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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"}
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ /**
3
+ * @component CheckboxDocumentsIcon
4
+ * @description
5
+ *
6
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
7
+ * The Icon component is
8
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
9
+ *
10
+ *
11
+ * @example
12
+ * return (
13
+ * <CheckboxDocumentsIcon className="mr-2" />
14
+ * )
15
+ *
16
+ * @see
17
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
18
+ * @see
19
+ * https://design.activecollab.com/docs/foundations/icons
20
+ */
21
+ declare const CheckboxDocumentsIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
22
+ export default CheckboxDocumentsIcon;
23
+ //# sourceMappingURL=CheckboxDocuments.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckboxDocuments.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/CheckboxDocuments.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;;;;;;;;;;;;;GAkBG;AACH,QAAA,MAAM,qBAAqB,kHAmB1B,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
@@ -0,0 +1,38 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import React from "react";
3
+
4
+ /**
5
+ * @component CheckboxDocumentsIcon
6
+ * @description
7
+ *
8
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
9
+ * The Icon component is
10
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
11
+ *
12
+ *
13
+ * @example
14
+ * return (
15
+ * <CheckboxDocumentsIcon className="mr-2" />
16
+ * )
17
+ *
18
+ * @see
19
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
20
+ * @see
21
+ * https://design.activecollab.com/docs/foundations/icons
22
+ */
23
+ const CheckboxDocumentsIcon = /*#__PURE__*/React.forwardRef((props, svgRef) => /*#__PURE__*/React.createElement("svg", _extends({
24
+ xmlns: "http://www.w3.org/2000/svg",
25
+ width: 24,
26
+ height: 24,
27
+ "data-testid": "CheckboxDocumentsIcon",
28
+ fill: "var(--color-theme-600)",
29
+ focusable: false,
30
+ ref: svgRef
31
+ }, props), /*#__PURE__*/React.createElement("path", {
32
+ fillRule: "evenodd",
33
+ d: "M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zm.667 9.82a1.105 1.105 0 00.02-1.499.96.96 0 00-1.414-.021l-4.446 4.58-2.16-2.225a.96.96 0 00-1.414.021c-.385.42-.376 1.09.02 1.499l2.16 2.225c.776.8 2.012.8 2.788 0l4.446-4.58z",
34
+ clipRule: "evenodd"
35
+ })));
36
+ CheckboxDocumentsIcon.displayName = "CheckboxDocumentsIcon";
37
+ export default CheckboxDocumentsIcon;
38
+ //# sourceMappingURL=CheckboxDocuments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckboxDocuments.js","names":["React","CheckboxDocumentsIcon","forwardRef","props","svgRef","createElement","_extends","xmlns","width","height","fill","focusable","ref","fillRule","d","clipRule","displayName"],"sources":["../../../../../src/components/Icons/collection/CheckboxDocuments.tsx"],"sourcesContent":["import React from \"react\";\n\n/**\n * @component CheckboxDocumentsIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n *\n * @example\n * return (\n * <CheckboxDocumentsIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst CheckboxDocumentsIcon = React.forwardRef(\n (props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"CheckboxDocumentsIcon\"\n fill=\"var(--color-theme-600)\"\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n d=\"M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zm.667 9.82a1.105 1.105 0 00.02-1.499.96.96 0 00-1.414-.021l-4.446 4.58-2.16-2.225a.96.96 0 00-1.414.021c-.385.42-.376 1.09.02 1.499l2.16 2.225c.776.8 2.012.8 2.788 0l4.446-4.58z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nCheckboxDocumentsIcon.displayName = \"CheckboxDocumentsIcon\";\nexport default CheckboxDocumentsIcon;\n"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,qBAAqB,gBAAGD,KAAK,CAACE,UAAU,CAC5C,CAACC,KAAoC,EAAEC,MAAiC,kBACtEJ,KAAA,CAAAK,aAAA,QAAAC,QAAA;EACEC,KAAK,EAAC,4BAA4B;EAClCC,KAAK,EAAE,EAAG;EACVC,MAAM,EAAE,EAAG;EACX,eAAY,uBAAuB;EACnCC,IAAI,EAAC,wBAAwB;EAC7BC,SAAS,EAAE,KAAM;EACjBC,GAAG,EAAER;AAAO,GACRD,KAAK,gBAETH,KAAA,CAAAK,aAAA;EACEQ,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC,kRAAkR;EACpRC,QAAQ,EAAC;AAAS,CACnB,CACE,CAET,CAAC;AACDd,qBAAqB,CAACe,WAAW,GAAG,uBAAuB;AAC3D,eAAef,qBAAqB"}
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ /**
3
+ * @component CloseDocumentIcon
4
+ * @description
5
+ *
6
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
7
+ * The Icon component is
8
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
9
+ *
10
+ *
11
+ * @example
12
+ * return (
13
+ * <CloseDocumentIcon className="mr-2" />
14
+ * )
15
+ *
16
+ * @see
17
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
18
+ * @see
19
+ * https://design.activecollab.com/docs/foundations/icons
20
+ */
21
+ declare const CloseDocumentIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
22
+ export default CloseDocumentIcon;
23
+ //# sourceMappingURL=CloseDocument.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloseDocument.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/CloseDocument.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;;;;;;;;;;;;;GAkBG;AACH,QAAA,MAAM,iBAAiB,kHAmBtB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,38 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import React from "react";
3
+
4
+ /**
5
+ * @component CloseDocumentIcon
6
+ * @description
7
+ *
8
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
9
+ * The Icon component is
10
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
11
+ *
12
+ *
13
+ * @example
14
+ * return (
15
+ * <CloseDocumentIcon className="mr-2" />
16
+ * )
17
+ *
18
+ * @see
19
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
20
+ * @see
21
+ * https://design.activecollab.com/docs/foundations/icons
22
+ */
23
+ const CloseDocumentIcon = /*#__PURE__*/React.forwardRef((props, svgRef) => /*#__PURE__*/React.createElement("svg", _extends({
24
+ xmlns: "http://www.w3.org/2000/svg",
25
+ width: 24,
26
+ height: 24,
27
+ "data-testid": "CloseDocumentIcon",
28
+ fill: "var(--color-theme-600)",
29
+ focusable: false,
30
+ ref: svgRef
31
+ }, props), /*#__PURE__*/React.createElement("path", {
32
+ fillRule: "evenodd",
33
+ d: "M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zM9.707 9.293a1 1 0 00-1.414 1.414L10.586 13l-2.293 2.293a1 1 0 101.414 1.414L12 14.414l2.293 2.293a1 1 0 001.414-1.414L13.414 13l2.293-2.293a1 1 0 00-1.414-1.414L12 11.586 9.707 9.293z",
34
+ clipRule: "evenodd"
35
+ })));
36
+ CloseDocumentIcon.displayName = "CloseDocumentIcon";
37
+ export default CloseDocumentIcon;
38
+ //# sourceMappingURL=CloseDocument.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloseDocument.js","names":["React","CloseDocumentIcon","forwardRef","props","svgRef","createElement","_extends","xmlns","width","height","fill","focusable","ref","fillRule","d","clipRule","displayName"],"sources":["../../../../../src/components/Icons/collection/CloseDocument.tsx"],"sourcesContent":["import React from \"react\";\n\n/**\n * @component CloseDocumentIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n *\n * @example\n * return (\n * <CloseDocumentIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst CloseDocumentIcon = React.forwardRef(\n (props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"CloseDocumentIcon\"\n fill=\"var(--color-theme-600)\"\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n d=\"M5 4h10.19L19 7.891V20H5V4zm11.03-2H5a2 2 0 00-2 2v16a2 2 0 002 2h14a2 2 0 002-2V7.075L16.03 2zM9.707 9.293a1 1 0 00-1.414 1.414L10.586 13l-2.293 2.293a1 1 0 101.414 1.414L12 14.414l2.293 2.293a1 1 0 001.414-1.414L13.414 13l2.293-2.293a1 1 0 00-1.414-1.414L12 11.586 9.707 9.293z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nCloseDocumentIcon.displayName = \"CloseDocumentIcon\";\nexport default CloseDocumentIcon;\n"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,iBAAiB,gBAAGD,KAAK,CAACE,UAAU,CACxC,CAACC,KAAoC,EAAEC,MAAiC,kBACtEJ,KAAA,CAAAK,aAAA,QAAAC,QAAA;EACEC,KAAK,EAAC,4BAA4B;EAClCC,KAAK,EAAE,EAAG;EACVC,MAAM,EAAE,EAAG;EACX,eAAY,mBAAmB;EAC/BC,IAAI,EAAC,wBAAwB;EAC7BC,SAAS,EAAE,KAAM;EACjBC,GAAG,EAAER;AAAO,GACRD,KAAK,gBAETH,KAAA,CAAAK,aAAA;EACEQ,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC,yRAAyR;EAC3RC,QAAQ,EAAC;AAAS,CACnB,CACE,CAET,CAAC;AACDd,iBAAiB,CAACe,WAAW,GAAG,mBAAmB;AACnD,eAAef,iBAAiB"}
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ /**
3
+ * @component DollarDocumentPlusIcon
4
+ * @description
5
+ *
6
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
7
+ * The Icon component is
8
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
9
+ *
10
+ *
11
+ * @example
12
+ * return (
13
+ * <DollarDocumentPlusIcon className="mr-2" />
14
+ * )
15
+ *
16
+ * @see
17
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
18
+ * @see
19
+ * https://design.activecollab.com/docs/foundations/icons
20
+ */
21
+ declare const DollarDocumentPlusIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
22
+ export default DollarDocumentPlusIcon;
23
+ //# sourceMappingURL=DollarDocumentPlus.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DollarDocumentPlus.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/DollarDocumentPlus.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;;;;;;;;;;;;;GAkBG;AACH,QAAA,MAAM,sBAAsB,kHAmB3B,CAAC;AAEF,eAAe,sBAAsB,CAAC"}
@@ -0,0 +1,38 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import React from "react";
3
+
4
+ /**
5
+ * @component DollarDocumentPlusIcon
6
+ * @description
7
+ *
8
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
9
+ * The Icon component is
10
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
11
+ *
12
+ *
13
+ * @example
14
+ * return (
15
+ * <DollarDocumentPlusIcon className="mr-2" />
16
+ * )
17
+ *
18
+ * @see
19
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
20
+ * @see
21
+ * https://design.activecollab.com/docs/foundations/icons
22
+ */
23
+ const DollarDocumentPlusIcon = /*#__PURE__*/React.forwardRef((props, svgRef) => /*#__PURE__*/React.createElement("svg", _extends({
24
+ xmlns: "http://www.w3.org/2000/svg",
25
+ width: 24,
26
+ height: 24,
27
+ "data-testid": "DollarDocumentPlusIcon",
28
+ fill: "var(--color-theme-600)",
29
+ focusable: false,
30
+ ref: svgRef
31
+ }, props), /*#__PURE__*/React.createElement("path", {
32
+ fillRule: "evenodd",
33
+ d: "M16.03 2L21 7.075V12h-2V7.891L15.19 4H5v16l7-.001V22H5a2 2 0 01-2-2V4a2 2 0 012-2h11.03zM19 14v3h3v2h-3v3h-2v-3.001L14 19v-2l3-.001V14h2zm-7-7v1h2v2h-4v1h3a1 1 0 01.993.883L14 12v3a1 1 0 01-.883.993L13 16h-1v1h-2v-1H8v-2h4v-1H9a1 1 0 01-.993-.883L8 12V9a1 1 0 01.883-.993L9 8h1V7h2z",
34
+ clipRule: "evenodd"
35
+ })));
36
+ DollarDocumentPlusIcon.displayName = "DollarDocumentPlusIcon";
37
+ export default DollarDocumentPlusIcon;
38
+ //# sourceMappingURL=DollarDocumentPlus.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DollarDocumentPlus.js","names":["React","DollarDocumentPlusIcon","forwardRef","props","svgRef","createElement","_extends","xmlns","width","height","fill","focusable","ref","fillRule","d","clipRule","displayName"],"sources":["../../../../../src/components/Icons/collection/DollarDocumentPlus.tsx"],"sourcesContent":["import React from \"react\";\n\n/**\n * @component DollarDocumentPlusIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n *\n * @example\n * return (\n * <DollarDocumentPlusIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst DollarDocumentPlusIcon = React.forwardRef(\n (props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"DollarDocumentPlusIcon\"\n fill=\"var(--color-theme-600)\"\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n d=\"M16.03 2L21 7.075V12h-2V7.891L15.19 4H5v16l7-.001V22H5a2 2 0 01-2-2V4a2 2 0 012-2h11.03zM19 14v3h3v2h-3v3h-2v-3.001L14 19v-2l3-.001V14h2zm-7-7v1h2v2h-4v1h3a1 1 0 01.993.883L14 12v3a1 1 0 01-.883.993L13 16h-1v1h-2v-1H8v-2h4v-1H9a1 1 0 01-.993-.883L8 12V9a1 1 0 01.883-.993L9 8h1V7h2z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nDollarDocumentPlusIcon.displayName = \"DollarDocumentPlusIcon\";\nexport default DollarDocumentPlusIcon;\n"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,sBAAsB,gBAAGD,KAAK,CAACE,UAAU,CAC7C,CAACC,KAAoC,EAAEC,MAAiC,kBACtEJ,KAAA,CAAAK,aAAA,QAAAC,QAAA;EACEC,KAAK,EAAC,4BAA4B;EAClCC,KAAK,EAAE,EAAG;EACVC,MAAM,EAAE,EAAG;EACX,eAAY,wBAAwB;EACpCC,IAAI,EAAC,wBAAwB;EAC7BC,SAAS,EAAE,KAAM;EACjBC,GAAG,EAAER;AAAO,GACRD,KAAK,gBAETH,KAAA,CAAAK,aAAA;EACEQ,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC,4RAA4R;EAC9RC,QAAQ,EAAC;AAAS,CACnB,CACE,CAET,CAAC;AACDd,sBAAsB,CAACe,WAAW,GAAG,wBAAwB;AAC7D,eAAef,sBAAsB"}
@@ -30,6 +30,7 @@ export { default as ChatIcon } from "./Chat";
30
30
  export { default as CheckIcon } from "./Check";
31
31
  export { default as CheckboxBlankTogglerIcon } from "./CheckboxBlankToggler";
32
32
  export { default as CheckboxCircleArrowIcon } from "./CheckboxCircleArrow";
33
+ export { default as CheckboxDocumentsIcon } from "./CheckboxDocuments";
33
34
  export { default as CheckboxIcon } from "./Checkbox";
34
35
  export { default as ChecklistSmallIcon } from "./ChecklistSmall";
35
36
  export { default as ChecklistIcon } from "./Checklist";
@@ -40,6 +41,7 @@ export { default as ClockStopwatchIndicatorIcon } from "./ClockStopwatchIndicato
40
41
  export { default as ClockStopwatchSmallIcon } from "./ClockStopwatchSmall";
41
42
  export { default as ClockStopwatchIcon } from "./ClockStopwatch";
42
43
  export { default as ClockIcon } from "./Clock";
44
+ export { default as CloseDocumentIcon } from "./CloseDocument";
43
45
  export { default as CloseSmallIcon } from "./CloseSmall";
44
46
  export { default as CloseIcon } from "./Close";
45
47
  export { default as CollapsIcon } from "./CollapsIcon";
@@ -61,6 +63,7 @@ export { default as DollarCheckmarkSmallIcon } from "./DollarCheckmarkSmall";
61
63
  export { default as DollarCheckmarkIcon } from "./DollarCheckmark";
62
64
  export { default as DollarClockSmallIcon } from "./DollarClockSmall";
63
65
  export { default as DollarClockIcon } from "./DollarClock";
66
+ export { default as DollarDocumentPlusIcon } from "./DollarDocumentPlus";
64
67
  export { default as DollarDocumentIcon } from "./DollarDocument";
65
68
  export { default as DollarOffSmallIcon } from "./DollarOffSmall";
66
69
  export { default as DollarOffIcon } from "./DollarOff";