@bigbinary/neeto-icons 1.20.64 → 1.20.65
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/icons/AutoCc.js +71 -0
- package/dist/cjs/icons/AutoCc.js.map +1 -0
- package/dist/cjs/icons/BookingCancellationEmailForClient.js +93 -0
- package/dist/cjs/icons/BookingCancellationEmailForClient.js.map +1 -0
- package/dist/cjs/icons/BookingConfirmationEmailForClient.js +88 -0
- package/dist/cjs/icons/BookingConfirmationEmailForClient.js.map +1 -0
- package/dist/cjs/icons/BookingConfirmationEmailForHost.js +88 -0
- package/dist/cjs/icons/BookingConfirmationEmailForHost.js.map +1 -0
- package/dist/cjs/icons/CustomiseNotification.js +89 -0
- package/dist/cjs/icons/CustomiseNotification.js.map +1 -0
- package/dist/cjs/icons/GlobalAutoCc.js +101 -0
- package/dist/cjs/icons/GlobalAutoCc.js.map +1 -0
- package/dist/cjs/icons/NotificationTemplates.js +88 -0
- package/dist/cjs/icons/NotificationTemplates.js.map +1 -0
- package/dist/cjs/icons/ReminderEmailForClient.js +71 -0
- package/dist/cjs/icons/ReminderEmailForClient.js.map +1 -0
- package/dist/cjs/icons/ReminderEmailForHost.js +72 -0
- package/dist/cjs/icons/ReminderEmailForHost.js.map +1 -0
- package/dist/cjs/icons/ReminderSmsForClient.js +83 -0
- package/dist/cjs/icons/ReminderSmsForClient.js.map +1 -0
- package/dist/cjs/icons/ReminderSmsForHost.js +84 -0
- package/dist/cjs/icons/ReminderSmsForHost.js.map +1 -0
- package/dist/cjs/icons/index.js +88 -0
- package/dist/cjs/icons/index.js.map +1 -1
- package/dist/icons/AutoCc.js +61 -0
- package/dist/icons/AutoCc.js.map +1 -0
- package/dist/icons/BookingCancellationEmailForClient.js +83 -0
- package/dist/icons/BookingCancellationEmailForClient.js.map +1 -0
- package/dist/icons/BookingConfirmationEmailForClient.js +78 -0
- package/dist/icons/BookingConfirmationEmailForClient.js.map +1 -0
- package/dist/icons/BookingConfirmationEmailForHost.js +78 -0
- package/dist/icons/BookingConfirmationEmailForHost.js.map +1 -0
- package/dist/icons/CustomiseNotification.js +79 -0
- package/dist/icons/CustomiseNotification.js.map +1 -0
- package/dist/icons/GlobalAutoCc.js +91 -0
- package/dist/icons/GlobalAutoCc.js.map +1 -0
- package/dist/icons/NotificationTemplates.js +78 -0
- package/dist/icons/NotificationTemplates.js.map +1 -0
- package/dist/icons/ReminderEmailForClient.js +61 -0
- package/dist/icons/ReminderEmailForClient.js.map +1 -0
- package/dist/icons/ReminderEmailForHost.js +62 -0
- package/dist/icons/ReminderEmailForHost.js.map +1 -0
- package/dist/icons/ReminderSmsForClient.js +73 -0
- package/dist/icons/ReminderSmsForClient.js.map +1 -0
- package/dist/icons/ReminderSmsForHost.js +74 -0
- package/dist/icons/ReminderSmsForHost.js.map +1 -0
- package/dist/icons/index.js +12 -1
- package/dist/icons/index.js.map +1 -1
- package/icons.d.ts +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign || 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); }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import React from "react";
|
|
10
|
+
|
|
11
|
+
var GlobalAutoCc = function GlobalAutoCc(_ref) {
|
|
12
|
+
var _ref$size = _ref.size,
|
|
13
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
14
|
+
_ref$color = _ref.color,
|
|
15
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
16
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
17
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
18
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
19
|
+
|
|
20
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
21
|
+
width: size,
|
|
22
|
+
height: size,
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#GlobalAutoCc_js__clip0_569_1283)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M11 21C9.8181 21 8.64778 20.7672 7.55585 20.3149C6.46392 19.8626 5.47177 19.1997 4.63604 18.364C3.80031 17.5282 3.13738 16.5361 2.68508 15.4442C2.23279 14.3522 2 13.1819 2 12C2 9.61305 2.94821 7.32387 4.63604 5.63604C6.32387 3.94821 8.61305 3 11 3C13.3869 3 15.6761 3.94821 17.364 5.63604C18.2038 6.47587 18.8605 7.46459 19.3084 8.54016C19.3715 8.69177 19.4305 8.84511 19.4853 9",
|
|
29
|
+
stroke: color,
|
|
30
|
+
strokeWidth: strokeWidth,
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M2.59998 9H19.4",
|
|
35
|
+
stroke: color,
|
|
36
|
+
strokeWidth: strokeWidth,
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M3 15H10",
|
|
41
|
+
stroke: color,
|
|
42
|
+
strokeWidth: strokeWidth,
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
d: "M10.5 3C8.81532 5.69961 7.92218 8.81787 7.92218 12C7.92218 15.1821 8.81532 18.3004 10.5 21",
|
|
47
|
+
stroke: color,
|
|
48
|
+
strokeWidth: strokeWidth,
|
|
49
|
+
strokeLinecap: "round",
|
|
50
|
+
strokeLinejoin: "round"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
d: "M11.5 3C12.6498 4.84257 13.4309 6.88017 13.811 9C13.8704 9.33147 13.9201 9.66494 13.9597 10",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: strokeWidth,
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
58
|
+
d: "M18.2941 20.4118H14.0588C13.778 20.4118 13.5087 20.3002 13.3101 20.1016C13.1116 19.9031 13 19.6338 13 19.3529V14.0588C13 13.778 13.1116 13.5087 13.3101 13.3101C13.5087 13.1116 13.778 13 14.0588 13H21.4706C21.7514 13 22.0207 13.1116 22.2193 13.3101C22.4179 13.5087 22.5294 13.778 22.5294 14.0588V17.2353",
|
|
59
|
+
stroke: color,
|
|
60
|
+
strokeWidth: strokeWidth,
|
|
61
|
+
strokeLinecap: "round",
|
|
62
|
+
strokeLinejoin: "round"
|
|
63
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
64
|
+
d: "M13 14.0588L17.7647 17.2353L22.5294 14.0588",
|
|
65
|
+
stroke: color,
|
|
66
|
+
strokeWidth: strokeWidth,
|
|
67
|
+
strokeLinecap: "round",
|
|
68
|
+
strokeLinejoin: "round"
|
|
69
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
70
|
+
d: "M19.8823 22L22.5294 19.3529",
|
|
71
|
+
stroke: color,
|
|
72
|
+
strokeWidth: strokeWidth,
|
|
73
|
+
strokeLinecap: "round",
|
|
74
|
+
strokeLinejoin: "round"
|
|
75
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
76
|
+
d: "M22.5294 21.7353V19.3529H20.1471",
|
|
77
|
+
stroke: color,
|
|
78
|
+
strokeWidth: strokeWidth,
|
|
79
|
+
strokeLinecap: "round",
|
|
80
|
+
strokeLinejoin: "round"
|
|
81
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
82
|
+
id: "GlobalAutoCc_js__clip0_569_1283"
|
|
83
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
84
|
+
width: 24,
|
|
85
|
+
height: 24,
|
|
86
|
+
fill: color
|
|
87
|
+
}))));
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
export default GlobalAutoCc;
|
|
91
|
+
//# sourceMappingURL=GlobalAutoCc.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/icons/GlobalAutoCc.js"],"names":["React","GlobalAutoCc","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,YAAY,GAAG,SAAfA,YAAe,OAKf;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,4XADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,iBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,4FADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,eA6BE;AACE,IAAA,CAAC,EAAC,6FADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA7BF,eAoCE;AACE,IAAA,CAAC,EAAC,gTADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IApCF,eA2CE;AACE,IAAA,CAAC,EAAC,6CADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA3CF,eAkDE;AACE,IAAA,CAAC,EAAC,6BADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAlDF,eAyDE;AACE,IAAA,CAAC,EAAC,kCADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAzDF,CADF,eAkEE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAlEF,CADF;AA0ED,CAhFD;;AAiFA,eAAeF,YAAf","sourcesContent":["import React from \"react\";\nconst GlobalAutoCc = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#GlobalAutoCc_js__clip0_569_1283)\">\n <path\n d=\"M11 21C9.8181 21 8.64778 20.7672 7.55585 20.3149C6.46392 19.8626 5.47177 19.1997 4.63604 18.364C3.80031 17.5282 3.13738 16.5361 2.68508 15.4442C2.23279 14.3522 2 13.1819 2 12C2 9.61305 2.94821 7.32387 4.63604 5.63604C6.32387 3.94821 8.61305 3 11 3C13.3869 3 15.6761 3.94821 17.364 5.63604C18.2038 6.47587 18.8605 7.46459 19.3084 8.54016C19.3715 8.69177 19.4305 8.84511 19.4853 9\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M2.59998 9H19.4\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3 15H10\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M10.5 3C8.81532 5.69961 7.92218 8.81787 7.92218 12C7.92218 15.1821 8.81532 18.3004 10.5 21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M11.5 3C12.6498 4.84257 13.4309 6.88017 13.811 9C13.8704 9.33147 13.9201 9.66494 13.9597 10\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M18.2941 20.4118H14.0588C13.778 20.4118 13.5087 20.3002 13.3101 20.1016C13.1116 19.9031 13 19.6338 13 19.3529V14.0588C13 13.778 13.1116 13.5087 13.3101 13.3101C13.5087 13.1116 13.778 13 14.0588 13H21.4706C21.7514 13 22.0207 13.1116 22.2193 13.3101C22.4179 13.5087 22.5294 13.778 22.5294 14.0588V17.2353\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13 14.0588L17.7647 17.2353L22.5294 14.0588\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19.8823 22L22.5294 19.3529\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M22.5294 21.7353V19.3529H20.1471\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"GlobalAutoCc_js__clip0_569_1283\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default GlobalAutoCc;\n"],"file":"GlobalAutoCc.js"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign || 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); }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import React from "react";
|
|
10
|
+
|
|
11
|
+
var NotificationTemplates = function NotificationTemplates(_ref) {
|
|
12
|
+
var _ref$size = _ref.size,
|
|
13
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
14
|
+
_ref$color = _ref.color,
|
|
15
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
16
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
17
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
18
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
19
|
+
|
|
20
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
21
|
+
width: size,
|
|
22
|
+
height: size,
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#NotificationTemplates_js__clip0_569_1281)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M18 9V6.82843C18 6.29799 17.7893 5.78929 17.4142 5.41421L14.5858 2.58579C14.2107 2.21071 13.702 2 13.1716 2H6C4.89543 2 4 2.89543 4 4V18C4 19.1046 4.89543 20 6 20H10",
|
|
29
|
+
stroke: color,
|
|
30
|
+
strokeWidth: strokeWidth,
|
|
31
|
+
strokeLinecap: "round"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M8 7H14",
|
|
34
|
+
stroke: color,
|
|
35
|
+
strokeWidth: strokeWidth,
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39
|
+
d: "M8 10H14",
|
|
40
|
+
stroke: color,
|
|
41
|
+
strokeWidth: strokeWidth,
|
|
42
|
+
strokeLinecap: "round",
|
|
43
|
+
strokeLinejoin: "round"
|
|
44
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
45
|
+
d: "M8 13H12",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round",
|
|
49
|
+
strokeLinejoin: "round"
|
|
50
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51
|
+
d: "M8 16H11",
|
|
52
|
+
stroke: color,
|
|
53
|
+
strokeWidth: strokeWidth,
|
|
54
|
+
strokeLinecap: "round",
|
|
55
|
+
strokeLinejoin: "round"
|
|
56
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
57
|
+
d: "M15.7778 12.2222C15.7778 11.8981 15.9065 11.5872 16.1357 11.358C16.3649 11.1288 16.6758 11 17 11C17.3241 11 17.635 11.1288 17.8642 11.358C18.0934 11.5872 18.2222 11.8981 18.2222 12.2222C18.924 12.5541 19.5223 13.0706 19.9529 13.7166C20.3835 14.3625 20.6302 15.1134 20.6666 15.8889V17.7222C20.7126 18.1022 20.8472 18.466 21.0595 18.7844C21.2718 19.1028 21.5558 19.367 21.8889 19.5556H12.1111C12.4441 19.367 12.7282 19.1028 12.9405 18.7844C13.1528 18.466 13.2873 18.1022 13.3333 17.7222V15.8889C13.3697 15.1134 13.6164 14.3625 14.0471 13.7166C14.4777 13.0706 15.0759 12.5541 15.7778 12.2222Z",
|
|
58
|
+
stroke: color,
|
|
59
|
+
strokeWidth: strokeWidth,
|
|
60
|
+
strokeLinecap: "round",
|
|
61
|
+
strokeLinejoin: "round"
|
|
62
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
63
|
+
d: "M15.1667 19.5555V20.1667C15.1667 20.6529 15.3598 21.1192 15.7037 21.463C16.0475 21.8068 16.5138 22 17 22C17.4863 22 17.9526 21.8068 18.2964 21.463C18.6402 21.1192 18.8334 20.6529 18.8334 20.1667V19.5555",
|
|
64
|
+
stroke: color,
|
|
65
|
+
strokeWidth: strokeWidth,
|
|
66
|
+
strokeLinecap: "round",
|
|
67
|
+
strokeLinejoin: "round"
|
|
68
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
69
|
+
id: "NotificationTemplates_js__clip0_569_1281"
|
|
70
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
71
|
+
width: 24,
|
|
72
|
+
height: 24,
|
|
73
|
+
fill: color
|
|
74
|
+
}))));
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export default NotificationTemplates;
|
|
78
|
+
//# sourceMappingURL=NotificationTemplates.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/icons/NotificationTemplates.js"],"names":["React","NotificationTemplates","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,qBAAqB,GAAG,SAAxBA,qBAAwB,OAKxB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,uKADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IADF,eAOE;AACE,IAAA,CAAC,EAAC,SADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAPF,eAcE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAdF,eAqBE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IArBF,eA4BE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA5BF,eAmCE;AACE,IAAA,CAAC,EAAC,+kBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAnCF,eA0CE;AACE,IAAA,CAAC,EAAC,4MADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA1CF,CADF,eAmDE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAnDF,CADF;AA2DD,CAjED;;AAkEA,eAAeF,qBAAf","sourcesContent":["import React from \"react\";\nconst NotificationTemplates = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#NotificationTemplates_js__clip0_569_1281)\">\n <path\n d=\"M18 9V6.82843C18 6.29799 17.7893 5.78929 17.4142 5.41421L14.5858 2.58579C14.2107 2.21071 13.702 2 13.1716 2H6C4.89543 2 4 2.89543 4 4V18C4 19.1046 4.89543 20 6 20H10\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M8 7H14\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8 10H14\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8 13H12\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8 16H11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M15.7778 12.2222C15.7778 11.8981 15.9065 11.5872 16.1357 11.358C16.3649 11.1288 16.6758 11 17 11C17.3241 11 17.635 11.1288 17.8642 11.358C18.0934 11.5872 18.2222 11.8981 18.2222 12.2222C18.924 12.5541 19.5223 13.0706 19.9529 13.7166C20.3835 14.3625 20.6302 15.1134 20.6666 15.8889V17.7222C20.7126 18.1022 20.8472 18.466 21.0595 18.7844C21.2718 19.1028 21.5558 19.367 21.8889 19.5556H12.1111C12.4441 19.367 12.7282 19.1028 12.9405 18.7844C13.1528 18.466 13.2873 18.1022 13.3333 17.7222V15.8889C13.3697 15.1134 13.6164 14.3625 14.0471 13.7166C14.4777 13.0706 15.0759 12.5541 15.7778 12.2222Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M15.1667 19.5555V20.1667C15.1667 20.6529 15.3598 21.1192 15.7037 21.463C16.0475 21.8068 16.5138 22 17 22C17.4863 22 17.9526 21.8068 18.2964 21.463C18.6402 21.1192 18.8334 20.6529 18.8334 20.1667V19.5555\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"NotificationTemplates_js__clip0_569_1281\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default NotificationTemplates;\n"],"file":"NotificationTemplates.js"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign || 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); }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import React from "react";
|
|
10
|
+
|
|
11
|
+
var ReminderEmailForClient = function ReminderEmailForClient(_ref) {
|
|
12
|
+
var _ref$size = _ref.size,
|
|
13
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
14
|
+
_ref$color = _ref.color,
|
|
15
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
16
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
17
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
18
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
19
|
+
|
|
20
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
21
|
+
width: size,
|
|
22
|
+
height: size,
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#ReminderEmailForClient_js__clip0_569_1287)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M20.6812 5.30428C20.6812 4.24773 19.8247 3.39124 18.7681 3.39124H5.37685C4.3203 3.39124 3.46381 4.24773 3.46381 5.30428M20.6812 5.30428L12.0725 11.0434L3.46381 5.30428M20.6812 5.30428V8.63519M3.46381 5.30428V8.17384M12.0725 16.7825H18.7681C19.8247 16.7825 20.6812 15.926 20.6812 14.8695V11.5",
|
|
29
|
+
stroke: color,
|
|
30
|
+
strokeWidth: strokeWidth,
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M4.20292 12.0676C4.20292 11.7845 4.3154 11.5129 4.51562 11.3127C4.71585 11.1125 4.9874 11 5.27056 11C5.55372 11 5.82527 11.1125 6.0255 11.3127C6.22572 11.5129 6.3382 11.7845 6.3382 12.0676C6.95124 12.3575 7.47385 12.8088 7.85 13.373C8.22616 13.9372 8.44169 14.5932 8.47348 15.2706V16.872C8.51365 17.2039 8.63119 17.5217 8.81663 17.7999C9.00206 18.078 9.25022 18.3088 9.54112 18.4735H1C1.2909 18.3088 1.53906 18.078 1.72449 17.7999C1.90993 17.5217 2.02747 17.2039 2.06764 16.872V15.2706C2.09943 14.5932 2.31496 13.9372 2.69111 13.373C3.06727 12.8088 3.58988 12.3575 4.20292 12.0676Z",
|
|
35
|
+
stroke: color,
|
|
36
|
+
strokeWidth: strokeWidth,
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M3.6691 18.4734V19.0072C3.6691 19.4319 3.83782 19.8393 4.13815 20.1396C4.43849 20.4399 4.84582 20.6087 5.27056 20.6087C5.69529 20.6087 6.10263 20.4399 6.40296 20.1396C6.70329 19.8393 6.87202 19.4319 6.87202 19.0072V18.4734",
|
|
41
|
+
stroke: color,
|
|
42
|
+
strokeWidth: strokeWidth,
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
46
|
+
cx: 20.6812,
|
|
47
|
+
cy: 10.0869,
|
|
48
|
+
r: 1.31304,
|
|
49
|
+
stroke: color,
|
|
50
|
+
strokeWidth: strokeWidth
|
|
51
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
52
|
+
id: "ReminderEmailForClient_js__clip0_569_1287"
|
|
53
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
54
|
+
width: 24,
|
|
55
|
+
height: 24,
|
|
56
|
+
fill: color
|
|
57
|
+
}))));
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export default ReminderEmailForClient;
|
|
61
|
+
//# sourceMappingURL=ReminderEmailForClient.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/icons/ReminderEmailForClient.js"],"names":["React","ReminderEmailForClient","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,sBAAsB,GAAG,SAAzBA,sBAAyB,OAKzB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,qSADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,ukBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,gOADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,EAAE,EAAE,OADN;AAEE,IAAA,EAAE,EAAE,OAFN;AAGE,IAAA,CAAC,EAAE,OAHL;AAIE,IAAA,MAAM,EAAED,KAJV;AAKE,IAAA,WAAW,EAAEC;AALf,IAtBF,CADF,eA+BE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CA/BF,CADF;AAuCD,CA7CD;;AA8CA,eAAeF,sBAAf","sourcesContent":["import React from \"react\";\nconst ReminderEmailForClient = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#ReminderEmailForClient_js__clip0_569_1287)\">\n <path\n d=\"M20.6812 5.30428C20.6812 4.24773 19.8247 3.39124 18.7681 3.39124H5.37685C4.3203 3.39124 3.46381 4.24773 3.46381 5.30428M20.6812 5.30428L12.0725 11.0434L3.46381 5.30428M20.6812 5.30428V8.63519M3.46381 5.30428V8.17384M12.0725 16.7825H18.7681C19.8247 16.7825 20.6812 15.926 20.6812 14.8695V11.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4.20292 12.0676C4.20292 11.7845 4.3154 11.5129 4.51562 11.3127C4.71585 11.1125 4.9874 11 5.27056 11C5.55372 11 5.82527 11.1125 6.0255 11.3127C6.22572 11.5129 6.3382 11.7845 6.3382 12.0676C6.95124 12.3575 7.47385 12.8088 7.85 13.373C8.22616 13.9372 8.44169 14.5932 8.47348 15.2706V16.872C8.51365 17.2039 8.63119 17.5217 8.81663 17.7999C9.00206 18.078 9.25022 18.3088 9.54112 18.4735H1C1.2909 18.3088 1.53906 18.078 1.72449 17.7999C1.90993 17.5217 2.02747 17.2039 2.06764 16.872V15.2706C2.09943 14.5932 2.31496 13.9372 2.69111 13.373C3.06727 12.8088 3.58988 12.3575 4.20292 12.0676Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.6691 18.4734V19.0072C3.6691 19.4319 3.83782 19.8393 4.13815 20.1396C4.43849 20.4399 4.84582 20.6087 5.27056 20.6087C5.69529 20.6087 6.10263 20.4399 6.40296 20.1396C6.70329 19.8393 6.87202 19.4319 6.87202 19.0072V18.4734\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle\n cx={20.6812}\n cy={10.0869}\n r={1.31304}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n </g>\n <defs>\n <clipPath id=\"ReminderEmailForClient_js__clip0_569_1287\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default ReminderEmailForClient;\n"],"file":"ReminderEmailForClient.js"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign || 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); }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import React from "react";
|
|
10
|
+
|
|
11
|
+
var ReminderEmailForHost = function ReminderEmailForHost(_ref) {
|
|
12
|
+
var _ref$size = _ref.size,
|
|
13
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
14
|
+
_ref$color = _ref.color,
|
|
15
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
16
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
17
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
18
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
19
|
+
|
|
20
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
21
|
+
width: size,
|
|
22
|
+
height: size,
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#ReminderEmailForHost_js__clip0_569_1288)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M2.91305 5.30428C2.91305 4.24773 3.76955 3.39124 4.82609 3.39124H18.2174C19.2739 3.39124 20.1304 4.24773 20.1304 5.30428M2.91305 5.30428L11.5217 11.0434L20.1304 5.30428M2.91305 5.30428V8.63519M20.1304 5.30428V8.17384M11.5217 16.7825H4.82609C3.76955 16.7825 2.91305 15.926 2.91305 14.8695V11.5",
|
|
29
|
+
stroke: color,
|
|
30
|
+
strokeWidth: strokeWidth,
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M19.3913 12.0676C19.3913 11.7845 19.2788 11.5129 19.0786 11.3127C18.8784 11.1125 18.6068 11 18.3237 11C18.0405 11 17.769 11.1125 17.5687 11.3127C17.3685 11.5129 17.256 11.7845 17.256 12.0676C16.643 12.3575 16.1204 12.8088 15.7442 13.373C15.3681 13.9372 15.1526 14.5932 15.1208 15.2706V16.872C15.0806 17.2039 14.963 17.5217 14.7776 17.7999C14.5922 18.078 14.344 18.3088 14.0531 18.4735H22.5942C22.3033 18.3088 22.0552 18.078 21.8697 17.7999C21.6843 17.5217 21.5668 17.2039 21.5266 16.872V15.2706C21.4948 14.5932 21.2793 13.9372 20.9031 13.373C20.527 12.8088 20.0044 12.3575 19.3913 12.0676Z",
|
|
35
|
+
stroke: color,
|
|
36
|
+
strokeWidth: strokeWidth,
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M19.9251 18.4734V19.0072C19.9251 19.4319 19.7564 19.8393 19.4561 20.1396C19.1558 20.4399 18.7484 20.6087 18.3237 20.6087C17.8989 20.6087 17.4916 20.4399 17.1913 20.1396C16.8909 19.8393 16.7222 19.4319 16.7222 19.0072V18.4734",
|
|
41
|
+
stroke: color,
|
|
42
|
+
strokeWidth: strokeWidth,
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
46
|
+
cx: 1.91304,
|
|
47
|
+
cy: 1.91304,
|
|
48
|
+
r: 1.31304,
|
|
49
|
+
transform: "matrix(-1 0 0 1 4.82608 8.17383)",
|
|
50
|
+
stroke: color,
|
|
51
|
+
strokeWidth: strokeWidth
|
|
52
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
53
|
+
id: "ReminderEmailForHost_js__clip0_569_1288"
|
|
54
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
55
|
+
width: 24,
|
|
56
|
+
height: 24,
|
|
57
|
+
fill: color
|
|
58
|
+
}))));
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
export default ReminderEmailForHost;
|
|
62
|
+
//# sourceMappingURL=ReminderEmailForHost.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/icons/ReminderEmailForHost.js"],"names":["React","ReminderEmailForHost","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,oBAAoB,GAAG,SAAvBA,oBAAuB,OAKvB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,sSADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,+kBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,kOADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,EAAE,EAAE,OADN;AAEE,IAAA,EAAE,EAAE,OAFN;AAGE,IAAA,CAAC,EAAE,OAHL;AAIE,IAAA,SAAS,EAAC,kCAJZ;AAKE,IAAA,MAAM,EAAED,KALV;AAME,IAAA,WAAW,EAAEC;AANf,IAtBF,CADF,eAgCE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAhCF,CADF;AAwCD,CA9CD;;AA+CA,eAAeF,oBAAf","sourcesContent":["import React from \"react\";\nconst ReminderEmailForHost = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#ReminderEmailForHost_js__clip0_569_1288)\">\n <path\n d=\"M2.91305 5.30428C2.91305 4.24773 3.76955 3.39124 4.82609 3.39124H18.2174C19.2739 3.39124 20.1304 4.24773 20.1304 5.30428M2.91305 5.30428L11.5217 11.0434L20.1304 5.30428M2.91305 5.30428V8.63519M20.1304 5.30428V8.17384M11.5217 16.7825H4.82609C3.76955 16.7825 2.91305 15.926 2.91305 14.8695V11.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19.3913 12.0676C19.3913 11.7845 19.2788 11.5129 19.0786 11.3127C18.8784 11.1125 18.6068 11 18.3237 11C18.0405 11 17.769 11.1125 17.5687 11.3127C17.3685 11.5129 17.256 11.7845 17.256 12.0676C16.643 12.3575 16.1204 12.8088 15.7442 13.373C15.3681 13.9372 15.1526 14.5932 15.1208 15.2706V16.872C15.0806 17.2039 14.963 17.5217 14.7776 17.7999C14.5922 18.078 14.344 18.3088 14.0531 18.4735H22.5942C22.3033 18.3088 22.0552 18.078 21.8697 17.7999C21.6843 17.5217 21.5668 17.2039 21.5266 16.872V15.2706C21.4948 14.5932 21.2793 13.9372 20.9031 13.373C20.527 12.8088 20.0044 12.3575 19.3913 12.0676Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19.9251 18.4734V19.0072C19.9251 19.4319 19.7564 19.8393 19.4561 20.1396C19.1558 20.4399 18.7484 20.6087 18.3237 20.6087C17.8989 20.6087 17.4916 20.4399 17.1913 20.1396C16.8909 19.8393 16.7222 19.4319 16.7222 19.0072V18.4734\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle\n cx={1.91304}\n cy={1.91304}\n r={1.31304}\n transform=\"matrix(-1 0 0 1 4.82608 8.17383)\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n </g>\n <defs>\n <clipPath id=\"ReminderEmailForHost_js__clip0_569_1288\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default ReminderEmailForHost;\n"],"file":"ReminderEmailForHost.js"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign || 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); }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import React from "react";
|
|
10
|
+
|
|
11
|
+
var ReminderSmsForClient = function ReminderSmsForClient(_ref) {
|
|
12
|
+
var _ref$size = _ref.size,
|
|
13
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
14
|
+
_ref$color = _ref.color,
|
|
15
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
16
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
17
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
18
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
19
|
+
|
|
20
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
21
|
+
width: size,
|
|
22
|
+
height: size,
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#ReminderSmsForClient_js__clip0_569_1290)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M3.22221 17.2222V17.6667C3.22221 18.0203 3.36269 18.3594 3.61274 18.6095C3.86279 18.8595 4.20193 19 4.55555 19C4.90918 19 5.24832 18.8595 5.49837 18.6095C5.74842 18.3594 5.88889 18.0203 5.88889 17.6667V17.2222",
|
|
29
|
+
stroke: color,
|
|
30
|
+
strokeWidth: strokeWidth,
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M3.66668 11.8889C3.66668 11.6531 3.76033 11.4271 3.92703 11.2604C4.09373 11.0937 4.31982 11 4.55557 11C4.79132 11 5.01742 11.0937 5.18412 11.2604C5.35082 11.4271 5.44447 11.6531 5.44447 11.8889C5.95487 12.1302 6.38998 12.5059 6.70316 12.9757C7.01634 13.4455 7.19578 13.9916 7.22225 14.5556V15.8889C7.2557 16.1652 7.35356 16.4298 7.50795 16.6614C7.66234 16.893 7.86895 17.0851 8.11115 17.2223H1C1.2422 17.0851 1.44881 16.893 1.6032 16.6614C1.75759 16.4298 1.85545 16.1652 1.88889 15.8889V14.5556C1.91536 13.9916 2.09481 13.4455 2.40798 12.9757C2.72116 12.5059 3.15627 12.1302 3.66668 11.8889Z",
|
|
35
|
+
stroke: color,
|
|
36
|
+
strokeWidth: strokeWidth,
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M14.8792 8H6.87923",
|
|
41
|
+
stroke: color,
|
|
42
|
+
strokeWidth: strokeWidth,
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
d: "M14.8792 11H9.87923",
|
|
47
|
+
stroke: color,
|
|
48
|
+
strokeWidth: strokeWidth,
|
|
49
|
+
strokeLinecap: "round",
|
|
50
|
+
strokeLinejoin: "round"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
d: "M2.87923 9V5.82353C2.87923 5.07468 3.17775 4.35651 3.7091 3.82699C4.24045 3.29748 4.96112 3 5.71257 3H17.0459C17.7973 3 18.518 3.29748 19.0494 3.82699C19.5807 4.35651 19.8792 5.07468 19.8792 5.82353V7V8.58824M9.87923 16.1765H10.4348L15.157 19V16.1765H17.0459C17.7973 16.1765 18.518 15.879 19.0494 15.3495C19.5807 14.82 19.8792 14.1018 19.8792 13.3529V11.5",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: strokeWidth,
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
58
|
+
cx: 19.9662,
|
|
59
|
+
cy: 10.0869,
|
|
60
|
+
r: 1.31304,
|
|
61
|
+
stroke: color,
|
|
62
|
+
strokeWidth: strokeWidth
|
|
63
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
64
|
+
id: "ReminderSmsForClient_js__clip0_569_1290"
|
|
65
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
66
|
+
width: 24,
|
|
67
|
+
height: 24,
|
|
68
|
+
fill: color
|
|
69
|
+
}))));
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export default ReminderSmsForClient;
|
|
73
|
+
//# sourceMappingURL=ReminderSmsForClient.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/icons/ReminderSmsForClient.js"],"names":["React","ReminderSmsForClient","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,oBAAoB,GAAG,SAAvBA,oBAAuB,OAKvB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,mNADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,ilBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,oBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,qBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,eA6BE;AACE,IAAA,CAAC,EAAC,qWADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA7BF,eAoCE;AACE,IAAA,EAAE,EAAE,OADN;AAEE,IAAA,EAAE,EAAE,OAFN;AAGE,IAAA,CAAC,EAAE,OAHL;AAIE,IAAA,MAAM,EAAED,KAJV;AAKE,IAAA,WAAW,EAAEC;AALf,IApCF,CADF,eA6CE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CA7CF,CADF;AAqDD,CA3DD;;AA4DA,eAAeF,oBAAf","sourcesContent":["import React from \"react\";\nconst ReminderSmsForClient = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#ReminderSmsForClient_js__clip0_569_1290)\">\n <path\n d=\"M3.22221 17.2222V17.6667C3.22221 18.0203 3.36269 18.3594 3.61274 18.6095C3.86279 18.8595 4.20193 19 4.55555 19C4.90918 19 5.24832 18.8595 5.49837 18.6095C5.74842 18.3594 5.88889 18.0203 5.88889 17.6667V17.2222\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.66668 11.8889C3.66668 11.6531 3.76033 11.4271 3.92703 11.2604C4.09373 11.0937 4.31982 11 4.55557 11C4.79132 11 5.01742 11.0937 5.18412 11.2604C5.35082 11.4271 5.44447 11.6531 5.44447 11.8889C5.95487 12.1302 6.38998 12.5059 6.70316 12.9757C7.01634 13.4455 7.19578 13.9916 7.22225 14.5556V15.8889C7.2557 16.1652 7.35356 16.4298 7.50795 16.6614C7.66234 16.893 7.86895 17.0851 8.11115 17.2223H1C1.2422 17.0851 1.44881 16.893 1.6032 16.6614C1.75759 16.4298 1.85545 16.1652 1.88889 15.8889V14.5556C1.91536 13.9916 2.09481 13.4455 2.40798 12.9757C2.72116 12.5059 3.15627 12.1302 3.66668 11.8889Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14.8792 8H6.87923\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14.8792 11H9.87923\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M2.87923 9V5.82353C2.87923 5.07468 3.17775 4.35651 3.7091 3.82699C4.24045 3.29748 4.96112 3 5.71257 3H17.0459C17.7973 3 18.518 3.29748 19.0494 3.82699C19.5807 4.35651 19.8792 5.07468 19.8792 5.82353V7V8.58824M9.87923 16.1765H10.4348L15.157 19V16.1765H17.0459C17.7973 16.1765 18.518 15.879 19.0494 15.3495C19.5807 14.82 19.8792 14.1018 19.8792 13.3529V11.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle\n cx={19.9662}\n cy={10.0869}\n r={1.31304}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n </g>\n <defs>\n <clipPath id=\"ReminderSmsForClient_js__clip0_569_1290\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default ReminderSmsForClient;\n"],"file":"ReminderSmsForClient.js"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign || 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); }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import React from "react";
|
|
10
|
+
|
|
11
|
+
var ReminderSmsForHost = function ReminderSmsForHost(_ref) {
|
|
12
|
+
var _ref$size = _ref.size,
|
|
13
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
14
|
+
_ref$color = _ref.color,
|
|
15
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
16
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
17
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
18
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
19
|
+
|
|
20
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
21
|
+
width: size,
|
|
22
|
+
height: size,
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#ReminderSmsForHost_js__clip0_569_1289)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M19.657 17.2222V17.6667C19.657 18.0203 19.5166 18.3594 19.2665 18.6095C19.0165 18.8595 18.6773 19 18.3237 19C17.9701 19 17.6309 18.8595 17.3809 18.6095C17.1308 18.3594 16.9903 18.0203 16.9903 17.6667V17.2222",
|
|
29
|
+
stroke: color,
|
|
30
|
+
strokeWidth: strokeWidth,
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M19.2126 11.8889C19.2126 11.6531 19.1189 11.4271 18.9522 11.2604C18.7855 11.0937 18.5594 11 18.3237 11C18.0879 11 17.8618 11.0937 17.6951 11.2604C17.5284 11.4271 17.4348 11.6531 17.4348 11.8889C16.9244 12.1302 16.4893 12.5059 16.1761 12.9757C15.8629 13.4455 15.6835 13.9916 15.657 14.5556V15.8889C15.6235 16.1652 15.5257 16.4298 15.3713 16.6614C15.2169 16.893 15.0103 17.0851 14.7681 17.2223H21.8792C21.637 17.0851 21.4304 16.893 21.276 16.6614C21.1217 16.4298 21.0238 16.1652 20.9903 15.8889V14.5556C20.9639 13.9916 20.7844 13.4455 20.4713 12.9757C20.1581 12.5059 19.723 12.1302 19.2126 11.8889Z",
|
|
35
|
+
stroke: color,
|
|
36
|
+
strokeWidth: strokeWidth,
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M8 8H16",
|
|
41
|
+
stroke: color,
|
|
42
|
+
strokeWidth: strokeWidth,
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
d: "M8 11H13",
|
|
47
|
+
stroke: color,
|
|
48
|
+
strokeWidth: strokeWidth,
|
|
49
|
+
strokeLinecap: "round",
|
|
50
|
+
strokeLinejoin: "round"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
d: "M20 9V5.82353C20 5.07468 19.7015 4.35651 19.1701 3.82699C18.6388 3.29748 17.9181 3 17.1667 3H5.83333C5.08189 3 4.36122 3.29748 3.82986 3.82699C3.29851 4.35651 3 5.07468 3 5.82353V7V8.58824M13 16.1765H12.4444L7.72222 19V16.1765H5.83333C5.08189 16.1765 4.36122 15.879 3.82986 15.3495C3.29851 14.82 3 14.1018 3 13.3529V11.5",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: strokeWidth,
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
58
|
+
cx: 1.91304,
|
|
59
|
+
cy: 1.91304,
|
|
60
|
+
r: 1.31304,
|
|
61
|
+
transform: "matrix(-1 0 0 1 4.82608 8.17383)",
|
|
62
|
+
stroke: color,
|
|
63
|
+
strokeWidth: strokeWidth
|
|
64
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
65
|
+
id: "ReminderSmsForHost_js__clip0_569_1289"
|
|
66
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
67
|
+
width: 24,
|
|
68
|
+
height: 24,
|
|
69
|
+
fill: color
|
|
70
|
+
}))));
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export default ReminderSmsForHost;
|
|
74
|
+
//# sourceMappingURL=ReminderSmsForHost.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/icons/ReminderSmsForHost.js"],"names":["React","ReminderSmsForHost","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,kBAAkB,GAAG,SAArBA,kBAAqB,OAKrB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,iNADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,slBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,SADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,eA6BE;AACE,IAAA,CAAC,EAAC,kUADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA7BF,eAoCE;AACE,IAAA,EAAE,EAAE,OADN;AAEE,IAAA,EAAE,EAAE,OAFN;AAGE,IAAA,CAAC,EAAE,OAHL;AAIE,IAAA,SAAS,EAAC,kCAJZ;AAKE,IAAA,MAAM,EAAED,KALV;AAME,IAAA,WAAW,EAAEC;AANf,IApCF,CADF,eA8CE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CA9CF,CADF;AAsDD,CA5DD;;AA6DA,eAAeF,kBAAf","sourcesContent":["import React from \"react\";\nconst ReminderSmsForHost = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#ReminderSmsForHost_js__clip0_569_1289)\">\n <path\n d=\"M19.657 17.2222V17.6667C19.657 18.0203 19.5166 18.3594 19.2665 18.6095C19.0165 18.8595 18.6773 19 18.3237 19C17.9701 19 17.6309 18.8595 17.3809 18.6095C17.1308 18.3594 16.9903 18.0203 16.9903 17.6667V17.2222\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19.2126 11.8889C19.2126 11.6531 19.1189 11.4271 18.9522 11.2604C18.7855 11.0937 18.5594 11 18.3237 11C18.0879 11 17.8618 11.0937 17.6951 11.2604C17.5284 11.4271 17.4348 11.6531 17.4348 11.8889C16.9244 12.1302 16.4893 12.5059 16.1761 12.9757C15.8629 13.4455 15.6835 13.9916 15.657 14.5556V15.8889C15.6235 16.1652 15.5257 16.4298 15.3713 16.6614C15.2169 16.893 15.0103 17.0851 14.7681 17.2223H21.8792C21.637 17.0851 21.4304 16.893 21.276 16.6614C21.1217 16.4298 21.0238 16.1652 20.9903 15.8889V14.5556C20.9639 13.9916 20.7844 13.4455 20.4713 12.9757C20.1581 12.5059 19.723 12.1302 19.2126 11.8889Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8 8H16\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8 11H13\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M20 9V5.82353C20 5.07468 19.7015 4.35651 19.1701 3.82699C18.6388 3.29748 17.9181 3 17.1667 3H5.83333C5.08189 3 4.36122 3.29748 3.82986 3.82699C3.29851 4.35651 3 5.07468 3 5.82353V7V8.58824M13 16.1765H12.4444L7.72222 19V16.1765H5.83333C5.08189 16.1765 4.36122 15.879 3.82986 15.3495C3.29851 14.82 3 14.1018 3 13.3529V11.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle\n cx={1.91304}\n cy={1.91304}\n r={1.31304}\n transform=\"matrix(-1 0 0 1 4.82608 8.17383)\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n </g>\n <defs>\n <clipPath id=\"ReminderSmsForHost_js__clip0_569_1289\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default ReminderSmsForHost;\n"],"file":"ReminderSmsForHost.js"}
|
package/dist/icons/index.js
CHANGED
|
@@ -18,11 +18,15 @@ import AspectRatio from "./AspectRatio";
|
|
|
18
18
|
import Assign from "./Assign";
|
|
19
19
|
import Attachment from "./Attachment";
|
|
20
20
|
import AuditLogs from "./AuditLogs";
|
|
21
|
+
import AutoCc from "./AutoCc";
|
|
21
22
|
import Bank from "./Bank";
|
|
22
23
|
import Billing from "./Billing";
|
|
23
24
|
import Blockquote from "./Blockquote";
|
|
24
25
|
import BoardView from "./BoardView";
|
|
25
26
|
import Book from "./Book";
|
|
27
|
+
import BookingCancellationEmailForClient from "./BookingCancellationEmailForClient";
|
|
28
|
+
import BookingConfirmationEmailForClient from "./BookingConfirmationEmailForClient";
|
|
29
|
+
import BookingConfirmationEmailForHost from "./BookingConfirmationEmailForHost";
|
|
26
30
|
import Bookmark from "./Bookmark";
|
|
27
31
|
import BookOpen from "./BookOpen";
|
|
28
32
|
import BorderDisable from "./BorderDisable";
|
|
@@ -85,6 +89,7 @@ import Cursor from "./Cursor";
|
|
|
85
89
|
import CustomDomain from "./CustomDomain";
|
|
86
90
|
import Customers from "./Customers";
|
|
87
91
|
import CustomField from "./CustomField";
|
|
92
|
+
import CustomiseNotification from "./CustomiseNotification";
|
|
88
93
|
import Customize from "./Customize";
|
|
89
94
|
import CustomSize from "./CustomSize";
|
|
90
95
|
import Dashboard from "./Dashboard";
|
|
@@ -150,6 +155,7 @@ import FullScreen from "./FullScreen";
|
|
|
150
155
|
import Gif from "./Gif";
|
|
151
156
|
import Gift from "./Gift";
|
|
152
157
|
import GitMerge from "./GitMerge";
|
|
158
|
+
import GlobalAutoCc from "./GlobalAutoCc";
|
|
153
159
|
import Globe from "./Globe";
|
|
154
160
|
import Goal from "./Goal";
|
|
155
161
|
import Graph from "./Graph";
|
|
@@ -264,6 +270,7 @@ import NewChat from "./NewChat";
|
|
|
264
270
|
import NoReportsData from "./NoReportsData";
|
|
265
271
|
import Notes from "./Notes";
|
|
266
272
|
import Notification from "./Notification";
|
|
273
|
+
import NotificationTemplates from "./NotificationTemplates";
|
|
267
274
|
import Os from "./Os";
|
|
268
275
|
import PaddingAll from "./PaddingAll";
|
|
269
276
|
import PaddingBottom from "./PaddingBottom";
|
|
@@ -298,6 +305,10 @@ import Redirection from "./Redirection";
|
|
|
298
305
|
import RedirectUrl from "./RedirectUrl";
|
|
299
306
|
import Redo from "./Redo";
|
|
300
307
|
import Refresh from "./Refresh";
|
|
308
|
+
import ReminderEmailForClient from "./ReminderEmailForClient";
|
|
309
|
+
import ReminderEmailForHost from "./ReminderEmailForHost";
|
|
310
|
+
import ReminderSmsForClient from "./ReminderSmsForClient";
|
|
311
|
+
import ReminderSmsForHost from "./ReminderSmsForHost";
|
|
301
312
|
import RemoveCircle from "./RemoveCircle";
|
|
302
313
|
import Reorder from "./Reorder";
|
|
303
314
|
import Repeat from "./Repeat";
|
|
@@ -426,5 +437,5 @@ import Workflows from "./Workflows";
|
|
|
426
437
|
import WorkspaceInfo from "./WorkspaceInfo";
|
|
427
438
|
import YesNo from "./YesNo";
|
|
428
439
|
import Youtube from "./Youtube";
|
|
429
|
-
export { AccessControl, ActivityLog, AddCircle, AddMenu, AddRectangle, Address, Agents, AgentStatus, ApiKeys, ApiTemplates, Apple, Approval, AppSwitcher, Archive, Articles, Ascending, AspectRatio, Assign, Attachment, AuditLogs, Bank, Billing, Blockquote, BoardView, Book, Bookmark, BookOpen, BorderDisable, BorderEnable, Braces, Browser, Bug, Building, Bulb, BusinessHour, Calendar, CalendarHoliday, Camera, CannedResponses, Captcha, CategoriesSettings, Category, CenterAlign, Certificate, ChatOffline, Chat, ChatBubble, ChatEmpty, ChatNotification, ChatQuestions, Check, Checkbox, CheckboxInactive, CheckCircle, Checkmark, Chrome, ClearCache, Clock, Close, CloseCircle, ClosedPullRequest, Code, CodeBlock, Collapse, ColorPicker, Column, ColumnToLeft, ColumnToRight, Community, CompanyInfo, CompanyTags, Computer, Concat, Configure, ContactBook, ContactField, ContactTags, Contracts, Copy, CreditCard, Crown, Css3, Cta, Cursor, CustomDomain, Customers, CustomField, Customize, CustomSize, Dashboard, Database, DeleteColumn, DeleteRow, DeleteTable, Delete, Dependent, Descending, Design, Divide, Divider, DocumentationSync, Domain, DoubleCheck, DownArrowCircle, Down, DownArrow, Download, Draft, Drag, Dropdown, DropdownClosed, Edit, EditSchedule, Email, EmailNotification, EmailsBanned, EmailSent, EmailSync, EmailTemplates, EntireScreen, Equals, Error, ExcludedDomains, Expand, ExpandSize, ExpenseCategories, ExternalLink, Eye, Facebook, Favorite, FeatureSettings, Field, FileDownload, File, FileGeneric, FileUpload, FilterAz, Filter, Flag, Flash, FlowChart, Focus, Folder, FolderFill, FolderOpenFill, Form, FormClosed, Forward, FullScreen, Gif, Gift, GitMerge, Globe, Goal, Graph, Group, HamburgerMenu, Hash, HashChecked, HashInSet, Header, Heart, Help, Hide, Highlight, History, Home, HourFormat, HourGlass, Hours, Html, ImageUpload, Image, ImportTimesheet, Inactive, Inbox, IndeterminateCircle, Info, InfoRound, Input, InsertColumn, InsertRow, IntroPages, InvalidUrl, Invoice, InvoiceSettings, IpAddress, IpRestriction, Keyboard, Layers, LeftArrowCircle, Left, LeftAlign, LeftArrow, Link, Linkedin, ListDot, ListNumber, List, ListDetails, ListView, Loading, Location, Lock, LockMessage, MailUnread, MailSend, ManageCalendar, ManageTemplates, MappedField, MarginAll, MarginBottom, MarginLeft, MarginRight, MarginTop, MarginX, MarginY, Matrix, MatrixDots, MatrixDotsClear, MediaVideo, MeetingLimit, MeetingReminder, MenuHorizontal, MenuVertical, MenuLayout, MenuSquare, MergeSplit, Merge, MergedPullRequest, Message, MessageBubble, MessageSquare, Mic, MicOff, Minimize, Minus, Mobile, MobileAndDesktopApps, Moon, MoveToBottom, MoveToTop, Movie, MultipleChoice, MyPreferences, NavLinks, NeetoAnalytics, NeetoCal, NeetoChangelog, NeetoChat, NeetoDesk, NeetoEngage, NeetoForm, NeetoIcon, NeetoInsights, NeetoInterview, NeetoInvisible, NeetoKb, NeetoQuiz, NeetoReplay, NeetoWireframe, NeutralFaceGrey, NewChat, NoReportsData, Notes, Notification, Os, PaddingAll, PaddingBottom, PaddingLeft, PaddingRight, PaddingTop, PaddingX, PaddingY, Paragraph, Pause, Phone, PhoneRing, Pin, Pipeline, Play, Plus, Prepend, PreventDuplicate, Print, ProductSwitcher, Puzzle, QrCode, Quote, Radio, RadioInactive, Rating, RatingFilled, RecurringInvoice, RecurringMeeting, Redirect, Redirection, RedirectUrl, Redo, Refresh, RemoveCircle, Reorder, Repeat, Reply, Report, Ribbon, RightArrowCircle, Right, RightAlign, RightArrow, Robot, RoutingForms, SadFaceGrey, Scale, Score, Search, Security, Send, SendPlane, Seo, Settings, SettingsChecked, Setup, Shapes, ShapeSwitcher, Share, ShoppingCart, SidebarClose, SidebarOpen, SlaPolicies, SmileFaceGrey, Smiley, SmsTemplates, Sparkle, SpecificWindow, Split, SplitPayment, StartWeekOn, Status, Subdomain, Suitcase, Sun, Survey, Swap, Tablet, Tabs, Tag, Tags, TaskOutcome, TaskTags, TaskType, Tax, TaxDetails, Taxonomy, Templates, Terms, TextBold, TextCross, TextItalic, Text, TextH1, TextH2, TextH3, TextH4, TextH5, TextLines, TextP, TextSize, ThankYouPage, TicketField, Tickets, TicketSettings, TicketTags, TimeLock, TimesheetVerifications, TimeTracking, ToggleHeaderRow, Transaction, Transcript, Translate, Twitter, Ubuntu, Underline, Undo, Unlink, Unlock, UpArrowCircle, Up, UpArrow, Upload, UserAdd, UserCircle, UserRemove, User, UserInfo, UserNotification, UserRole, UserRoundedRect, UserSettings, UserStar, UserTags, VerticalBottom, VerticalCenter, VerticalTop, Video, VideoAccessControl, VideoEdit, VideoOff, Views, ViewSettings, Volume, Volume0, Volume100, Volume25, Volume50, Volume75, VolumeOutline, VolumeOutline0, WarningFilled, Warning, Web, Whatsapp, WidgetModes, WidgetVisibility, Workflows, WorkspaceInfo, YesNo, Youtube };
|
|
440
|
+
export { AccessControl, ActivityLog, AddCircle, AddMenu, AddRectangle, Address, Agents, AgentStatus, ApiKeys, ApiTemplates, Apple, Approval, AppSwitcher, Archive, Articles, Ascending, AspectRatio, Assign, Attachment, AuditLogs, AutoCc, Bank, Billing, Blockquote, BoardView, Book, BookingCancellationEmailForClient, BookingConfirmationEmailForClient, BookingConfirmationEmailForHost, Bookmark, BookOpen, BorderDisable, BorderEnable, Braces, Browser, Bug, Building, Bulb, BusinessHour, Calendar, CalendarHoliday, Camera, CannedResponses, Captcha, CategoriesSettings, Category, CenterAlign, Certificate, ChatOffline, Chat, ChatBubble, ChatEmpty, ChatNotification, ChatQuestions, Check, Checkbox, CheckboxInactive, CheckCircle, Checkmark, Chrome, ClearCache, Clock, Close, CloseCircle, ClosedPullRequest, Code, CodeBlock, Collapse, ColorPicker, Column, ColumnToLeft, ColumnToRight, Community, CompanyInfo, CompanyTags, Computer, Concat, Configure, ContactBook, ContactField, ContactTags, Contracts, Copy, CreditCard, Crown, Css3, Cta, Cursor, CustomDomain, Customers, CustomField, CustomiseNotification, Customize, CustomSize, Dashboard, Database, DeleteColumn, DeleteRow, DeleteTable, Delete, Dependent, Descending, Design, Divide, Divider, DocumentationSync, Domain, DoubleCheck, DownArrowCircle, Down, DownArrow, Download, Draft, Drag, Dropdown, DropdownClosed, Edit, EditSchedule, Email, EmailNotification, EmailsBanned, EmailSent, EmailSync, EmailTemplates, EntireScreen, Equals, Error, ExcludedDomains, Expand, ExpandSize, ExpenseCategories, ExternalLink, Eye, Facebook, Favorite, FeatureSettings, Field, FileDownload, File, FileGeneric, FileUpload, FilterAz, Filter, Flag, Flash, FlowChart, Focus, Folder, FolderFill, FolderOpenFill, Form, FormClosed, Forward, FullScreen, Gif, Gift, GitMerge, GlobalAutoCc, Globe, Goal, Graph, Group, HamburgerMenu, Hash, HashChecked, HashInSet, Header, Heart, Help, Hide, Highlight, History, Home, HourFormat, HourGlass, Hours, Html, ImageUpload, Image, ImportTimesheet, Inactive, Inbox, IndeterminateCircle, Info, InfoRound, Input, InsertColumn, InsertRow, IntroPages, InvalidUrl, Invoice, InvoiceSettings, IpAddress, IpRestriction, Keyboard, Layers, LeftArrowCircle, Left, LeftAlign, LeftArrow, Link, Linkedin, ListDot, ListNumber, List, ListDetails, ListView, Loading, Location, Lock, LockMessage, MailUnread, MailSend, ManageCalendar, ManageTemplates, MappedField, MarginAll, MarginBottom, MarginLeft, MarginRight, MarginTop, MarginX, MarginY, Matrix, MatrixDots, MatrixDotsClear, MediaVideo, MeetingLimit, MeetingReminder, MenuHorizontal, MenuVertical, MenuLayout, MenuSquare, MergeSplit, Merge, MergedPullRequest, Message, MessageBubble, MessageSquare, Mic, MicOff, Minimize, Minus, Mobile, MobileAndDesktopApps, Moon, MoveToBottom, MoveToTop, Movie, MultipleChoice, MyPreferences, NavLinks, NeetoAnalytics, NeetoCal, NeetoChangelog, NeetoChat, NeetoDesk, NeetoEngage, NeetoForm, NeetoIcon, NeetoInsights, NeetoInterview, NeetoInvisible, NeetoKb, NeetoQuiz, NeetoReplay, NeetoWireframe, NeutralFaceGrey, NewChat, NoReportsData, Notes, Notification, NotificationTemplates, Os, PaddingAll, PaddingBottom, PaddingLeft, PaddingRight, PaddingTop, PaddingX, PaddingY, Paragraph, Pause, Phone, PhoneRing, Pin, Pipeline, Play, Plus, Prepend, PreventDuplicate, Print, ProductSwitcher, Puzzle, QrCode, Quote, Radio, RadioInactive, Rating, RatingFilled, RecurringInvoice, RecurringMeeting, Redirect, Redirection, RedirectUrl, Redo, Refresh, ReminderEmailForClient, ReminderEmailForHost, ReminderSmsForClient, ReminderSmsForHost, RemoveCircle, Reorder, Repeat, Reply, Report, Ribbon, RightArrowCircle, Right, RightAlign, RightArrow, Robot, RoutingForms, SadFaceGrey, Scale, Score, Search, Security, Send, SendPlane, Seo, Settings, SettingsChecked, Setup, Shapes, ShapeSwitcher, Share, ShoppingCart, SidebarClose, SidebarOpen, SlaPolicies, SmileFaceGrey, Smiley, SmsTemplates, Sparkle, SpecificWindow, Split, SplitPayment, StartWeekOn, Status, Subdomain, Suitcase, Sun, Survey, Swap, Tablet, Tabs, Tag, Tags, TaskOutcome, TaskTags, TaskType, Tax, TaxDetails, Taxonomy, Templates, Terms, TextBold, TextCross, TextItalic, Text, TextH1, TextH2, TextH3, TextH4, TextH5, TextLines, TextP, TextSize, ThankYouPage, TicketField, Tickets, TicketSettings, TicketTags, TimeLock, TimesheetVerifications, TimeTracking, ToggleHeaderRow, Transaction, Transcript, Translate, Twitter, Ubuntu, Underline, Undo, Unlink, Unlock, UpArrowCircle, Up, UpArrow, Upload, UserAdd, UserCircle, UserRemove, User, UserInfo, UserNotification, UserRole, UserRoundedRect, UserSettings, UserStar, UserTags, VerticalBottom, VerticalCenter, VerticalTop, Video, VideoAccessControl, VideoEdit, VideoOff, Views, ViewSettings, Volume, Volume0, Volume100, Volume25, Volume50, Volume75, VolumeOutline, VolumeOutline0, WarningFilled, Warning, Web, Whatsapp, WidgetModes, WidgetVisibility, Workflows, WorkspaceInfo, YesNo, Youtube };
|
|
430
441
|
//# sourceMappingURL=index.js.map
|