@activecollab/components 2.0.257 → 2.0.259
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/MoneyStack.js +68 -0
- package/dist/cjs/components/Icons/collection/MoneyStack.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +8 -1
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/cjs/hooks/useHighlightText.js +2 -2
- package/dist/cjs/hooks/useHighlightText.js.map +1 -1
- package/dist/esm/components/Icons/collection/MoneyStack.d.ts +32 -0
- package/dist/esm/components/Icons/collection/MoneyStack.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/MoneyStack.js +61 -0
- package/dist/esm/components/Icons/collection/MoneyStack.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/esm/hooks/useHighlightText.js +2 -2
- package/dist/esm/hooks/useHighlightText.js.map +1 -1
- package/dist/index.js +208 -150
- 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/index.js
CHANGED
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
})(["display:inline-flex;svg{margin:0 4px;}"]);
|
|
202
202
|
StyledButtonElement.displayName = "StyledButtonElement";
|
|
203
203
|
|
|
204
|
-
var _excluded$
|
|
204
|
+
var _excluded$4R = ["children", "active", "variant", "size", "className"];
|
|
205
205
|
/**
|
|
206
206
|
* @component Button
|
|
207
207
|
* @description
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
_ref$size = _ref.size,
|
|
232
232
|
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
233
233
|
className = _ref.className,
|
|
234
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
234
|
+
args = _objectWithoutProperties(_ref, _excluded$4R);
|
|
235
235
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
|
|
236
236
|
className: classNames__default["default"]("c-btn", className, {
|
|
237
237
|
"c-btn--contained": variant === "primary" || variant === "contained",
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
})));
|
|
297
297
|
};
|
|
298
298
|
|
|
299
|
-
var _excluded$
|
|
299
|
+
var _excluded$4Q = ["gradient"];
|
|
300
300
|
|
|
301
301
|
/**
|
|
302
302
|
* @component AddCrossTinyIcon
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
*/
|
|
327
327
|
var AddCrossTinyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
328
328
|
var gradient = _ref.gradient,
|
|
329
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
329
|
+
props = _objectWithoutProperties(_ref, _excluded$4Q);
|
|
330
330
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
331
331
|
width: 24,
|
|
332
332
|
height: 24,
|
|
@@ -346,12 +346,12 @@
|
|
|
346
346
|
AddCrossTinyIcon.displayName = "AddCrossTinyIcon";
|
|
347
347
|
var AddCrossTinyIcon$1 = AddCrossTinyIcon;
|
|
348
348
|
|
|
349
|
-
var _excluded$
|
|
349
|
+
var _excluded$4P = ["className", "disabled"];
|
|
350
350
|
var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
351
351
|
var className = _ref.className,
|
|
352
352
|
_ref$disabled = _ref.disabled,
|
|
353
353
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
354
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
354
|
+
rest = _objectWithoutProperties(_ref, _excluded$4P);
|
|
355
355
|
return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
|
|
356
356
|
ref: ref,
|
|
357
357
|
variant: "contained",
|
|
@@ -389,12 +389,12 @@
|
|
|
389
389
|
});
|
|
390
390
|
StyledButtonGroup$1.displayName = "StyledButtonGroup";
|
|
391
391
|
|
|
392
|
-
var _excluded$
|
|
392
|
+
var _excluded$4O = ["children", "className", "invalid"];
|
|
393
393
|
var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
394
394
|
var children = _ref.children,
|
|
395
395
|
className = _ref.className,
|
|
396
396
|
invalid = _ref.invalid,
|
|
397
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
397
|
+
rest = _objectWithoutProperties(_ref, _excluded$4O);
|
|
398
398
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
|
|
399
399
|
ref: ref,
|
|
400
400
|
className: classNames__default["default"]("c-btn-group", className),
|
|
@@ -419,11 +419,11 @@
|
|
|
419
419
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
420
420
|
StyledListSeparator$1.displayName = "StyledListSeparator";
|
|
421
421
|
|
|
422
|
-
var _excluded$
|
|
422
|
+
var _excluded$4N = ["children", "className"];
|
|
423
423
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
424
424
|
var children = _ref.children,
|
|
425
425
|
className = _ref.className,
|
|
426
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
426
|
+
props = _objectWithoutProperties(_ref, _excluded$4N);
|
|
427
427
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem$1, _extends({
|
|
428
428
|
className: classNames__default["default"]("c-list-item", className),
|
|
429
429
|
ref: ref,
|
|
@@ -432,21 +432,21 @@
|
|
|
432
432
|
});
|
|
433
433
|
ListItem.displayName = "ListItem";
|
|
434
434
|
|
|
435
|
-
var _excluded$
|
|
435
|
+
var _excluded$4M = ["className"];
|
|
436
436
|
var ListSeparator = function ListSeparator(_ref) {
|
|
437
437
|
var className = _ref.className,
|
|
438
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
438
|
+
props = _objectWithoutProperties(_ref, _excluded$4M);
|
|
439
439
|
return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator$1, _extends({
|
|
440
440
|
className: classNames__default["default"]("c-list-separator", className)
|
|
441
441
|
}, props));
|
|
442
442
|
};
|
|
443
443
|
ListSeparator.displayName = "ListSeparator";
|
|
444
444
|
|
|
445
|
-
var _excluded$
|
|
445
|
+
var _excluded$4L = ["children", "className"];
|
|
446
446
|
var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
447
447
|
var children = _ref.children,
|
|
448
448
|
className = _ref.className,
|
|
449
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
449
|
+
props = _objectWithoutProperties(_ref, _excluded$4L);
|
|
450
450
|
return /*#__PURE__*/React__default["default"].createElement(StyledList$1, _extends({
|
|
451
451
|
className: className,
|
|
452
452
|
ref: ref,
|
|
@@ -959,7 +959,7 @@
|
|
|
959
959
|
return size === "big" && styled.css(["width:40px;"]);
|
|
960
960
|
});
|
|
961
961
|
|
|
962
|
-
var _excluded$
|
|
962
|
+
var _excluded$4K = ["children", "className", "variant", "size", "active"];
|
|
963
963
|
|
|
964
964
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
965
965
|
|
|
@@ -989,7 +989,7 @@
|
|
|
989
989
|
variant = _ref.variant,
|
|
990
990
|
size = _ref.size,
|
|
991
991
|
active = _ref.active,
|
|
992
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
992
|
+
args = _objectWithoutProperties(_ref, _excluded$4K);
|
|
993
993
|
return /*#__PURE__*/React__default["default"].createElement(StyledIconButton$1, _extends({
|
|
994
994
|
className: className,
|
|
995
995
|
variant: variant,
|
|
@@ -1000,6 +1000,57 @@
|
|
|
1000
1000
|
});
|
|
1001
1001
|
IconButton.displayName = "IconButton";
|
|
1002
1002
|
|
|
1003
|
+
var _excluded$4J = ["gradient"];
|
|
1004
|
+
|
|
1005
|
+
/**
|
|
1006
|
+
* @component RecurringIcon
|
|
1007
|
+
* @description
|
|
1008
|
+
*
|
|
1009
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
1010
|
+
* The Icon component is
|
|
1011
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
1012
|
+
*
|
|
1013
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
1014
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
1015
|
+
*
|
|
1016
|
+
* @example
|
|
1017
|
+
* return (
|
|
1018
|
+
* <RecurringIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
1019
|
+
* )
|
|
1020
|
+
*
|
|
1021
|
+
* @example
|
|
1022
|
+
* return (
|
|
1023
|
+
* <RecurringIcon className="mr-2" />
|
|
1024
|
+
* )
|
|
1025
|
+
*
|
|
1026
|
+
* @see
|
|
1027
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
1028
|
+
* @see
|
|
1029
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
1030
|
+
*/
|
|
1031
|
+
var RecurringIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
1032
|
+
var gradient = _ref.gradient,
|
|
1033
|
+
props = _objectWithoutProperties(_ref, _excluded$4J);
|
|
1034
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1035
|
+
width: 18,
|
|
1036
|
+
height: 18,
|
|
1037
|
+
viewBox: "0 0 18 18",
|
|
1038
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1039
|
+
"data-testid": "RecurringIcon",
|
|
1040
|
+
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
1041
|
+
focusable: false,
|
|
1042
|
+
ref: svgRef
|
|
1043
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
1044
|
+
gradient: gradient
|
|
1045
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
1046
|
+
fillRule: "evenodd",
|
|
1047
|
+
clipRule: "evenodd",
|
|
1048
|
+
d: "M15.364 2.636l.225.233.214.238a8.862 8.862 0 012.04 4.216l.043.25c.071.44.109.886.114 1.332h-.007l.001.095h-2.008a6.95 6.95 0 00-1.43-4.26l-.095-.12a7 7 0 00-10.238-.738l-.173.168 1.414 1.414-4.872.63.63-4.872 1.414 1.414A8.976 8.976 0 019.361.007c2.1.084 4.175.898 5.813 2.444l.19.185zM2.636 15.364a8.892 8.892 0 01-2.498-4.789A9.016 9.016 0 010 9.01h.006V9h2.008a6.944 6.944 0 001.826 4.73l.21.22a7 7 0 009.727.167l.173-.167-1.414-1.414 4.871-.63-.629 4.872-1.414-1.414a9 9 0 01-12.728 0z"
|
|
1049
|
+
}));
|
|
1050
|
+
});
|
|
1051
|
+
RecurringIcon.displayName = "RecurringIcon";
|
|
1052
|
+
var RecurringIcon$1 = RecurringIcon;
|
|
1053
|
+
|
|
1003
1054
|
var _excluded$4I = ["gradient"];
|
|
1004
1055
|
|
|
1005
1056
|
/**
|
|
@@ -6964,6 +7015,63 @@
|
|
|
6964
7015
|
|
|
6965
7016
|
var _excluded$2S = ["gradient"];
|
|
6966
7017
|
|
|
7018
|
+
/**
|
|
7019
|
+
* @component MoneyStackIcon
|
|
7020
|
+
* @description
|
|
7021
|
+
*
|
|
7022
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
7023
|
+
* The Icon component is
|
|
7024
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
7025
|
+
*
|
|
7026
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
7027
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
7028
|
+
*
|
|
7029
|
+
* @example
|
|
7030
|
+
* return (
|
|
7031
|
+
* <MoneyStackIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
7032
|
+
* )
|
|
7033
|
+
*
|
|
7034
|
+
* @example
|
|
7035
|
+
* return (
|
|
7036
|
+
* <MoneyStackIcon className="mr-2" />
|
|
7037
|
+
* )
|
|
7038
|
+
*
|
|
7039
|
+
* @see
|
|
7040
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
7041
|
+
* @see
|
|
7042
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
7043
|
+
*/
|
|
7044
|
+
var MoneyStackIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7045
|
+
var gradient = _ref.gradient,
|
|
7046
|
+
props = _objectWithoutProperties(_ref, _excluded$2S);
|
|
7047
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7048
|
+
width: 24,
|
|
7049
|
+
height: 24,
|
|
7050
|
+
viewBox: "0 0 24 24",
|
|
7051
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7052
|
+
"data-testid": "MoneyStackIcon",
|
|
7053
|
+
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
7054
|
+
focusable: false,
|
|
7055
|
+
ref: svgRef
|
|
7056
|
+
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
7057
|
+
gradient: gradient
|
|
7058
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7059
|
+
d: "M15 12h1v1h-2v.5h1.5a.5.5 0 01.497.442L16 14v1.5a.5.5 0 01-.442.496L15.5 16H15v.5h-1V16h-1v-1h2v-.5h-1.5a.5.5 0 01-.497-.442L13 14v-1.5a.5.5 0 01.442-.496L13.5 12h.5v-.5h1v.5z"
|
|
7060
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7061
|
+
fillRule: "evenodd",
|
|
7062
|
+
clipRule: "evenodd",
|
|
7063
|
+
d: "M20.5 9c.828 0 1.5.56 1.5 1.25v7.5c0 .69-.672 1.25-1.5 1.25h-12c-.828 0-1.5-.56-1.5-1.25v-7.5C7 9.56 7.672 9 8.5 9h12zm-12 8.75h12v-7.5h-12v7.5z"
|
|
7064
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7065
|
+
d: "M18 6.5c.828 0 1.5.56 1.5 1.25H6v8.75l-.154-.007C5.09 16.43 4.5 15.897 4.5 15.25v-7.5c0-.69.672-1.25 1.5-1.25h12z"
|
|
7066
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7067
|
+
d: "M15.5 4c.828 0 1.5.56 1.5 1.25H3.5V14l-.154-.007C2.59 13.93 2 13.397 2 12.75v-7.5C2 4.56 2.672 4 3.5 4h12z"
|
|
7068
|
+
}));
|
|
7069
|
+
});
|
|
7070
|
+
MoneyStackIcon.displayName = "MoneyStackIcon";
|
|
7071
|
+
var MoneyStackIcon$1 = MoneyStackIcon;
|
|
7072
|
+
|
|
7073
|
+
var _excluded$2R = ["gradient"];
|
|
7074
|
+
|
|
6967
7075
|
/**
|
|
6968
7076
|
* @component MoonIcon
|
|
6969
7077
|
* @description
|
|
@@ -6992,7 +7100,7 @@
|
|
|
6992
7100
|
*/
|
|
6993
7101
|
var MoonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
6994
7102
|
var gradient = _ref.gradient,
|
|
6995
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7103
|
+
props = _objectWithoutProperties(_ref, _excluded$2R);
|
|
6996
7104
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6997
7105
|
width: 20,
|
|
6998
7106
|
height: 20,
|
|
@@ -7013,7 +7121,7 @@
|
|
|
7013
7121
|
MoonIcon.displayName = "MoonIcon";
|
|
7014
7122
|
var MoonIcon$1 = MoonIcon;
|
|
7015
7123
|
|
|
7016
|
-
var _excluded$
|
|
7124
|
+
var _excluded$2Q = ["gradient"];
|
|
7017
7125
|
|
|
7018
7126
|
/**
|
|
7019
7127
|
* @component MoveTriggerIcon
|
|
@@ -7043,7 +7151,7 @@
|
|
|
7043
7151
|
*/
|
|
7044
7152
|
var MoveTriggerIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7045
7153
|
var gradient = _ref.gradient,
|
|
7046
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7154
|
+
props = _objectWithoutProperties(_ref, _excluded$2Q);
|
|
7047
7155
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7048
7156
|
width: 10,
|
|
7049
7157
|
height: 10,
|
|
@@ -7063,7 +7171,7 @@
|
|
|
7063
7171
|
MoveTriggerIcon.displayName = "MoveTriggerIcon";
|
|
7064
7172
|
var MoveTriggerIcon$1 = MoveTriggerIcon;
|
|
7065
7173
|
|
|
7066
|
-
var _excluded$
|
|
7174
|
+
var _excluded$2P = ["gradient"];
|
|
7067
7175
|
|
|
7068
7176
|
/**
|
|
7069
7177
|
* @component MoveIcon
|
|
@@ -7093,7 +7201,7 @@
|
|
|
7093
7201
|
*/
|
|
7094
7202
|
var MoveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7095
7203
|
var gradient = _ref.gradient,
|
|
7096
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7204
|
+
props = _objectWithoutProperties(_ref, _excluded$2P);
|
|
7097
7205
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7098
7206
|
width: 24,
|
|
7099
7207
|
height: 24,
|
|
@@ -7114,7 +7222,7 @@
|
|
|
7114
7222
|
MoveIcon.displayName = "MoveIcon";
|
|
7115
7223
|
var MoveIcon$1 = MoveIcon;
|
|
7116
7224
|
|
|
7117
|
-
var _excluded$
|
|
7225
|
+
var _excluded$2O = ["gradient"];
|
|
7118
7226
|
|
|
7119
7227
|
/**
|
|
7120
7228
|
* @component MyWorkIcon
|
|
@@ -7144,7 +7252,7 @@
|
|
|
7144
7252
|
*/
|
|
7145
7253
|
var MyWorkIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7146
7254
|
var gradient = _ref.gradient,
|
|
7147
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7255
|
+
props = _objectWithoutProperties(_ref, _excluded$2O);
|
|
7148
7256
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7149
7257
|
width: 24,
|
|
7150
7258
|
height: 24,
|
|
@@ -7168,7 +7276,7 @@
|
|
|
7168
7276
|
MyWorkIcon.displayName = "MyWorkIcon";
|
|
7169
7277
|
var MyWorkIcon$1 = MyWorkIcon;
|
|
7170
7278
|
|
|
7171
|
-
var _excluded$
|
|
7279
|
+
var _excluded$2N = ["gradient"];
|
|
7172
7280
|
|
|
7173
7281
|
/**
|
|
7174
7282
|
* @component NoteAddIcon
|
|
@@ -7198,7 +7306,7 @@
|
|
|
7198
7306
|
*/
|
|
7199
7307
|
var NoteAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7200
7308
|
var gradient = _ref.gradient,
|
|
7201
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7309
|
+
props = _objectWithoutProperties(_ref, _excluded$2N);
|
|
7202
7310
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7203
7311
|
width: 24,
|
|
7204
7312
|
height: 24,
|
|
@@ -7218,7 +7326,7 @@
|
|
|
7218
7326
|
NoteAddIcon.displayName = "NoteAddIcon";
|
|
7219
7327
|
var NoteAddIcon$1 = NoteAddIcon;
|
|
7220
7328
|
|
|
7221
|
-
var _excluded$
|
|
7329
|
+
var _excluded$2M = ["gradient"];
|
|
7222
7330
|
|
|
7223
7331
|
/**
|
|
7224
7332
|
* @component NoteIcon
|
|
@@ -7248,7 +7356,7 @@
|
|
|
7248
7356
|
*/
|
|
7249
7357
|
var NoteIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7250
7358
|
var gradient = _ref.gradient,
|
|
7251
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7359
|
+
props = _objectWithoutProperties(_ref, _excluded$2M);
|
|
7252
7360
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7253
7361
|
width: 24,
|
|
7254
7362
|
height: 24,
|
|
@@ -7268,7 +7376,7 @@
|
|
|
7268
7376
|
NoteIcon.displayName = "NoteIcon";
|
|
7269
7377
|
var NoteIcon$1 = NoteIcon;
|
|
7270
7378
|
|
|
7271
|
-
var _excluded$
|
|
7379
|
+
var _excluded$2L = ["gradient"];
|
|
7272
7380
|
|
|
7273
7381
|
/**
|
|
7274
7382
|
* @component NotebookIcon
|
|
@@ -7298,7 +7406,7 @@
|
|
|
7298
7406
|
*/
|
|
7299
7407
|
var NotebookIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7300
7408
|
var gradient = _ref.gradient,
|
|
7301
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7409
|
+
props = _objectWithoutProperties(_ref, _excluded$2L);
|
|
7302
7410
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7303
7411
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7304
7412
|
width: 24,
|
|
@@ -7318,7 +7426,7 @@
|
|
|
7318
7426
|
NotebookIcon.displayName = "NotebookIcon";
|
|
7319
7427
|
var NotebookIcon$1 = NotebookIcon;
|
|
7320
7428
|
|
|
7321
|
-
var _excluded$
|
|
7429
|
+
var _excluded$2K = ["gradient"];
|
|
7322
7430
|
|
|
7323
7431
|
/**
|
|
7324
7432
|
* @component NotificationBellIcon
|
|
@@ -7348,7 +7456,7 @@
|
|
|
7348
7456
|
*/
|
|
7349
7457
|
var NotificationBellIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7350
7458
|
var gradient = _ref.gradient,
|
|
7351
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7459
|
+
props = _objectWithoutProperties(_ref, _excluded$2K);
|
|
7352
7460
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7353
7461
|
width: 24,
|
|
7354
7462
|
height: 24,
|
|
@@ -7367,7 +7475,7 @@
|
|
|
7367
7475
|
NotificationBellIcon.displayName = "NotificationBellIcon";
|
|
7368
7476
|
var NotificationBellIcon$1 = NotificationBellIcon;
|
|
7369
7477
|
|
|
7370
|
-
var _excluded$
|
|
7478
|
+
var _excluded$2J = ["gradient"];
|
|
7371
7479
|
|
|
7372
7480
|
/**
|
|
7373
7481
|
* @component OpenExpandedIcon
|
|
@@ -7397,7 +7505,7 @@
|
|
|
7397
7505
|
*/
|
|
7398
7506
|
var OpenExpandedIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7399
7507
|
var gradient = _ref.gradient,
|
|
7400
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7508
|
+
props = _objectWithoutProperties(_ref, _excluded$2J);
|
|
7401
7509
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7402
7510
|
width: 24,
|
|
7403
7511
|
height: 24,
|
|
@@ -7417,7 +7525,7 @@
|
|
|
7417
7525
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
7418
7526
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
7419
7527
|
|
|
7420
|
-
var _excluded$
|
|
7528
|
+
var _excluded$2I = ["gradient"];
|
|
7421
7529
|
|
|
7422
7530
|
/**
|
|
7423
7531
|
* @component OpenSheetIcon
|
|
@@ -7447,7 +7555,7 @@
|
|
|
7447
7555
|
*/
|
|
7448
7556
|
var OpenSheetIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7449
7557
|
var gradient = _ref.gradient,
|
|
7450
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7558
|
+
props = _objectWithoutProperties(_ref, _excluded$2I);
|
|
7451
7559
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7452
7560
|
width: 24,
|
|
7453
7561
|
height: 24,
|
|
@@ -7472,7 +7580,7 @@
|
|
|
7472
7580
|
OpenSheetIcon.displayName = "OpenSheetIcon";
|
|
7473
7581
|
var OpenSheetIcon$1 = OpenSheetIcon;
|
|
7474
7582
|
|
|
7475
|
-
var _excluded$
|
|
7583
|
+
var _excluded$2H = ["gradient"];
|
|
7476
7584
|
|
|
7477
7585
|
/**
|
|
7478
7586
|
* @component OrderFirstIcon
|
|
@@ -7502,7 +7610,7 @@
|
|
|
7502
7610
|
*/
|
|
7503
7611
|
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7504
7612
|
var gradient = _ref.gradient,
|
|
7505
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7613
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
7506
7614
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7507
7615
|
width: 24,
|
|
7508
7616
|
height: 24,
|
|
@@ -7522,7 +7630,7 @@
|
|
|
7522
7630
|
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
7523
7631
|
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
7524
7632
|
|
|
7525
|
-
var _excluded$
|
|
7633
|
+
var _excluded$2G = ["gradient"];
|
|
7526
7634
|
|
|
7527
7635
|
/**
|
|
7528
7636
|
* @component PaidSmallIcon
|
|
@@ -7552,7 +7660,7 @@
|
|
|
7552
7660
|
*/
|
|
7553
7661
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7554
7662
|
var gradient = _ref.gradient,
|
|
7555
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7663
|
+
props = _objectWithoutProperties(_ref, _excluded$2G);
|
|
7556
7664
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7557
7665
|
width: 12,
|
|
7558
7666
|
height: 12,
|
|
@@ -7572,7 +7680,7 @@
|
|
|
7572
7680
|
PaidSmallIcon.displayName = "PaidSmallIcon";
|
|
7573
7681
|
var PaidSmallIcon$1 = PaidSmallIcon;
|
|
7574
7682
|
|
|
7575
|
-
var _excluded$
|
|
7683
|
+
var _excluded$2F = ["gradient"];
|
|
7576
7684
|
|
|
7577
7685
|
/**
|
|
7578
7686
|
* @component PauseCircleOutlineIcon
|
|
@@ -7602,7 +7710,7 @@
|
|
|
7602
7710
|
*/
|
|
7603
7711
|
var PauseCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7604
7712
|
var gradient = _ref.gradient,
|
|
7605
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7713
|
+
props = _objectWithoutProperties(_ref, _excluded$2F);
|
|
7606
7714
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7607
7715
|
width: 24,
|
|
7608
7716
|
height: 24,
|
|
@@ -7622,7 +7730,7 @@
|
|
|
7622
7730
|
PauseCircleOutlineIcon.displayName = "PauseCircleOutlineIcon";
|
|
7623
7731
|
var PauseCircleOutlineIcon$1 = PauseCircleOutlineIcon;
|
|
7624
7732
|
|
|
7625
|
-
var _excluded$
|
|
7733
|
+
var _excluded$2E = ["gradient"];
|
|
7626
7734
|
|
|
7627
7735
|
/**
|
|
7628
7736
|
* @component PauseIcon
|
|
@@ -7652,7 +7760,7 @@
|
|
|
7652
7760
|
*/
|
|
7653
7761
|
var PauseIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7654
7762
|
var gradient = _ref.gradient,
|
|
7655
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7763
|
+
props = _objectWithoutProperties(_ref, _excluded$2E);
|
|
7656
7764
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7657
7765
|
width: 24,
|
|
7658
7766
|
height: 24,
|
|
@@ -7672,7 +7780,7 @@
|
|
|
7672
7780
|
PauseIcon.displayName = "PauseIcon";
|
|
7673
7781
|
var PauseIcon$1 = PauseIcon;
|
|
7674
7782
|
|
|
7675
|
-
var _excluded$
|
|
7783
|
+
var _excluded$2D = ["gradient"];
|
|
7676
7784
|
|
|
7677
7785
|
/**
|
|
7678
7786
|
* @component PauseSmallIcon
|
|
@@ -7702,7 +7810,7 @@
|
|
|
7702
7810
|
*/
|
|
7703
7811
|
var PauseSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7704
7812
|
var gradient = _ref.gradient,
|
|
7705
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7813
|
+
props = _objectWithoutProperties(_ref, _excluded$2D);
|
|
7706
7814
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7707
7815
|
width: 24,
|
|
7708
7816
|
height: 24,
|
|
@@ -7722,7 +7830,7 @@
|
|
|
7722
7830
|
PauseSmallIcon.displayName = "PauseSmallIcon";
|
|
7723
7831
|
var PauseSmallIcon$1 = PauseSmallIcon;
|
|
7724
7832
|
|
|
7725
|
-
var _excluded$
|
|
7833
|
+
var _excluded$2C = ["gradient"];
|
|
7726
7834
|
|
|
7727
7835
|
/**
|
|
7728
7836
|
* @component PencilSmallIcon
|
|
@@ -7752,7 +7860,7 @@
|
|
|
7752
7860
|
*/
|
|
7753
7861
|
var PencilSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7754
7862
|
var gradient = _ref.gradient,
|
|
7755
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7863
|
+
props = _objectWithoutProperties(_ref, _excluded$2C);
|
|
7756
7864
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7757
7865
|
width: 12,
|
|
7758
7866
|
height: 12,
|
|
@@ -7771,7 +7879,7 @@
|
|
|
7771
7879
|
PencilSmallIcon.displayName = "PencilSmallIcon";
|
|
7772
7880
|
var PencilSmallIcon$1 = PencilSmallIcon;
|
|
7773
7881
|
|
|
7774
|
-
var _excluded$
|
|
7882
|
+
var _excluded$2B = ["gradient"];
|
|
7775
7883
|
|
|
7776
7884
|
/**
|
|
7777
7885
|
* @component PencilIcon
|
|
@@ -7801,7 +7909,7 @@
|
|
|
7801
7909
|
*/
|
|
7802
7910
|
var PencilIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7803
7911
|
var gradient = _ref.gradient,
|
|
7804
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7912
|
+
props = _objectWithoutProperties(_ref, _excluded$2B);
|
|
7805
7913
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7806
7914
|
width: 24,
|
|
7807
7915
|
height: 24,
|
|
@@ -7820,7 +7928,7 @@
|
|
|
7820
7928
|
PencilIcon.displayName = "PencilIcon";
|
|
7821
7929
|
var PencilIcon$1 = PencilIcon;
|
|
7822
7930
|
|
|
7823
|
-
var _excluded$
|
|
7931
|
+
var _excluded$2A = ["gradient"];
|
|
7824
7932
|
|
|
7825
7933
|
/**
|
|
7826
7934
|
* @component PendingPaymentSmallIcon
|
|
@@ -7850,7 +7958,7 @@
|
|
|
7850
7958
|
*/
|
|
7851
7959
|
var PendingPaymentSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7852
7960
|
var gradient = _ref.gradient,
|
|
7853
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7961
|
+
props = _objectWithoutProperties(_ref, _excluded$2A);
|
|
7854
7962
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7855
7963
|
width: 12,
|
|
7856
7964
|
height: 12,
|
|
@@ -7870,7 +7978,7 @@
|
|
|
7870
7978
|
PendingPaymentSmallIcon.displayName = "PendingPaymentSmallIcon";
|
|
7871
7979
|
var PendingPaymentSmallIcon$1 = PendingPaymentSmallIcon;
|
|
7872
7980
|
|
|
7873
|
-
var _excluded$
|
|
7981
|
+
var _excluded$2z = ["gradient"];
|
|
7874
7982
|
|
|
7875
7983
|
/**
|
|
7876
7984
|
* @component PeopleIcon
|
|
@@ -7900,7 +8008,7 @@
|
|
|
7900
8008
|
*/
|
|
7901
8009
|
var PeopleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7902
8010
|
var gradient = _ref.gradient,
|
|
7903
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8011
|
+
props = _objectWithoutProperties(_ref, _excluded$2z);
|
|
7904
8012
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7905
8013
|
width: 24,
|
|
7906
8014
|
height: 24,
|
|
@@ -7924,7 +8032,7 @@
|
|
|
7924
8032
|
PeopleIcon.displayName = "PeopleIcon";
|
|
7925
8033
|
var PeopleIcon$1 = PeopleIcon;
|
|
7926
8034
|
|
|
7927
|
-
var _excluded$
|
|
8035
|
+
var _excluded$2y = ["gradient"];
|
|
7928
8036
|
|
|
7929
8037
|
/**
|
|
7930
8038
|
* @component PersonArrowOutCircleIcon
|
|
@@ -7954,7 +8062,7 @@
|
|
|
7954
8062
|
*/
|
|
7955
8063
|
var PersonArrowOutCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
7956
8064
|
var gradient = _ref.gradient,
|
|
7957
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8065
|
+
props = _objectWithoutProperties(_ref, _excluded$2y);
|
|
7958
8066
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7959
8067
|
width: 24,
|
|
7960
8068
|
height: 24,
|
|
@@ -7975,7 +8083,7 @@
|
|
|
7975
8083
|
PersonArrowOutCircleIcon.displayName = "PersonArrowOutCircleIcon";
|
|
7976
8084
|
var PersonArrowOutCircleIcon$1 = PersonArrowOutCircleIcon;
|
|
7977
8085
|
|
|
7978
|
-
var _excluded$
|
|
8086
|
+
var _excluded$2x = ["gradient"];
|
|
7979
8087
|
|
|
7980
8088
|
/**
|
|
7981
8089
|
* @component PersonCircleOffIcon
|
|
@@ -8005,7 +8113,7 @@
|
|
|
8005
8113
|
*/
|
|
8006
8114
|
var PersonCircleOffIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8007
8115
|
var gradient = _ref.gradient,
|
|
8008
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8116
|
+
props = _objectWithoutProperties(_ref, _excluded$2x);
|
|
8009
8117
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8010
8118
|
width: 24,
|
|
8011
8119
|
height: 24,
|
|
@@ -8025,7 +8133,7 @@
|
|
|
8025
8133
|
PersonCircleOffIcon.displayName = "PersonCircleOffIcon";
|
|
8026
8134
|
var PersonCircleOffIcon$1 = PersonCircleOffIcon;
|
|
8027
8135
|
|
|
8028
|
-
var _excluded$
|
|
8136
|
+
var _excluded$2w = ["gradient"];
|
|
8029
8137
|
|
|
8030
8138
|
/**
|
|
8031
8139
|
* @component PersonCircleIcon
|
|
@@ -8055,7 +8163,7 @@
|
|
|
8055
8163
|
*/
|
|
8056
8164
|
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8057
8165
|
var gradient = _ref.gradient,
|
|
8058
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8166
|
+
props = _objectWithoutProperties(_ref, _excluded$2w);
|
|
8059
8167
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8060
8168
|
width: 24,
|
|
8061
8169
|
height: 24,
|
|
@@ -8075,7 +8183,7 @@
|
|
|
8075
8183
|
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
8076
8184
|
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
8077
8185
|
|
|
8078
|
-
var _excluded$
|
|
8186
|
+
var _excluded$2v = ["gradient"];
|
|
8079
8187
|
|
|
8080
8188
|
/**
|
|
8081
8189
|
* @component PersonListIcon
|
|
@@ -8105,7 +8213,7 @@
|
|
|
8105
8213
|
*/
|
|
8106
8214
|
var PersonListIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8107
8215
|
var gradient = _ref.gradient,
|
|
8108
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8216
|
+
props = _objectWithoutProperties(_ref, _excluded$2v);
|
|
8109
8217
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8110
8218
|
width: 24,
|
|
8111
8219
|
height: 24,
|
|
@@ -8126,7 +8234,7 @@
|
|
|
8126
8234
|
PersonListIcon.displayName = "PersonListIcon";
|
|
8127
8235
|
var PersonListIcon$1 = PersonListIcon;
|
|
8128
8236
|
|
|
8129
|
-
var _excluded$
|
|
8237
|
+
var _excluded$2u = ["gradient"];
|
|
8130
8238
|
|
|
8131
8239
|
/**
|
|
8132
8240
|
* @component PersonPlusIcon
|
|
@@ -8156,7 +8264,7 @@
|
|
|
8156
8264
|
*/
|
|
8157
8265
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8158
8266
|
var gradient = _ref.gradient,
|
|
8159
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8267
|
+
props = _objectWithoutProperties(_ref, _excluded$2u);
|
|
8160
8268
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8161
8269
|
width: 24,
|
|
8162
8270
|
height: 24,
|
|
@@ -8176,7 +8284,7 @@
|
|
|
8176
8284
|
PersonPlusIcon.displayName = "PersonPlusIcon";
|
|
8177
8285
|
var PersonPlusIcon$1 = PersonPlusIcon;
|
|
8178
8286
|
|
|
8179
|
-
var _excluded$
|
|
8287
|
+
var _excluded$2t = ["gradient"];
|
|
8180
8288
|
|
|
8181
8289
|
/**
|
|
8182
8290
|
* @component PersonIcon
|
|
@@ -8206,7 +8314,7 @@
|
|
|
8206
8314
|
*/
|
|
8207
8315
|
var PersonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8208
8316
|
var gradient = _ref.gradient,
|
|
8209
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8317
|
+
props = _objectWithoutProperties(_ref, _excluded$2t);
|
|
8210
8318
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8211
8319
|
width: 24,
|
|
8212
8320
|
height: 24,
|
|
@@ -8226,7 +8334,7 @@
|
|
|
8226
8334
|
PersonIcon.displayName = "PersonIcon";
|
|
8227
8335
|
var PersonIcon$1 = PersonIcon;
|
|
8228
8336
|
|
|
8229
|
-
var _excluded$
|
|
8337
|
+
var _excluded$2s = ["gradient"];
|
|
8230
8338
|
|
|
8231
8339
|
/**
|
|
8232
8340
|
* @component PinIcon
|
|
@@ -8256,7 +8364,7 @@
|
|
|
8256
8364
|
*/
|
|
8257
8365
|
var PinIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8258
8366
|
var gradient = _ref.gradient,
|
|
8259
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8367
|
+
props = _objectWithoutProperties(_ref, _excluded$2s);
|
|
8260
8368
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8261
8369
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8262
8370
|
width: 24,
|
|
@@ -8276,7 +8384,7 @@
|
|
|
8276
8384
|
PinIcon.displayName = "PinIcon";
|
|
8277
8385
|
var PinIcon$1 = PinIcon;
|
|
8278
8386
|
|
|
8279
|
-
var _excluded$
|
|
8387
|
+
var _excluded$2r = ["gradient"];
|
|
8280
8388
|
|
|
8281
8389
|
/**
|
|
8282
8390
|
* @component PlayCircleOutlineIcon
|
|
@@ -8306,7 +8414,7 @@
|
|
|
8306
8414
|
*/
|
|
8307
8415
|
var PlayCircleOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8308
8416
|
var gradient = _ref.gradient,
|
|
8309
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8417
|
+
props = _objectWithoutProperties(_ref, _excluded$2r);
|
|
8310
8418
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8311
8419
|
width: 24,
|
|
8312
8420
|
height: 24,
|
|
@@ -8326,7 +8434,7 @@
|
|
|
8326
8434
|
PlayCircleOutlineIcon.displayName = "PlayCircleOutlineIcon";
|
|
8327
8435
|
var PlayCircleOutlineIcon$1 = PlayCircleOutlineIcon;
|
|
8328
8436
|
|
|
8329
|
-
var _excluded$
|
|
8437
|
+
var _excluded$2q = ["gradient"];
|
|
8330
8438
|
|
|
8331
8439
|
/**
|
|
8332
8440
|
* @component PlayIcon
|
|
@@ -8356,7 +8464,7 @@
|
|
|
8356
8464
|
*/
|
|
8357
8465
|
var PlayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8358
8466
|
var gradient = _ref.gradient,
|
|
8359
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8467
|
+
props = _objectWithoutProperties(_ref, _excluded$2q);
|
|
8360
8468
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8361
8469
|
width: 24,
|
|
8362
8470
|
height: 24,
|
|
@@ -8376,7 +8484,7 @@
|
|
|
8376
8484
|
PlayIcon.displayName = "PlayIcon";
|
|
8377
8485
|
var PlayIcon$1 = PlayIcon;
|
|
8378
8486
|
|
|
8379
|
-
var _excluded$
|
|
8487
|
+
var _excluded$2p = ["gradient"];
|
|
8380
8488
|
|
|
8381
8489
|
/**
|
|
8382
8490
|
* @component PlaySmallIcon
|
|
@@ -8406,7 +8514,7 @@
|
|
|
8406
8514
|
*/
|
|
8407
8515
|
var PlaySmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8408
8516
|
var gradient = _ref.gradient,
|
|
8409
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8517
|
+
props = _objectWithoutProperties(_ref, _excluded$2p);
|
|
8410
8518
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8411
8519
|
width: 24,
|
|
8412
8520
|
height: 24,
|
|
@@ -8426,7 +8534,7 @@
|
|
|
8426
8534
|
PlaySmallIcon.displayName = "PlaySmallIcon";
|
|
8427
8535
|
var PlaySmallIcon$1 = PlaySmallIcon;
|
|
8428
8536
|
|
|
8429
|
-
var _excluded$
|
|
8537
|
+
var _excluded$2o = ["gradient"];
|
|
8430
8538
|
|
|
8431
8539
|
/**
|
|
8432
8540
|
* @component PriorityLowIcon
|
|
@@ -8456,7 +8564,7 @@
|
|
|
8456
8564
|
*/
|
|
8457
8565
|
var PriorityLowIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8458
8566
|
var gradient = _ref.gradient,
|
|
8459
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8567
|
+
props = _objectWithoutProperties(_ref, _excluded$2o);
|
|
8460
8568
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8461
8569
|
width: 24,
|
|
8462
8570
|
height: 24,
|
|
@@ -8477,7 +8585,7 @@
|
|
|
8477
8585
|
PriorityLowIcon.displayName = "PriorityLowIcon";
|
|
8478
8586
|
var PriorityLowIcon$1 = PriorityLowIcon;
|
|
8479
8587
|
|
|
8480
|
-
var _excluded$
|
|
8588
|
+
var _excluded$2n = ["gradient"];
|
|
8481
8589
|
|
|
8482
8590
|
/**
|
|
8483
8591
|
* @component ProjectAddIcon
|
|
@@ -8507,7 +8615,7 @@
|
|
|
8507
8615
|
*/
|
|
8508
8616
|
var ProjectAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8509
8617
|
var gradient = _ref.gradient,
|
|
8510
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8618
|
+
props = _objectWithoutProperties(_ref, _excluded$2n);
|
|
8511
8619
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8512
8620
|
width: 24,
|
|
8513
8621
|
height: 24,
|
|
@@ -8527,7 +8635,7 @@
|
|
|
8527
8635
|
ProjectAddIcon.displayName = "ProjectAddIcon";
|
|
8528
8636
|
var ProjectAddIcon$1 = ProjectAddIcon;
|
|
8529
8637
|
|
|
8530
|
-
var _excluded$
|
|
8638
|
+
var _excluded$2m = ["gradient"];
|
|
8531
8639
|
|
|
8532
8640
|
/**
|
|
8533
8641
|
* @component ProjectSearchIcon
|
|
@@ -8557,7 +8665,7 @@
|
|
|
8557
8665
|
*/
|
|
8558
8666
|
var ProjectSearchIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8559
8667
|
var gradient = _ref.gradient,
|
|
8560
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8668
|
+
props = _objectWithoutProperties(_ref, _excluded$2m);
|
|
8561
8669
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8562
8670
|
width: 24,
|
|
8563
8671
|
height: 24,
|
|
@@ -8578,7 +8686,7 @@
|
|
|
8578
8686
|
ProjectSearchIcon.displayName = "ProjectSearchIcon";
|
|
8579
8687
|
var ProjectSearchIcon$1 = ProjectSearchIcon;
|
|
8580
8688
|
|
|
8581
|
-
var _excluded$
|
|
8689
|
+
var _excluded$2l = ["gradient"];
|
|
8582
8690
|
|
|
8583
8691
|
/**
|
|
8584
8692
|
* @component ProjectStarIcon
|
|
@@ -8608,7 +8716,7 @@
|
|
|
8608
8716
|
*/
|
|
8609
8717
|
var ProjectStarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8610
8718
|
var gradient = _ref.gradient,
|
|
8611
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8719
|
+
props = _objectWithoutProperties(_ref, _excluded$2l);
|
|
8612
8720
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8613
8721
|
width: 24,
|
|
8614
8722
|
height: 24,
|
|
@@ -8631,7 +8739,7 @@
|
|
|
8631
8739
|
ProjectStarIcon.displayName = "ProjectStarIcon";
|
|
8632
8740
|
var ProjectStarIcon$1 = ProjectStarIcon;
|
|
8633
8741
|
|
|
8634
|
-
var _excluded$
|
|
8742
|
+
var _excluded$2k = ["gradient"];
|
|
8635
8743
|
|
|
8636
8744
|
/**
|
|
8637
8745
|
* @component ProjectTemplateAddIcon
|
|
@@ -8661,7 +8769,7 @@
|
|
|
8661
8769
|
*/
|
|
8662
8770
|
var ProjectTemplateAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8663
8771
|
var gradient = _ref.gradient,
|
|
8664
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8772
|
+
props = _objectWithoutProperties(_ref, _excluded$2k);
|
|
8665
8773
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8666
8774
|
width: 24,
|
|
8667
8775
|
height: 24,
|
|
@@ -8681,7 +8789,7 @@
|
|
|
8681
8789
|
ProjectTemplateAddIcon.displayName = "ProjectTemplateAddIcon";
|
|
8682
8790
|
var ProjectTemplateAddIcon$1 = ProjectTemplateAddIcon;
|
|
8683
8791
|
|
|
8684
|
-
var _excluded$
|
|
8792
|
+
var _excluded$2j = ["gradient"];
|
|
8685
8793
|
|
|
8686
8794
|
/**
|
|
8687
8795
|
* @component ProjectTemplateConvertIcon
|
|
@@ -8711,7 +8819,7 @@
|
|
|
8711
8819
|
*/
|
|
8712
8820
|
var ProjectTemplateConvertIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8713
8821
|
var gradient = _ref.gradient,
|
|
8714
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8822
|
+
props = _objectWithoutProperties(_ref, _excluded$2j);
|
|
8715
8823
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8716
8824
|
width: 24,
|
|
8717
8825
|
height: 24,
|
|
@@ -8731,7 +8839,7 @@
|
|
|
8731
8839
|
ProjectTemplateConvertIcon.displayName = "ProjectTemplateConvertIcon";
|
|
8732
8840
|
var ProjectTemplateConvertIcon$1 = ProjectTemplateConvertIcon;
|
|
8733
8841
|
|
|
8734
|
-
var _excluded$
|
|
8842
|
+
var _excluded$2i = ["gradient"];
|
|
8735
8843
|
|
|
8736
8844
|
/**
|
|
8737
8845
|
* @component ProjectTemplateIcon
|
|
@@ -8761,7 +8869,7 @@
|
|
|
8761
8869
|
*/
|
|
8762
8870
|
var ProjectTemplateIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8763
8871
|
var gradient = _ref.gradient,
|
|
8764
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8872
|
+
props = _objectWithoutProperties(_ref, _excluded$2i);
|
|
8765
8873
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8766
8874
|
width: 24,
|
|
8767
8875
|
height: 24,
|
|
@@ -8781,7 +8889,7 @@
|
|
|
8781
8889
|
ProjectTemplateIcon.displayName = "ProjectTemplateIcon";
|
|
8782
8890
|
var ProjectTemplateIcon$1 = ProjectTemplateIcon;
|
|
8783
8891
|
|
|
8784
|
-
var _excluded$
|
|
8892
|
+
var _excluded$2h = ["gradient"];
|
|
8785
8893
|
|
|
8786
8894
|
/**
|
|
8787
8895
|
* @component ProjectsIcon
|
|
@@ -8811,7 +8919,7 @@
|
|
|
8811
8919
|
*/
|
|
8812
8920
|
var ProjectsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8813
8921
|
var gradient = _ref.gradient,
|
|
8814
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8922
|
+
props = _objectWithoutProperties(_ref, _excluded$2h);
|
|
8815
8923
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8816
8924
|
width: 24,
|
|
8817
8925
|
height: 24,
|
|
@@ -8835,7 +8943,7 @@
|
|
|
8835
8943
|
ProjectsIcon.displayName = "ProjectsIcon";
|
|
8836
8944
|
var ProjectsIcon$1 = ProjectsIcon;
|
|
8837
8945
|
|
|
8838
|
-
var _excluded$
|
|
8946
|
+
var _excluded$2g = ["gradient"];
|
|
8839
8947
|
|
|
8840
8948
|
/**
|
|
8841
8949
|
* @component RadioBlankIcon
|
|
@@ -8865,7 +8973,7 @@
|
|
|
8865
8973
|
*/
|
|
8866
8974
|
var RadioBlankIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8867
8975
|
var gradient = _ref.gradient,
|
|
8868
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
8976
|
+
props = _objectWithoutProperties(_ref, _excluded$2g);
|
|
8869
8977
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8870
8978
|
width: 24,
|
|
8871
8979
|
height: 24,
|
|
@@ -8885,7 +8993,7 @@
|
|
|
8885
8993
|
RadioBlankIcon.displayName = "RadioBlankIcon";
|
|
8886
8994
|
var RadioBlankIcon$1 = RadioBlankIcon;
|
|
8887
8995
|
|
|
8888
|
-
var _excluded$
|
|
8996
|
+
var _excluded$2f = ["gradient"];
|
|
8889
8997
|
|
|
8890
8998
|
/**
|
|
8891
8999
|
* @component RadioButtonIcon
|
|
@@ -8915,7 +9023,7 @@
|
|
|
8915
9023
|
*/
|
|
8916
9024
|
var RadioButtonIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8917
9025
|
var gradient = _ref.gradient,
|
|
8918
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9026
|
+
props = _objectWithoutProperties(_ref, _excluded$2f);
|
|
8919
9027
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8920
9028
|
width: 16,
|
|
8921
9029
|
height: 16,
|
|
@@ -8943,7 +9051,7 @@
|
|
|
8943
9051
|
RadioButtonIcon.displayName = "RadioButtonIcon";
|
|
8944
9052
|
var RadioButtonIcon$1 = RadioButtonIcon;
|
|
8945
9053
|
|
|
8946
|
-
var _excluded$
|
|
9054
|
+
var _excluded$2e = ["gradient"];
|
|
8947
9055
|
|
|
8948
9056
|
/**
|
|
8949
9057
|
* @component RearangeIcon
|
|
@@ -8973,7 +9081,7 @@
|
|
|
8973
9081
|
*/
|
|
8974
9082
|
var RearangeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
8975
9083
|
var gradient = _ref.gradient,
|
|
8976
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9084
|
+
props = _objectWithoutProperties(_ref, _excluded$2e);
|
|
8977
9085
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8978
9086
|
width: 24,
|
|
8979
9087
|
height: 24,
|
|
@@ -8993,7 +9101,7 @@
|
|
|
8993
9101
|
RearangeIcon.displayName = "RearangeIcon";
|
|
8994
9102
|
var RearangeIcon$1 = RearangeIcon;
|
|
8995
9103
|
|
|
8996
|
-
var _excluded$
|
|
9104
|
+
var _excluded$2d = ["gradient"];
|
|
8997
9105
|
|
|
8998
9106
|
/**
|
|
8999
9107
|
* @component RearrangeSmallIcon
|
|
@@ -9023,7 +9131,7 @@
|
|
|
9023
9131
|
*/
|
|
9024
9132
|
var RearrangeSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9025
9133
|
var gradient = _ref.gradient,
|
|
9026
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9134
|
+
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
9027
9135
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9028
9136
|
width: 12,
|
|
9029
9137
|
height: 12,
|
|
@@ -9043,57 +9151,6 @@
|
|
|
9043
9151
|
RearrangeSmallIcon.displayName = "RearrangeSmallIcon";
|
|
9044
9152
|
var RearrangeSmallIcon$1 = RearrangeSmallIcon;
|
|
9045
9153
|
|
|
9046
|
-
var _excluded$2d = ["gradient"];
|
|
9047
|
-
|
|
9048
|
-
/**
|
|
9049
|
-
* @component RecurringIcon
|
|
9050
|
-
* @description
|
|
9051
|
-
*
|
|
9052
|
-
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
9053
|
-
* The Icon component is
|
|
9054
|
-
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
9055
|
-
*
|
|
9056
|
-
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
9057
|
-
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
9058
|
-
*
|
|
9059
|
-
* @example
|
|
9060
|
-
* return (
|
|
9061
|
-
* <RecurringIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
9062
|
-
* )
|
|
9063
|
-
*
|
|
9064
|
-
* @example
|
|
9065
|
-
* return (
|
|
9066
|
-
* <RecurringIcon className="mr-2" />
|
|
9067
|
-
* )
|
|
9068
|
-
*
|
|
9069
|
-
* @see
|
|
9070
|
-
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
9071
|
-
* @see
|
|
9072
|
-
* https://design.activecollab.com/docs/foundations/icons
|
|
9073
|
-
*/
|
|
9074
|
-
var RecurringIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
9075
|
-
var gradient = _ref.gradient,
|
|
9076
|
-
props = _objectWithoutProperties(_ref, _excluded$2d);
|
|
9077
|
-
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
9078
|
-
width: 18,
|
|
9079
|
-
height: 18,
|
|
9080
|
-
viewBox: "0 0 18 18",
|
|
9081
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
9082
|
-
"data-testid": "RecurringIcon",
|
|
9083
|
-
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
9084
|
-
focusable: false,
|
|
9085
|
-
ref: svgRef
|
|
9086
|
-
}, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
|
|
9087
|
-
gradient: gradient
|
|
9088
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
9089
|
-
fillRule: "evenodd",
|
|
9090
|
-
clipRule: "evenodd",
|
|
9091
|
-
d: "M15.364 2.636l.225.233.214.238a8.862 8.862 0 012.04 4.216l.043.25c.071.44.109.886.114 1.332h-.007l.001.095h-2.008a6.95 6.95 0 00-1.43-4.26l-.095-.12a7 7 0 00-10.238-.738l-.173.168 1.414 1.414-4.872.63.63-4.872 1.414 1.414A8.976 8.976 0 019.361.007c2.1.084 4.175.898 5.813 2.444l.19.185zM2.636 15.364a8.892 8.892 0 01-2.498-4.789A9.016 9.016 0 010 9.01h.006V9h2.008a6.944 6.944 0 001.826 4.73l.21.22a7 7 0 009.727.167l.173-.167-1.414-1.414 4.871-.63-.629 4.872-1.414-1.414a9 9 0 01-12.728 0z"
|
|
9092
|
-
}));
|
|
9093
|
-
});
|
|
9094
|
-
RecurringIcon.displayName = "RecurringIcon";
|
|
9095
|
-
var RecurringIcon$1 = RecurringIcon;
|
|
9096
|
-
|
|
9097
9154
|
var _excluded$2c = ["gradient"];
|
|
9098
9155
|
|
|
9099
9156
|
/**
|
|
@@ -17121,9 +17178,9 @@
|
|
|
17121
17178
|
var beforeHighlighted = text.substring(0, textComparator.indexOf(searchByComparator));
|
|
17122
17179
|
var highLighted = text.substring(textComparator.indexOf(searchByComparator), textComparator.indexOf(searchByComparator) + searchBy.length);
|
|
17123
17180
|
var afterHighlighted = text.substring(textComparator.indexOf(searchByComparator) + searchBy.length);
|
|
17124
|
-
return /*#__PURE__*/React__default["default"].createElement(React.Fragment, null, beforeHighlighted.replace(/ /g, "\u00a0"), /*#__PURE__*/React__default["default"].createElement(StyledHiglightedText, {
|
|
17181
|
+
return /*#__PURE__*/React__default["default"].createElement(React.Fragment, null, /*#__PURE__*/React__default["default"].createElement("span", null, beforeHighlighted.replace(/ /g, "\u00a0")), /*#__PURE__*/React__default["default"].createElement(StyledHiglightedText, {
|
|
17125
17182
|
className: "c-option--text__highlight"
|
|
17126
|
-
}, highLighted.replace(/ /g, "\u00a0")), afterHighlighted.replace(/ /g, "\u00a0"));
|
|
17183
|
+
}, highLighted.replace(/ /g, "\u00a0")), /*#__PURE__*/React__default["default"].createElement("span", null, afterHighlighted.replace(/ /g, "\u00a0")));
|
|
17127
17184
|
}
|
|
17128
17185
|
return text;
|
|
17129
17186
|
};
|
|
@@ -24883,6 +24940,7 @@
|
|
|
24883
24940
|
exports.MinusIcon = MinusIcon$1;
|
|
24884
24941
|
exports.MobileMenuIcon = MobileMenuIcon$1;
|
|
24885
24942
|
exports.Modal = Modal;
|
|
24943
|
+
exports.MoneyStackIcon = MoneyStackIcon$1;
|
|
24886
24944
|
exports.MoonIcon = MoonIcon$1;
|
|
24887
24945
|
exports.MoveIcon = MoveIcon$1;
|
|
24888
24946
|
exports.MoveTriggerIcon = MoveTriggerIcon$1;
|