@epilot360/icons 1.17.1 → 1.17.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/icons.config.yaml +9 -1
  2. package/index.js +304 -12
  3. package/index.js.map +1 -1
  4. package/package.json +1 -1
  5. package/react/EpilotIcon.d.ts +5 -1
  6. package/react/EpilotIcon.js +225 -4
  7. package/react/EpilotIcon.js.map +1 -1
  8. package/react/LinkOff/index.d.ts +4 -0
  9. package/react/LinkOff/index.js +209 -0
  10. package/react/LinkOff/index.js.map +1 -0
  11. package/react/Send/index.d.ts +4 -0
  12. package/react/Send/index.js +209 -0
  13. package/react/Send/index.js.map +1 -0
  14. package/react/index.d.ts +2 -0
  15. package/react/index.js +234 -7
  16. package/react/index.js.map +1 -1
  17. package/svg/Add/index.js.map +1 -1
  18. package/svg/AddCircle/index.js.map +1 -1
  19. package/svg/AddLink/index.js.map +1 -1
  20. package/svg/Calendar/index.js.map +1 -1
  21. package/svg/CalendarToday/index.js.map +1 -1
  22. package/svg/Check/index.js.map +1 -1
  23. package/svg/CheckCircle/index.js.map +1 -1
  24. package/svg/ChevronLeft/index.js.map +1 -1
  25. package/svg/ChevronRight/index.js.map +1 -1
  26. package/svg/Close/index.js.map +1 -1
  27. package/svg/ContentCopy/index.js.map +1 -1
  28. package/svg/DataObject/index.js.map +1 -1
  29. package/svg/Delete/index.js.map +1 -1
  30. package/svg/Download/index.js.map +1 -1
  31. package/svg/DragIndicator/index.js.map +1 -1
  32. package/svg/Edit/index.js.map +1 -1
  33. package/svg/Epilot/index.js.map +1 -1
  34. package/svg/Error/index.js.map +1 -1
  35. package/svg/ExpandLess/index.js.map +1 -1
  36. package/svg/ExpandMore/index.js.map +1 -1
  37. package/svg/Explore/index.js.map +1 -1
  38. package/svg/FileCopy/index.js.map +1 -1
  39. package/svg/FileCopyOff/index.js.map +1 -1
  40. package/svg/FilterAlt/index.js.map +1 -1
  41. package/svg/FilterAltOff/index.js.map +1 -1
  42. package/svg/Help/index.js.map +1 -1
  43. package/svg/Info/index.js.map +1 -1
  44. package/svg/Link/index.js.map +1 -1
  45. package/svg/LinkOff/icon-fill.svg +1 -0
  46. package/svg/LinkOff/icon.svg +1 -0
  47. package/svg/LinkOff/index.d.ts +3 -0
  48. package/svg/LinkOff/index.js +159 -0
  49. package/svg/LinkOff/index.js.map +1 -0
  50. package/svg/Lock/index.js.map +1 -1
  51. package/svg/LockOpen/index.js.map +1 -1
  52. package/svg/Login/index.js.map +1 -1
  53. package/svg/Logout/index.js.map +1 -1
  54. package/svg/Menu/index.js.map +1 -1
  55. package/svg/Notifications/index.js.map +1 -1
  56. package/svg/OpenInNew/index.js.map +1 -1
  57. package/svg/Refresh/index.js.map +1 -1
  58. package/svg/Search/index.js.map +1 -1
  59. package/svg/Send/icon-fill.svg +1 -0
  60. package/svg/Send/icon.svg +1 -0
  61. package/svg/Send/index.d.ts +3 -0
  62. package/svg/Send/index.js +159 -0
  63. package/svg/Send/index.js.map +1 -0
  64. package/svg/Settings/index.js.map +1 -1
  65. package/svg/Share/index.js.map +1 -1
  66. package/svg/Table/index.js.map +1 -1
  67. package/svg/Visibility/index.js.map +1 -1
  68. package/svg/VisibilityOff/index.js.map +1 -1
  69. package/svg/Warning/index.js.map +1 -1
  70. package/svg/index.d.ts +2 -0
  71. package/svg/index.js +169 -4
  72. package/svg/index.js.map +1 -1
  73. package/svg/svgIcon.d.ts +3 -0
  74. package/svg/svgIcon.js +235 -1
  75. package/svg/svgIcon.js.map +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot360/icons",
3
- "version": "1.17.01",
3
+ "version": "1.17.02",
4
4
  "author": "epilot GmbH",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -181,8 +181,10 @@ import { Raven } from './Raven';
181
181
  import { DriveFileMove } from './DriveFileMove';
182
182
  import { Archive } from './Archive';
183
183
  import { Unarchive } from './Unarchive';
184
+ import { LocationAway } from './LocationAway';
185
+ import { LinkOff } from './LinkOff';
186
+ import { Send } from './Send';
184
187
  import type { IconPropsReact } from './types';
185
- import LocationAway from './LocationAway';
186
188
  export declare const IconComponentsMap: {
187
189
  epilot: typeof Epilot;
188
190
  edit: typeof Edit;
@@ -367,6 +369,8 @@ export declare const IconComponentsMap: {
367
369
  archive: typeof Archive;
368
370
  unarchive: typeof Unarchive;
369
371
  location_away: typeof LocationAway;
372
+ link_off: typeof LinkOff;
373
+ send: typeof Send;
370
374
  };
371
375
  export type IconName = keyof typeof IconComponentsMap;
372
376
  type Props = IconPropsReact & {
@@ -4852,6 +4852,58 @@ var SvgIcon = function SvgIcon(props) {
4852
4852
 
4853
4853
  /***/ }),
4854
4854
 
4855
+ /***/ 45198:
4856
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4857
+
4858
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4859
+ /* harmony export */ r: () => (/* binding */ SvgIconFill)
4860
+ /* harmony export */ });
4861
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
4862
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
4863
+ var _path;
4864
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4865
+
4866
+ var SvgIconFill = function SvgIconFill(props) {
4867
+ return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
4868
+ xmlns: "http://www.w3.org/2000/svg",
4869
+ width: 48,
4870
+ height: 48,
4871
+ viewBox: "0 -960 960 960"
4872
+ }, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
4873
+ d: "m601.91-439.09-70.74-71.3h69.87q16.71 0 28.44 11.45 11.74 11.45 11.74 28.16 0 13-8.22 22.06-8.22 9.07-20.09 9.63h-11ZM829.22-80.83q-10.13 10.7-23.76 10.7t-23.76-10.7L81.74-779.22q-10.13-10.13-10.41-23.76-.29-13.63 10.41-23.76 10.13-10.69 23.48-10.69t24.04 10.69l699.96 699.96q10.13 10.13 10.13 22.98 0 12.84-10.13 22.97ZM279.43-265.87q-89.21 0-151.67-62.46Q65.3-390.78 65.3-480q0-72.57 43.09-129.54 43.09-56.98 112.09-76.07l70.13 70.7h-11.18q-56.07 0-95.49 39.07-39.42 39.07-39.42 95.6 0 56.54 39.42 95.85 39.42 39.3 95.49 39.3h124.18q16.7 0 28.16 11.5 11.45 11.51 11.45 28.29t-11.45 28.1q-11.46 11.33-28.16 11.33H279.43Zm73.31-180.74q-14.45 0-23.92-9.52-9.47-9.53-9.47-24.05 0-14.52 9.47-23.86 9.47-9.35 23.92-9.35h43.91l66.78 66.78H352.74Zm367.13 141.76q-8.39-14.89-3.89-30.28t18.89-23.78q35.74-16.44 58.17-47.68 22.44-31.24 22.44-70.41 0-56.07-39.14-95.49-39.14-39.42-95.21-39.42H567.44q-16.71 0-28.16-11.5-11.45-11.51-11.45-28.29t11.45-28.39q11.45-11.61 28.16-11.61h113.13q89.21 0 151.67 62.74Q894.7-566.22 894.7-477q0 60.13-33.92 109.04-33.91 48.92-85.91 76.61-13.83 8.83-30.5 4.83t-24.5-18.33Z"
4874
+ })));
4875
+ };
4876
+
4877
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"m601.91-439.09-70.74-71.3h69.87q16.71 0 28.44 11.45 11.74 11.45 11.74 28.16 0 13-8.22 22.06-8.22 9.07-20.09 9.63h-11ZM829.22-80.83q-10.13 10.7-23.76 10.7t-23.76-10.7L81.74-779.22q-10.13-10.13-10.41-23.76-.29-13.63 10.41-23.76 10.13-10.69 23.48-10.69t24.04 10.69l699.96 699.96q10.13 10.13 10.13 22.98 0 12.84-10.13 22.97ZM279.43-265.87q-89.21 0-151.67-62.46Q65.3-390.78 65.3-480q0-72.57 43.09-129.54 43.09-56.98 112.09-76.07l70.13 70.7h-11.18q-56.07 0-95.49 39.07-39.42 39.07-39.42 95.6 0 56.54 39.42 95.85 39.42 39.3 95.49 39.3h124.18q16.7 0 28.16 11.5 11.45 11.51 11.45 28.29t-11.45 28.1q-11.46 11.33-28.16 11.33H279.43Zm73.31-180.74q-14.45 0-23.92-9.52-9.47-9.53-9.47-24.05 0-14.52 9.47-23.86 9.47-9.35 23.92-9.35h43.91l66.78 66.78H352.74Zm367.13 141.76q-8.39-14.89-3.89-30.28t18.89-23.78q35.74-16.44 58.17-47.68 22.44-31.24 22.44-70.41 0-56.07-39.14-95.49-39.14-39.42-95.21-39.42H567.44q-16.71 0-28.16-11.5-11.45-11.51-11.45-28.29t11.45-28.39q11.45-11.61 28.16-11.61h113.13q89.21 0 151.67 62.74Q894.7-566.22 894.7-477q0 60.13-33.92 109.04-33.91 48.92-85.91 76.61-13.83 8.83-30.5 4.83t-24.5-18.33Z\"/></svg>");
4878
+
4879
+ /***/ }),
4880
+
4881
+ /***/ 94142:
4882
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4883
+
4884
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4885
+ /* harmony export */ r: () => (/* binding */ SvgIcon)
4886
+ /* harmony export */ });
4887
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
4888
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
4889
+ var _path;
4890
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4891
+
4892
+ var SvgIcon = function SvgIcon(props) {
4893
+ return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
4894
+ xmlns: "http://www.w3.org/2000/svg",
4895
+ width: 48,
4896
+ height: 48,
4897
+ viewBox: "0 -960 960 960"
4898
+ }, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
4899
+ d: "m601.91-439.09-70.74-71.3h69.87q16.71 0 28.44 11.45 11.74 11.45 11.74 28.16 0 13-8.22 22.06-8.22 9.07-20.09 9.63h-11ZM829.22-80.83q-10.13 10.7-23.76 10.7t-23.76-10.7L81.74-779.22q-10.13-10.13-10.41-23.76-.29-13.63 10.41-23.76 10.13-10.69 23.48-10.69t24.04 10.69l699.96 699.96q10.13 10.13 10.13 22.98 0 12.84-10.13 22.97ZM279.43-265.87q-89.21 0-151.67-62.46Q65.3-390.78 65.3-480q0-72.57 43.09-129.54 43.09-56.98 112.09-76.07l70.13 70.7h-11.18q-56.07 0-95.49 39.07-39.42 39.07-39.42 95.6 0 56.54 39.42 95.85 39.42 39.3 95.49 39.3h124.18q16.7 0 28.16 11.5 11.45 11.51 11.45 28.29t-11.45 28.1q-11.46 11.33-28.16 11.33H279.43Zm73.31-180.74q-14.45 0-23.92-9.52-9.47-9.53-9.47-24.05 0-14.52 9.47-23.86 9.47-9.35 23.92-9.35h43.91l66.78 66.78H352.74Zm367.13 141.76q-8.39-14.89-3.89-30.28t18.89-23.78q35.74-16.44 58.17-47.68 22.44-31.24 22.44-70.41 0-56.07-39.14-95.49-39.14-39.42-95.21-39.42H567.44q-16.71 0-28.16-11.5-11.45-11.51-11.45-28.29t11.45-28.39q11.45-11.61 28.16-11.61h113.13q89.21 0 151.67 62.74Q894.7-566.22 894.7-477q0 60.13-33.92 109.04-33.91 48.92-85.91 76.61-13.83 8.83-30.5 4.83t-24.5-18.33Z"
4900
+ })));
4901
+ };
4902
+
4903
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"m601.91-439.09-70.74-71.3h69.87q16.71 0 28.44 11.45 11.74 11.45 11.74 28.16 0 13-8.22 22.06-8.22 9.07-20.09 9.63h-11ZM829.22-80.83q-10.13 10.7-23.76 10.7t-23.76-10.7L81.74-779.22q-10.13-10.13-10.41-23.76-.29-13.63 10.41-23.76 10.13-10.69 23.48-10.69t24.04 10.69l699.96 699.96q10.13 10.13 10.13 22.98 0 12.84-10.13 22.97ZM279.43-265.87q-89.21 0-151.67-62.46Q65.3-390.78 65.3-480q0-72.57 43.09-129.54 43.09-56.98 112.09-76.07l70.13 70.7h-11.18q-56.07 0-95.49 39.07-39.42 39.07-39.42 95.6 0 56.54 39.42 95.85 39.42 39.3 95.49 39.3h124.18q16.7 0 28.16 11.5 11.45 11.51 11.45 28.29t-11.45 28.1q-11.46 11.33-28.16 11.33H279.43Zm73.31-180.74q-14.45 0-23.92-9.52-9.47-9.53-9.47-24.05 0-14.52 9.47-23.86 9.47-9.35 23.92-9.35h43.91l66.78 66.78H352.74Zm367.13 141.76q-8.39-14.89-3.89-30.28t18.89-23.78q35.74-16.44 58.17-47.68 22.44-31.24 22.44-70.41 0-56.07-39.14-95.49-39.14-39.42-95.21-39.42H567.44q-16.71 0-28.16-11.5-11.45-11.51-11.45-28.29t11.45-28.39q11.45-11.61 28.16-11.61h113.13q89.21 0 151.67 62.74Q894.7-566.22 894.7-477q0 60.13-33.92 109.04-33.91 48.92-85.91 76.61-13.83 8.83-30.5 4.83t-24.5-18.33Z\"/></svg>");
4904
+
4905
+ /***/ }),
4906
+
4855
4907
  /***/ 36914:
4856
4908
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4857
4909
 
@@ -7922,6 +7974,58 @@ var SvgIcon = function SvgIcon(props) {
7922
7974
 
7923
7975
  /***/ }),
7924
7976
 
7977
+ /***/ 3890:
7978
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7979
+
7980
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7981
+ /* harmony export */ r: () => (/* binding */ SvgIconFill)
7982
+ /* harmony export */ });
7983
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
7984
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
7985
+ var _path;
7986
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
7987
+
7988
+ var SvgIconFill = function SvgIconFill(props) {
7989
+ return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
7990
+ xmlns: "http://www.w3.org/2000/svg",
7991
+ width: 48,
7992
+ height: 48,
7993
+ viewBox: "0 -960 960 960"
7994
+ }, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
7995
+ d: "M162.57-170.65q-20.09 8.26-37.83-3.07Q107-185.04 107-206.13v-187L428.22-480 107-568.87v-185q0-21.09 17.74-32.41 17.74-11.33 37.83-3.63l647.47 272.87q24.22 10.26 24.22 37.04t-24.22 37.04L162.57-170.65Z"
7996
+ })));
7997
+ };
7998
+
7999
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M162.57-170.65q-20.09 8.26-37.83-3.07Q107-185.04 107-206.13v-187L428.22-480 107-568.87v-185q0-21.09 17.74-32.41 17.74-11.33 37.83-3.63l647.47 272.87q24.22 10.26 24.22 37.04t-24.22 37.04L162.57-170.65Z\"/></svg>");
8000
+
8001
+ /***/ }),
8002
+
8003
+ /***/ 35253:
8004
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8005
+
8006
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8007
+ /* harmony export */ r: () => (/* binding */ SvgIcon)
8008
+ /* harmony export */ });
8009
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
8010
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
8011
+ var _path;
8012
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
8013
+
8014
+ var SvgIcon = function SvgIcon(props) {
8015
+ return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
8016
+ xmlns: "http://www.w3.org/2000/svg",
8017
+ width: 48,
8018
+ height: 48,
8019
+ viewBox: "0 -960 960 960"
8020
+ }, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
8021
+ d: "M810.04-442.96 162.57-170.65q-20.09 8.26-37.83-3.07Q107-185.04 107-206.13v-547.74q0-21.09 17.74-32.41 17.74-11.33 37.83-3.63l647.47 272.87q24.22 10.26 24.22 37.04t-24.22 37.04ZM180-259.22 708.17-480 180-703.78v155.56L428.22-480 180-413.78v154.56Zm0 0v-444.56 444.56Z"
8022
+ })));
8023
+ };
8024
+
8025
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" viewBox=\"0 -960 960 960\"><path d=\"M810.04-442.96 162.57-170.65q-20.09 8.26-37.83-3.07Q107-185.04 107-206.13v-547.74q0-21.09 17.74-32.41 17.74-11.33 37.83-3.63l647.47 272.87q24.22 10.26 24.22 37.04t-24.22 37.04ZM180-259.22 708.17-480 180-703.78v155.56L428.22-480 180-413.78v154.56Zm0 0v-444.56 444.56Z\"/></svg>");
8026
+
8027
+ /***/ }),
8028
+
7925
8029
  /***/ 14002:
7926
8030
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7927
8031
 
@@ -14752,15 +14856,70 @@ function Link(props) {
14752
14856
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Link)));
14753
14857
 
14754
14858
 
14859
+ /***/ }),
14860
+
14861
+ /***/ 20995:
14862
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
14863
+
14864
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
14865
+ /* harmony export */ LinkOff: () => (/* binding */ LinkOff)
14866
+ /* harmony export */ });
14867
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
14868
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
14869
+ /* harmony import */ var _svg_LinkOff_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(45198);
14870
+ /* harmony import */ var _svg_LinkOff_icon_svg__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(94142);
14871
+ /* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(58387);
14872
+
14873
+ var __defProp = Object.defineProperty;
14874
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
14875
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14876
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
14877
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
14878
+ var __spreadValues = (a, b) => {
14879
+ for (var prop in b || (b = {}))
14880
+ if (__hasOwnProp.call(b, prop))
14881
+ __defNormalProp(a, prop, b[prop]);
14882
+ if (__getOwnPropSymbols)
14883
+ for (var prop of __getOwnPropSymbols(b)) {
14884
+ if (__propIsEnum.call(b, prop))
14885
+ __defNormalProp(a, prop, b[prop]);
14886
+ }
14887
+ return a;
14888
+ };
14889
+ var __objRest = (source, exclude) => {
14890
+ var target = {};
14891
+ for (var prop in source)
14892
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
14893
+ target[prop] = source[prop];
14894
+ if (source != null && __getOwnPropSymbols)
14895
+ for (var prop of __getOwnPropSymbols(source)) {
14896
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
14897
+ target[prop] = source[prop];
14898
+ }
14899
+ return target;
14900
+ };
14901
+
14902
+
14903
+
14904
+
14905
+ const name = "link_off";
14906
+ function LinkOff(props) {
14907
+ const _a = __spreadValues(__spreadValues({}, _common__WEBPACK_IMPORTED_MODULE_3__.defaultIconProps), props), { variant } = _a, restProps = __objRest(_a, ["variant"]);
14908
+ const IconComponent = variant === "outlined" ? _svg_LinkOff_icon_svg__WEBPACK_IMPORTED_MODULE_2__/* .ReactComponent */ .r : _svg_LinkOff_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__/* .ReactComponent */ .r;
14909
+ const overrides = props.size ? { width: props.size, height: props.size } : {};
14910
+ return /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0___default().createElement(IconComponent, __spreadValues(__spreadValues({ "aria-label": name }, restProps), overrides));
14911
+ }
14912
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (LinkOff)));
14913
+
14914
+
14755
14915
  /***/ }),
14756
14916
 
14757
14917
  /***/ 91005:
14758
14918
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
14759
14919
 
14760
14920
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
14761
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
14921
+ /* harmony export */ LocationAway: () => (/* binding */ LocationAway)
14762
14922
  /* harmony export */ });
14763
- /* unused harmony export LocationAway */
14764
14923
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
14765
14924
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
14766
14925
  /* harmony import */ var _svg_LocationAway_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(36914);
@@ -14806,7 +14965,7 @@ function LocationAway(props) {
14806
14965
  const overrides = props.size ? { width: props.size, height: props.size } : {};
14807
14966
  return /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0___default().createElement(IconComponent, __spreadValues(__spreadValues({ "aria-label": name }, restProps), overrides));
14808
14967
  }
14809
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (LocationAway);
14968
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (LocationAway)));
14810
14969
 
14811
14970
 
14812
14971
  /***/ }),
@@ -18057,6 +18216,62 @@ function Search(props) {
18057
18216
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Search)));
18058
18217
 
18059
18218
 
18219
+ /***/ }),
18220
+
18221
+ /***/ 58407:
18222
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
18223
+
18224
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
18225
+ /* harmony export */ Send: () => (/* binding */ Send)
18226
+ /* harmony export */ });
18227
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
18228
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
18229
+ /* harmony import */ var _svg_Send_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3890);
18230
+ /* harmony import */ var _svg_Send_icon_svg__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(35253);
18231
+ /* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(58387);
18232
+
18233
+ var __defProp = Object.defineProperty;
18234
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
18235
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
18236
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
18237
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
18238
+ var __spreadValues = (a, b) => {
18239
+ for (var prop in b || (b = {}))
18240
+ if (__hasOwnProp.call(b, prop))
18241
+ __defNormalProp(a, prop, b[prop]);
18242
+ if (__getOwnPropSymbols)
18243
+ for (var prop of __getOwnPropSymbols(b)) {
18244
+ if (__propIsEnum.call(b, prop))
18245
+ __defNormalProp(a, prop, b[prop]);
18246
+ }
18247
+ return a;
18248
+ };
18249
+ var __objRest = (source, exclude) => {
18250
+ var target = {};
18251
+ for (var prop in source)
18252
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
18253
+ target[prop] = source[prop];
18254
+ if (source != null && __getOwnPropSymbols)
18255
+ for (var prop of __getOwnPropSymbols(source)) {
18256
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
18257
+ target[prop] = source[prop];
18258
+ }
18259
+ return target;
18260
+ };
18261
+
18262
+
18263
+
18264
+
18265
+ const name = "send";
18266
+ function Send(props) {
18267
+ const _a = __spreadValues(__spreadValues({}, _common__WEBPACK_IMPORTED_MODULE_3__.defaultIconProps), props), { variant } = _a, restProps = __objRest(_a, ["variant"]);
18268
+ const IconComponent = variant === "outlined" ? _svg_Send_icon_svg__WEBPACK_IMPORTED_MODULE_2__/* .ReactComponent */ .r : _svg_Send_icon_fill_svg__WEBPACK_IMPORTED_MODULE_1__/* .ReactComponent */ .r;
18269
+ const overrides = props.size ? { width: props.size, height: props.size } : {};
18270
+ return /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0___default().createElement(IconComponent, __spreadValues(__spreadValues({ "aria-label": name }, restProps), overrides));
18271
+ }
18272
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Send)));
18273
+
18274
+
18060
18275
  /***/ }),
18061
18276
 
18062
18277
  /***/ 84874:
@@ -20081,6 +20296,8 @@ __webpack_require__.r(__webpack_exports__);
20081
20296
  /* harmony import */ var _Archive__WEBPACK_IMPORTED_MODULE_181__ = __webpack_require__(92464);
20082
20297
  /* harmony import */ var _Unarchive__WEBPACK_IMPORTED_MODULE_182__ = __webpack_require__(971);
20083
20298
  /* harmony import */ var _LocationAway__WEBPACK_IMPORTED_MODULE_183__ = __webpack_require__(91005);
20299
+ /* harmony import */ var _LinkOff__WEBPACK_IMPORTED_MODULE_184__ = __webpack_require__(20995);
20300
+ /* harmony import */ var _Send__WEBPACK_IMPORTED_MODULE_185__ = __webpack_require__(58407);
20084
20301
 
20085
20302
  var __getOwnPropSymbols = Object.getOwnPropertySymbols;
20086
20303
  var __hasOwnProp = Object.prototype.hasOwnProperty;
@@ -20278,6 +20495,8 @@ var __objRest = (source, exclude) => {
20278
20495
 
20279
20496
 
20280
20497
 
20498
+
20499
+
20281
20500
 
20282
20501
 
20283
20502
 
@@ -20464,7 +20683,9 @@ const IconComponentsMap = {
20464
20683
  drive_file_move: _DriveFileMove__WEBPACK_IMPORTED_MODULE_180__.DriveFileMove,
20465
20684
  archive: _Archive__WEBPACK_IMPORTED_MODULE_181__.Archive,
20466
20685
  unarchive: _Unarchive__WEBPACK_IMPORTED_MODULE_182__.Unarchive,
20467
- location_away: _LocationAway__WEBPACK_IMPORTED_MODULE_183__["default"]
20686
+ location_away: _LocationAway__WEBPACK_IMPORTED_MODULE_183__.LocationAway,
20687
+ link_off: _LinkOff__WEBPACK_IMPORTED_MODULE_184__.LinkOff,
20688
+ send: _Send__WEBPACK_IMPORTED_MODULE_185__.Send
20468
20689
  };
20469
20690
  const EpilotIcon = (props) => {
20470
20691
  const _a = props, { name } = _a, restProps = __objRest(_a, ["name"]);