@activecollab/components 2.0.302 → 2.0.304
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Icons/collection/{StopCircle.js → SearchPlus.js} +19 -20
- package/dist/cjs/components/Icons/collection/SearchPlus.js.map +1 -0
- package/dist/cjs/components/Icons/collection/Stop.js +60 -0
- package/dist/cjs/components/Icons/collection/Stop.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +10 -3
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/{StopCircle.d.ts → SearchPlus.d.ts} +6 -6
- package/dist/esm/components/Icons/collection/SearchPlus.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/SearchPlus.js +60 -0
- package/dist/esm/components/Icons/collection/SearchPlus.js.map +1 -0
- package/dist/esm/components/Icons/collection/Stop.d.ts +32 -0
- package/dist/esm/components/Icons/collection/Stop.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/{StopCircle.js → Stop.js} +14 -20
- package/dist/esm/components/Icons/collection/Stop.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +2 -1
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +2 -1
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +445 -396
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/dist/cjs/components/Icons/collection/StopCircle.js.map +0 -1
- package/dist/esm/components/Icons/collection/StopCircle.d.ts.map +0 -1
- package/dist/esm/components/Icons/collection/StopCircle.js.map +0 -1
|
@@ -12,7 +12,7 @@ function _extends() { return _extends = Object.assign ? Object.assign.bind() : f
|
|
|
12
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
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
14
|
/**
|
|
15
|
-
* @component
|
|
15
|
+
* @component SearchPlusIcon
|
|
16
16
|
* @description
|
|
17
17
|
*
|
|
18
18
|
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
@@ -24,12 +24,12 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
|
|
|
24
24
|
*
|
|
25
25
|
* @example
|
|
26
26
|
* return (
|
|
27
|
-
* <
|
|
27
|
+
* <SearchPlusIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
28
28
|
* )
|
|
29
29
|
*
|
|
30
30
|
* @example
|
|
31
31
|
* return (
|
|
32
|
-
* <
|
|
32
|
+
* <SearchPlusIcon className="mr-2" />
|
|
33
33
|
* )
|
|
34
34
|
*
|
|
35
35
|
* @see
|
|
@@ -37,30 +37,29 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
|
|
|
37
37
|
* @see
|
|
38
38
|
* https://design.activecollab.com/docs/foundations/icons
|
|
39
39
|
*/
|
|
40
|
-
var
|
|
40
|
+
var SearchPlusIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, svgRef) {
|
|
41
41
|
var gradient = _ref.gradient,
|
|
42
42
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
43
43
|
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
44
|
-
width: 32,
|
|
45
|
-
height: 32,
|
|
46
|
-
viewBox: "0 0 32 32",
|
|
47
44
|
xmlns: "http://www.w3.org/2000/svg",
|
|
48
|
-
|
|
45
|
+
width: 24,
|
|
46
|
+
height: 24,
|
|
47
|
+
"data-testid": "SearchPlusIcon",
|
|
49
48
|
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
50
49
|
focusable: false,
|
|
51
50
|
ref: svgRef
|
|
52
51
|
}, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
|
|
53
52
|
gradient: gradient
|
|
54
|
-
}), /*#__PURE__*/_react.default.createElement("
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
})
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
}))
|
|
53
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
54
|
+
fillRule: "evenodd",
|
|
55
|
+
d: "M10.5 3a7.5 7.5 0 015.927 12.097q.098.044.186.113l.094.083 4 4a1 1 0 01-1.32 1.497l-.094-.083-4-4a1 1 0 01-.197-.28A7.5 7.5 0 1110.5 3m0 2a5.5 5.5 0 100 11 5.5 5.5 0 000-11",
|
|
56
|
+
clipRule: "evenodd"
|
|
57
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
58
|
+
fillRule: "evenodd",
|
|
59
|
+
d: "M7.592 9.973h2.38V7.591a.595.595 0 011.191 0v2.38h2.381a.595.595 0 110 1.191h-2.38v2.381a.595.595 0 11-1.191 0l-.001-2.38h-2.38a.595.595 0 110-1.191",
|
|
60
|
+
clipRule: "evenodd"
|
|
61
|
+
}));
|
|
63
62
|
});
|
|
64
|
-
|
|
65
|
-
var _default = exports.default =
|
|
66
|
-
//# sourceMappingURL=
|
|
63
|
+
SearchPlusIcon.displayName = "SearchPlusIcon";
|
|
64
|
+
var _default = exports.default = SearchPlusIcon;
|
|
65
|
+
//# sourceMappingURL=SearchPlus.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchPlus.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","SearchPlusIcon","React","forwardRef","_ref","svgRef","gradient","props","createElement","xmlns","width","height","fill","focusable","ref","GradientDefs","fillRule","d","clipRule","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/SearchPlus.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component SearchPlusIcon\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 * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <SearchPlusIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <SearchPlusIcon 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 SearchPlusIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n svgRef?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"SearchPlusIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n fillRule=\"evenodd\"\n d=\"M10.5 3a7.5 7.5 0 015.927 12.097q.098.044.186.113l.094.083 4 4a1 1 0 01-1.32 1.497l-.094-.083-4-4a1 1 0 01-.197-.28A7.5 7.5 0 1110.5 3m0 2a5.5 5.5 0 100 11 5.5 5.5 0 000-11\"\n clipRule=\"evenodd\"\n />\n <path\n fillRule=\"evenodd\"\n d=\"M7.592 9.973h2.38V7.591a.595.595 0 011.191 0v2.38h2.381a.595.595 0 110 1.191h-2.38v2.381a.595.595 0 11-1.191 0l-.001-2.38h-2.38a.595.595 0 110-1.191\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nSearchPlusIcon.displayName = \"SearchPlusIcon\";\nexport default SearchPlusIcon;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,60 @@
|
|
|
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 StopIcon
|
|
16
|
+
* @description
|
|
17
|
+
*
|
|
18
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
19
|
+
* The Icon component is
|
|
20
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
21
|
+
*
|
|
22
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
23
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* return (
|
|
27
|
+
* <StopIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
28
|
+
* )
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* return (
|
|
32
|
+
* <StopIcon className="mr-2" />
|
|
33
|
+
* )
|
|
34
|
+
*
|
|
35
|
+
* @see
|
|
36
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
37
|
+
* @see
|
|
38
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
39
|
+
*/
|
|
40
|
+
var StopIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, svgRef) {
|
|
41
|
+
var gradient = _ref.gradient,
|
|
42
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
43
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
44
|
+
width: 24,
|
|
45
|
+
height: 24,
|
|
46
|
+
viewBox: "0 0 24 24",
|
|
47
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
48
|
+
"data-testid": "StopIcon",
|
|
49
|
+
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
50
|
+
focusable: false,
|
|
51
|
+
ref: svgRef
|
|
52
|
+
}, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
|
|
53
|
+
gradient: gradient
|
|
54
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
+
d: "M12 1.5a10.5 10.5 0 100 21 10.5 10.5 0 000-21zM16.5 15a1.5 1.5 0 01-1.5 1.5H9A1.5 1.5 0 017.5 15V9A1.5 1.5 0 019 7.5h6A1.5 1.5 0 0116.5 9v6z"
|
|
56
|
+
}));
|
|
57
|
+
});
|
|
58
|
+
StopIcon.displayName = "StopIcon";
|
|
59
|
+
var _default = exports.default = StopIcon;
|
|
60
|
+
//# sourceMappingURL=Stop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stop.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","StopIcon","React","forwardRef","_ref","svgRef","gradient","props","createElement","width","height","viewBox","xmlns","fill","focusable","ref","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/Stop.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component StopIcon\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 * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <StopIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <StopIcon 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 StopIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n svgRef?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n data-testid=\"StopIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M12 1.5a10.5 10.5 0 100 21 10.5 10.5 0 000-21zM16.5 15a1.5 1.5 0 01-1.5 1.5H9A1.5 1.5 0 017.5 15V9A1.5 1.5 0 019 7.5h6A1.5 1.5 0 0116.5 9v6z\" />\n </svg>\n )\n);\nStopIcon.displayName = \"StopIcon\";\nexport default StopIcon;\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,aAAA,GAAAD,OAAA;AAAkD,IAAAE,SAAA;AAAA,SAAAH,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,SAAA,WAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,CAAA,aAAAP,CAAA,MAAAA,CAAA,GAAAQ,SAAA,CAAAC,MAAA,EAAAT,CAAA,UAAAU,CAAA,GAAAF,SAAA,CAAAR,CAAA,YAAAW,CAAA,IAAAD,CAAA,OAAAE,cAAA,CAAAC,IAAA,CAAAH,CAAA,EAAAC,CAAA,MAAAJ,CAAA,CAAAI,CAAA,IAAAD,CAAA,CAAAC,CAAA,aAAAJ,CAAA,KAAAJ,QAAA,CAAAW,KAAA,OAAAN,SAAA;AAAA,SAAAO,yBAAAf,CAAA,EAAAU,CAAA,gBAAAV,CAAA,iBAAAgB,CAAA,EAAAL,CAAA,EAAAM,CAAA,GAAAC,6BAAA,CAAAlB,CAAA,EAAAU,CAAA,OAAAN,MAAA,CAAAe,qBAAA,QAAAZ,CAAA,GAAAH,MAAA,CAAAe,qBAAA,CAAAnB,CAAA,QAAAW,CAAA,MAAAA,CAAA,GAAAJ,CAAA,CAAAE,MAAA,EAAAE,CAAA,IAAAK,CAAA,GAAAT,CAAA,CAAAI,CAAA,UAAAD,CAAA,CAAAU,OAAA,CAAAJ,CAAA,QAAAK,oBAAA,CAAAR,IAAA,CAAAb,CAAA,EAAAgB,CAAA,MAAAC,CAAA,CAAAD,CAAA,IAAAhB,CAAA,CAAAgB,CAAA,aAAAC,CAAA;AAAA,SAAAC,8BAAAP,CAAA,EAAAX,CAAA,gBAAAW,CAAA,iBAAAD,CAAA,gBAAAH,CAAA,IAAAI,CAAA,SAAAC,cAAA,CAAAC,IAAA,CAAAF,CAAA,EAAAJ,CAAA,gBAAAP,CAAA,CAAAoB,OAAA,CAAAb,CAAA,aAAAG,CAAA,CAAAH,CAAA,IAAAI,CAAA,CAAAJ,CAAA,YAAAG,CAAA;AAElD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAMY,QAAQ,gBAAGC,cAAK,CAACC,UAAU,CAC/B,UAAAC,IAAA,EAOEC,MAAiC;EAAA,IAL/BC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACLC,KAAK,GAAAb,wBAAA,CAAAU,IAAA,EAAA1B,SAAA;EAAA,oBAMVJ,MAAA,CAAAO,OAAA,CAAA2B,aAAA,QAAA1B,QAAA;IACE2B,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACXC,OAAO,EAAC,WAAW;IACnBC,KAAK,EAAC,4BAA4B;IAClC,eAAY,UAAU;IACtBC,IAAI,EACFP,QAAQ,GACJ,qBAAqB,GACrBC,KAAK,aAALA,KAAK,eAALA,KAAK,CAAEM,IAAI,GACXN,KAAK,CAACM,IAAI,GACV,wBACL;IACDC,SAAS,EAAE,KAAM;IACjBC,GAAG,EAAEV;EAAO,GACRE,KAAK,gBAETjC,MAAA,CAAAO,OAAA,CAAA2B,aAAA,CAAC/B,aAAA,CAAAuC,YAAY;IAACV,QAAQ,EAAEA;EAAS,CAAE,CAAC,eACpChC,MAAA,CAAAO,OAAA,CAAA2B,aAAA;IAAMS,CAAC,EAAC;EAA8I,CAAE,CACrJ,CAAC;AAAA,CAEV,CAAC;AACDhB,QAAQ,CAACiB,WAAW,GAAG,UAAU;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAvC,OAAA,GACnBoB,QAAQ","ignoreList":[]}
|
|
@@ -1089,6 +1089,12 @@ Object.defineProperty(exports, "SearchLargeIcon", {
|
|
|
1089
1089
|
return _SearchLarge.default;
|
|
1090
1090
|
}
|
|
1091
1091
|
});
|
|
1092
|
+
Object.defineProperty(exports, "SearchPlusIcon", {
|
|
1093
|
+
enumerable: true,
|
|
1094
|
+
get: function get() {
|
|
1095
|
+
return _SearchPlus.default;
|
|
1096
|
+
}
|
|
1097
|
+
});
|
|
1092
1098
|
Object.defineProperty(exports, "SendBlankIcon", {
|
|
1093
1099
|
enumerable: true,
|
|
1094
1100
|
get: function get() {
|
|
@@ -1161,10 +1167,10 @@ Object.defineProperty(exports, "StatusIcon", {
|
|
|
1161
1167
|
return _Status.default;
|
|
1162
1168
|
}
|
|
1163
1169
|
});
|
|
1164
|
-
Object.defineProperty(exports, "
|
|
1170
|
+
Object.defineProperty(exports, "StopIcon", {
|
|
1165
1171
|
enumerable: true,
|
|
1166
1172
|
get: function get() {
|
|
1167
|
-
return
|
|
1173
|
+
return _Stop.default;
|
|
1168
1174
|
}
|
|
1169
1175
|
});
|
|
1170
1176
|
Object.defineProperty(exports, "StopwatchIcon", {
|
|
@@ -1468,6 +1474,7 @@ var _Rocket = _interopRequireDefault(require("./Rocket"));
|
|
|
1468
1474
|
var _Save = _interopRequireDefault(require("./Save"));
|
|
1469
1475
|
var _SearchLarge = _interopRequireDefault(require("./SearchLarge"));
|
|
1470
1476
|
var _Search = _interopRequireDefault(require("./Search"));
|
|
1477
|
+
var _SearchPlus = _interopRequireDefault(require("./SearchPlus"));
|
|
1471
1478
|
var _SendBlank = _interopRequireDefault(require("./SendBlank"));
|
|
1472
1479
|
var _SendFilled = _interopRequireDefault(require("./SendFilled"));
|
|
1473
1480
|
var _Settings = _interopRequireDefault(require("./Settings"));
|
|
@@ -1480,7 +1487,7 @@ var _Spark = _interopRequireDefault(require("./Spark"));
|
|
|
1480
1487
|
var _StarOutline = _interopRequireDefault(require("./StarOutline"));
|
|
1481
1488
|
var _Star = _interopRequireDefault(require("./Star"));
|
|
1482
1489
|
var _Status = _interopRequireDefault(require("./Status"));
|
|
1483
|
-
var
|
|
1490
|
+
var _Stop = _interopRequireDefault(require("./Stop"));
|
|
1484
1491
|
var _Stopwatch = _interopRequireDefault(require("./Stopwatch"));
|
|
1485
1492
|
var _Sun = _interopRequireDefault(require("./Sun"));
|
|
1486
1493
|
var _SystemSettings = _interopRequireDefault(require("./SystemSettings"));
|
|
@@ -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","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_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","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_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","_Save","_SearchLarge","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_StopCircle","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_ThumbUpOutline","_Trash","_TreeDots","_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 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 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 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 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 SaveIcon } from \"./Save\";\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 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 StopCircleIcon } from \"./StopCircle\";\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 ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\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","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_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","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_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","_Save","_SearchLarge","_Search","_SearchPlus","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_ThumbUpOutline","_Trash","_TreeDots","_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 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 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 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 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 SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\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 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 ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\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,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
/**
|
|
3
|
-
* @component
|
|
3
|
+
* @component SearchPlusIcon
|
|
4
4
|
* @description
|
|
5
5
|
*
|
|
6
6
|
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
@@ -12,12 +12,12 @@ import React from "react";
|
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* return (
|
|
15
|
-
* <
|
|
15
|
+
* <SearchPlusIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
16
16
|
* )
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* return (
|
|
20
|
-
* <
|
|
20
|
+
* <SearchPlusIcon className="mr-2" />
|
|
21
21
|
* )
|
|
22
22
|
*
|
|
23
23
|
* @see
|
|
@@ -25,8 +25,8 @@ import React from "react";
|
|
|
25
25
|
* @see
|
|
26
26
|
* https://design.activecollab.com/docs/foundations/icons
|
|
27
27
|
*/
|
|
28
|
-
declare const
|
|
28
|
+
declare const SearchPlusIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
|
|
29
29
|
gradient?: string;
|
|
30
30
|
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
31
|
-
export default
|
|
32
|
-
//# sourceMappingURL=
|
|
31
|
+
export default SearchPlusIcon;
|
|
32
|
+
//# sourceMappingURL=SearchPlus.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchPlus.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/SearchPlus.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,cAAc;eAMH,MAAM;+CAiCtB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
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 SearchPlusIcon
|
|
9
|
+
* @description
|
|
10
|
+
*
|
|
11
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
12
|
+
* The Icon component is
|
|
13
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
14
|
+
*
|
|
15
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
16
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* return (
|
|
20
|
+
* <SearchPlusIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
21
|
+
* )
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* return (
|
|
25
|
+
* <SearchPlusIcon className="mr-2" />
|
|
26
|
+
* )
|
|
27
|
+
*
|
|
28
|
+
* @see
|
|
29
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
30
|
+
* @see
|
|
31
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
32
|
+
*/
|
|
33
|
+
const SearchPlusIcon = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
34
|
+
let {
|
|
35
|
+
gradient
|
|
36
|
+
} = _ref,
|
|
37
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
38
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: 24,
|
|
41
|
+
height: 24,
|
|
42
|
+
"data-testid": "SearchPlusIcon",
|
|
43
|
+
fill: gradient ? "url(#icon-gradient)" : props != null && props.fill ? props.fill : "var(--color-theme-600)",
|
|
44
|
+
focusable: false,
|
|
45
|
+
ref: svgRef
|
|
46
|
+
}, props), /*#__PURE__*/React.createElement(GradientDefs, {
|
|
47
|
+
gradient: gradient
|
|
48
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
49
|
+
fillRule: "evenodd",
|
|
50
|
+
d: "M10.5 3a7.5 7.5 0 015.927 12.097q.098.044.186.113l.094.083 4 4a1 1 0 01-1.32 1.497l-.094-.083-4-4a1 1 0 01-.197-.28A7.5 7.5 0 1110.5 3m0 2a5.5 5.5 0 100 11 5.5 5.5 0 000-11",
|
|
51
|
+
clipRule: "evenodd"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
fillRule: "evenodd",
|
|
54
|
+
d: "M7.592 9.973h2.38V7.591a.595.595 0 011.191 0v2.38h2.381a.595.595 0 110 1.191h-2.38v2.381a.595.595 0 11-1.191 0l-.001-2.38h-2.38a.595.595 0 110-1.191",
|
|
55
|
+
clipRule: "evenodd"
|
|
56
|
+
}));
|
|
57
|
+
});
|
|
58
|
+
SearchPlusIcon.displayName = "SearchPlusIcon";
|
|
59
|
+
export default SearchPlusIcon;
|
|
60
|
+
//# sourceMappingURL=SearchPlus.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchPlus.js","names":["React","GradientDefs","SearchPlusIcon","forwardRef","_ref","svgRef","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","xmlns","width","height","fill","focusable","ref","fillRule","d","clipRule","displayName"],"sources":["../../../../../src/components/Icons/collection/SearchPlus.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component SearchPlusIcon\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 * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <SearchPlusIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <SearchPlusIcon 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 SearchPlusIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n svgRef?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n data-testid=\"SearchPlusIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n fillRule=\"evenodd\"\n d=\"M10.5 3a7.5 7.5 0 015.927 12.097q.098.044.186.113l.094.083 4 4a1 1 0 01-1.32 1.497l-.094-.083-4-4a1 1 0 01-.197-.28A7.5 7.5 0 1110.5 3m0 2a5.5 5.5 0 100 11 5.5 5.5 0 000-11\"\n clipRule=\"evenodd\"\n />\n <path\n fillRule=\"evenodd\"\n d=\"M7.592 9.973h2.38V7.591a.595.595 0 011.191 0v2.38h2.381a.595.595 0 110 1.191h-2.38v2.381a.595.595 0 11-1.191 0l-.001-2.38h-2.38a.595.595 0 110-1.191\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n);\nSearchPlusIcon.displayName = \"SearchPlusIcon\";\nexport default SearchPlusIcon;\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,SAASC,YAAY,QAAQ,oBAAoB;;AAEjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,cAAc,gBAAGF,KAAK,CAACG,UAAU,CACrC,CAAAC,IAAA,EAOEC,MAAiC;EAAA,IANjC;MACEC;IAIF,CAAC,GAAAF,IAAA;IAHIG,KAAK,GAAAC,6BAAA,CAAAJ,IAAA,EAAAK,SAAA;EAAA,oBAMVT,KAAA,CAAAU,aAAA,QAAAC,QAAA;IACEC,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACX,eAAY,gBAAgB;IAC5BC,IAAI,EACFT,QAAQ,GACJ,qBAAqB,GACrBC,KAAK,YAALA,KAAK,CAAEQ,IAAI,GACXR,KAAK,CAACQ,IAAI,GACV,wBACL;IACDC,SAAS,EAAE,KAAM;IACjBC,GAAG,EAAEZ;EAAO,GACRE,KAAK,gBAETP,KAAA,CAAAU,aAAA,CAACT,YAAY;IAACK,QAAQ,EAAEA;EAAS,CAAE,CAAC,eACpCN,KAAA,CAAAU,aAAA;IACEQ,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,8KAA8K;IAChLC,QAAQ,EAAC;EAAS,CACnB,CAAC,eACFpB,KAAA,CAAAU,aAAA;IACEQ,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,sJAAsJ;IACxJC,QAAQ,EAAC;EAAS,CACnB,CACE,CAAC;AAAA,CAEV,CAAC;AACDlB,cAAc,CAACmB,WAAW,GAAG,gBAAgB;AAC7C,eAAenB,cAAc","ignoreList":[]}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
/**
|
|
3
|
+
* @component StopIcon
|
|
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
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
11
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* return (
|
|
15
|
+
* <StopIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
16
|
+
* )
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* return (
|
|
20
|
+
* <StopIcon className="mr-2" />
|
|
21
|
+
* )
|
|
22
|
+
*
|
|
23
|
+
* @see
|
|
24
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
25
|
+
* @see
|
|
26
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
27
|
+
*/
|
|
28
|
+
declare const StopIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
|
|
29
|
+
gradient?: string;
|
|
30
|
+
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
31
|
+
export default StopIcon;
|
|
32
|
+
//# sourceMappingURL=Stop.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stop.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/Stop.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,QAAQ;eAMG,MAAM;+CAyBtB,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -5,7 +5,7 @@ import React from "react";
|
|
|
5
5
|
import { GradientDefs } from "../../GradientDefs";
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* @component
|
|
8
|
+
* @component StopIcon
|
|
9
9
|
* @description
|
|
10
10
|
*
|
|
11
11
|
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
@@ -17,12 +17,12 @@ import { GradientDefs } from "../../GradientDefs";
|
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* return (
|
|
20
|
-
* <
|
|
20
|
+
* <StopIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
21
21
|
* )
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
24
|
* return (
|
|
25
|
-
* <
|
|
25
|
+
* <StopIcon className="mr-2" />
|
|
26
26
|
* )
|
|
27
27
|
*
|
|
28
28
|
* @see
|
|
@@ -30,32 +30,26 @@ import { GradientDefs } from "../../GradientDefs";
|
|
|
30
30
|
* @see
|
|
31
31
|
* https://design.activecollab.com/docs/foundations/icons
|
|
32
32
|
*/
|
|
33
|
-
const
|
|
33
|
+
const StopIcon = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
34
34
|
let {
|
|
35
35
|
gradient
|
|
36
36
|
} = _ref,
|
|
37
37
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
38
38
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
39
|
-
width:
|
|
40
|
-
height:
|
|
41
|
-
viewBox: "0 0
|
|
39
|
+
width: 24,
|
|
40
|
+
height: 24,
|
|
41
|
+
viewBox: "0 0 24 24",
|
|
42
42
|
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
-
"data-testid": "
|
|
43
|
+
"data-testid": "StopIcon",
|
|
44
44
|
fill: gradient ? "url(#icon-gradient)" : props != null && props.fill ? props.fill : "var(--color-theme-600)",
|
|
45
45
|
focusable: false,
|
|
46
46
|
ref: svgRef
|
|
47
47
|
}, props), /*#__PURE__*/React.createElement(GradientDefs, {
|
|
48
48
|
gradient: gradient
|
|
49
|
-
}), /*#__PURE__*/React.createElement("
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
d: "M16 2a14 14 0 100 28 14 14 0 000-28zm6 18a2 2 0 01-2 2h-8a2 2 0 01-2-2v-8a2 2 0 012-2h8a2 2 0 012 2v8z"
|
|
53
|
-
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
54
|
-
id: "stop-circle_svg__clip0_2139_1987"
|
|
55
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
56
|
-
d: "M0 0h32v32H0z"
|
|
57
|
-
}))));
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M12 1.5a10.5 10.5 0 100 21 10.5 10.5 0 000-21zM16.5 15a1.5 1.5 0 01-1.5 1.5H9A1.5 1.5 0 017.5 15V9A1.5 1.5 0 019 7.5h6A1.5 1.5 0 0116.5 9v6z"
|
|
51
|
+
}));
|
|
58
52
|
});
|
|
59
|
-
|
|
60
|
-
export default
|
|
61
|
-
//# sourceMappingURL=
|
|
53
|
+
StopIcon.displayName = "StopIcon";
|
|
54
|
+
export default StopIcon;
|
|
55
|
+
//# sourceMappingURL=Stop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stop.js","names":["React","GradientDefs","StopIcon","forwardRef","_ref","svgRef","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","width","height","viewBox","xmlns","fill","focusable","ref","d","displayName"],"sources":["../../../../../src/components/Icons/collection/Stop.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component StopIcon\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 * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <StopIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <StopIcon 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 StopIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n svgRef?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n data-testid=\"StopIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={svgRef}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M12 1.5a10.5 10.5 0 100 21 10.5 10.5 0 000-21zM16.5 15a1.5 1.5 0 01-1.5 1.5H9A1.5 1.5 0 017.5 15V9A1.5 1.5 0 019 7.5h6A1.5 1.5 0 0116.5 9v6z\" />\n </svg>\n )\n);\nStopIcon.displayName = \"StopIcon\";\nexport default StopIcon;\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,SAASC,YAAY,QAAQ,oBAAoB;;AAEjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,QAAQ,gBAAGF,KAAK,CAACG,UAAU,CAC/B,CAAAC,IAAA,EAOEC,MAAiC;EAAA,IANjC;MACEC;IAIF,CAAC,GAAAF,IAAA;IAHIG,KAAK,GAAAC,6BAAA,CAAAJ,IAAA,EAAAK,SAAA;EAAA,oBAMVT,KAAA,CAAAU,aAAA,QAAAC,QAAA;IACEC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACXC,OAAO,EAAC,WAAW;IACnBC,KAAK,EAAC,4BAA4B;IAClC,eAAY,UAAU;IACtBC,IAAI,EACFV,QAAQ,GACJ,qBAAqB,GACrBC,KAAK,YAALA,KAAK,CAAES,IAAI,GACXT,KAAK,CAACS,IAAI,GACV,wBACL;IACDC,SAAS,EAAE,KAAM;IACjBC,GAAG,EAAEb;EAAO,GACRE,KAAK,gBAETP,KAAA,CAAAU,aAAA,CAACT,YAAY;IAACK,QAAQ,EAAEA;EAAS,CAAE,CAAC,eACpCN,KAAA,CAAAU,aAAA;IAAMS,CAAC,EAAC;EAA8I,CAAE,CACrJ,CAAC;AAAA,CAEV,CAAC;AACDjB,QAAQ,CAACkB,WAAW,GAAG,UAAU;AACjC,eAAelB,QAAQ","ignoreList":[]}
|
|
@@ -179,6 +179,7 @@ export { default as RocketIcon } from "./Rocket";
|
|
|
179
179
|
export { default as SaveIcon } from "./Save";
|
|
180
180
|
export { default as SearchLargeIcon } from "./SearchLarge";
|
|
181
181
|
export { default as SearchIcon } from "./Search";
|
|
182
|
+
export { default as SearchPlusIcon } from "./SearchPlus";
|
|
182
183
|
export { default as SendBlankIcon } from "./SendBlank";
|
|
183
184
|
export { default as SendFilledIcon } from "./SendFilled";
|
|
184
185
|
export { default as SettingsIcon } from "./Settings";
|
|
@@ -191,7 +192,7 @@ export { default as SparkIcon } from "./Spark";
|
|
|
191
192
|
export { default as StarOutlineIcon } from "./StarOutline";
|
|
192
193
|
export { default as StarIcon } from "./Star";
|
|
193
194
|
export { default as StatusIcon } from "./Status";
|
|
194
|
-
export { default as
|
|
195
|
+
export { default as StopIcon } from "./Stop";
|
|
195
196
|
export { default as StopwatchIcon } from "./Stopwatch";
|
|
196
197
|
export { default as SunIcon } from "./Sun";
|
|
197
198
|
export { default as SystemSettingsIcon } from "./SystemSettings";
|