@bigbinary/neeto-icons 1.19.1 → 1.20.0
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/CustomSize.js +93 -0
- package/dist/cjs/icons/CustomSize.js.map +1 -0
- package/dist/cjs/icons/DeleteColumn.js +57 -0
- package/dist/cjs/icons/DeleteColumn.js.map +1 -0
- package/dist/cjs/icons/DeleteRow.js +58 -0
- package/dist/cjs/icons/DeleteRow.js.map +1 -0
- package/dist/cjs/icons/DeleteTable.js +50 -0
- package/dist/cjs/icons/DeleteTable.js.map +1 -0
- package/dist/cjs/icons/EntireScreen.js +55 -0
- package/dist/cjs/icons/EntireScreen.js.map +1 -0
- package/dist/cjs/icons/InsertColumn.js +57 -0
- package/dist/cjs/icons/InsertColumn.js.map +1 -0
- package/dist/cjs/icons/InsertRow.js +58 -0
- package/dist/cjs/icons/InsertRow.js.map +1 -0
- package/dist/cjs/icons/MergeSplit.js +60 -0
- package/dist/cjs/icons/MergeSplit.js.map +1 -0
- package/dist/cjs/icons/MicOff.js +68 -0
- package/dist/cjs/icons/MicOff.js.map +1 -0
- package/dist/cjs/icons/SpecificWindow.js +68 -0
- package/dist/cjs/icons/SpecificWindow.js.map +1 -0
- package/dist/cjs/icons/ToggleHeaderRow.js +75 -0
- package/dist/cjs/icons/ToggleHeaderRow.js.map +1 -0
- package/dist/cjs/icons/VideoOff.js +56 -0
- package/dist/cjs/icons/VideoOff.js.map +1 -0
- package/dist/cjs/icons/index.js +96 -0
- package/dist/cjs/icons/index.js.map +1 -1
- package/dist/icons/CustomSize.js +83 -0
- package/dist/icons/CustomSize.js.map +1 -0
- package/dist/icons/DeleteColumn.js +47 -0
- package/dist/icons/DeleteColumn.js.map +1 -0
- package/dist/icons/DeleteRow.js +48 -0
- package/dist/icons/DeleteRow.js.map +1 -0
- package/dist/icons/DeleteTable.js +40 -0
- package/dist/icons/DeleteTable.js.map +1 -0
- package/dist/icons/EntireScreen.js +45 -0
- package/dist/icons/EntireScreen.js.map +1 -0
- package/dist/icons/InsertColumn.js +47 -0
- package/dist/icons/InsertColumn.js.map +1 -0
- package/dist/icons/InsertRow.js +48 -0
- package/dist/icons/InsertRow.js.map +1 -0
- package/dist/icons/MergeSplit.js +50 -0
- package/dist/icons/MergeSplit.js.map +1 -0
- package/dist/icons/MicOff.js +58 -0
- package/dist/icons/MicOff.js.map +1 -0
- package/dist/icons/SpecificWindow.js +58 -0
- package/dist/icons/SpecificWindow.js.map +1 -0
- package/dist/icons/ToggleHeaderRow.js +65 -0
- package/dist/icons/ToggleHeaderRow.js.map +1 -0
- package/dist/icons/VideoOff.js +46 -0
- package/dist/icons/VideoOff.js.map +1 -0
- package/dist/icons/index.js +13 -1
- package/dist/icons/index.js.map +1 -1
- package/icons.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
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); }
|
|
15
|
+
|
|
16
|
+
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; }
|
|
17
|
+
|
|
18
|
+
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; }
|
|
19
|
+
|
|
20
|
+
var SpecificWindow = function SpecificWindow(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M3 7C3 6.46957 3.21071 5.96086 3.58579 5.58579C3.96086 5.21071 4.46957 5 5 5H19C19.5304 5 20.0391 5.21071 20.4142 5.58579C20.7893 5.96086 21 6.46957 21 7V17C21 17.5304 20.7893 18.0391 20.4142 18.4142C20.0391 18.7893 19.5304 19 19 19H5C4.46957 19 3.96086 18.7893 3.58579 18.4142C3.21071 18.0391 3 17.5304 3 17V7Z",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M8.01001 7.5H8.02001",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M10 7.5H10.01",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round",
|
|
51
|
+
strokeLinejoin: "round"
|
|
52
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
53
|
+
d: "M6 7.5H6.01",
|
|
54
|
+
stroke: color,
|
|
55
|
+
strokeWidth: strokeWidth,
|
|
56
|
+
strokeLinecap: "round",
|
|
57
|
+
strokeLinejoin: "round"
|
|
58
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
59
|
+
d: "M3.5 10H21",
|
|
60
|
+
stroke: color,
|
|
61
|
+
strokeWidth: strokeWidth,
|
|
62
|
+
strokeLinecap: "round"
|
|
63
|
+
}));
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
var _default = SpecificWindow;
|
|
67
|
+
exports.default = _default;
|
|
68
|
+
//# sourceMappingURL=SpecificWindow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/SpecificWindow.js"],"names":["SpecificWindow","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,cAAc,GAAG,SAAjBA,cAAiB,OAKjB;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;AACE,IAAA,CAAC,EAAC,yTADJ;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,sBADJ;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,eADJ;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,aADJ;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,YADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA7BF,CADF;AAsCD,CA5CD;;eA6CeH,c","sourcesContent":["import React from \"react\";\nconst SpecificWindow = ({\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 <path\n d=\"M3 7C3 6.46957 3.21071 5.96086 3.58579 5.58579C3.96086 5.21071 4.46957 5 5 5H19C19.5304 5 20.0391 5.21071 20.4142 5.58579C20.7893 5.96086 21 6.46957 21 7V17C21 17.5304 20.7893 18.0391 20.4142 18.4142C20.0391 18.7893 19.5304 19 19 19H5C4.46957 19 3.96086 18.7893 3.58579 18.4142C3.21071 18.0391 3 17.5304 3 17V7Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8.01001 7.5H8.02001\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M10 7.5H10.01\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6 7.5H6.01\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 10H21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default SpecificWindow;\n"],"file":"SpecificWindow.js"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
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); }
|
|
15
|
+
|
|
16
|
+
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; }
|
|
17
|
+
|
|
18
|
+
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; }
|
|
19
|
+
|
|
20
|
+
var ToggleHeaderRow = function ToggleHeaderRow(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21Z",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M3 10H20.5",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round"
|
|
45
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
46
|
+
d: "M10 21L10 10",
|
|
47
|
+
stroke: color,
|
|
48
|
+
strokeWidth: strokeWidth,
|
|
49
|
+
strokeLinecap: "round"
|
|
50
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
51
|
+
d: "M4.5 9.52628L8.5 3",
|
|
52
|
+
stroke: color,
|
|
53
|
+
strokeWidth: strokeWidth,
|
|
54
|
+
strokeLinecap: "round"
|
|
55
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
56
|
+
d: "M8.5 9.52628L12.5 3",
|
|
57
|
+
stroke: color,
|
|
58
|
+
strokeWidth: strokeWidth,
|
|
59
|
+
strokeLinecap: "round"
|
|
60
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
61
|
+
d: "M12.5 9.52628L16.5 3",
|
|
62
|
+
stroke: color,
|
|
63
|
+
strokeWidth: strokeWidth,
|
|
64
|
+
strokeLinecap: "round"
|
|
65
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
66
|
+
d: "M16.5 9.44385L19.7855 4.08239",
|
|
67
|
+
stroke: color,
|
|
68
|
+
strokeWidth: strokeWidth,
|
|
69
|
+
strokeLinecap: "round"
|
|
70
|
+
}));
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
var _default = ToggleHeaderRow;
|
|
74
|
+
exports.default = _default;
|
|
75
|
+
//# sourceMappingURL=ToggleHeaderRow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/ToggleHeaderRow.js"],"names":["ToggleHeaderRow","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,eAAe,GAAG,SAAlBA,eAAkB,OAKlB;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;AACE,IAAA,CAAC,EAAC,qdADJ;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,YADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IARF,eAcE;AACE,IAAA,CAAC,EAAC,cADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAdF,eAoBE;AACE,IAAA,CAAC,EAAC,oBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IApBF,eA0BE;AACE,IAAA,CAAC,EAAC,qBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA1BF,eAgCE;AACE,IAAA,CAAC,EAAC,sBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAhCF,eAsCE;AACE,IAAA,CAAC,EAAC,+BADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAtCF,CADF;AA+CD,CArDD;;eAsDeH,e","sourcesContent":["import React from \"react\";\nconst ToggleHeaderRow = ({\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 <path\n d=\"M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3 10H20.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M10 21L10 10\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M4.5 9.52628L8.5 3\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M8.5 9.52628L12.5 3\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M12.5 9.52628L16.5 3\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M16.5 9.44385L19.7855 4.08239\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default ToggleHeaderRow;\n"],"file":"ToggleHeaderRow.js"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
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); }
|
|
15
|
+
|
|
16
|
+
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; }
|
|
17
|
+
|
|
18
|
+
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; }
|
|
19
|
+
|
|
20
|
+
var VideoOff = function VideoOff(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M15 10L19.553 7.724C19.7054 7.64783 19.8748 7.61188 20.045 7.61954C20.2152 7.62721 20.3806 7.67824 20.5256 7.7678C20.6706 7.85736 20.7902 7.98247 20.8733 8.13127C20.9563 8.28006 20.9999 8.44761 21 8.618V15.382C20.9999 15.5524 20.9563 15.7199 20.8733 15.8687C20.7902 16.0175 20.6706 16.1426 20.5256 16.2322C20.3806 16.3218 20.2152 16.3728 20.045 16.3805C19.8748 16.3881 19.7054 16.3522 19.553 16.276L15 14V10Z",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M10 6H13C13.5304 6 14.0391 6.21071 14.4142 6.58579C14.7893 6.96086 15 7.46957 15 8V14M6 6H5C4.46957 6 3.96086 6.21071 3.58579 6.58579C3.21071 6.96086 3 7.46957 3 8V16C3 16.5304 3.21071 17.0391 3.58579 17.4142C3.96086 17.7893 4.46957 18 5 18H13C13.5304 18 14.0391 17.7893 14.4142 17.4142C14.5389 17.2895 14.6454 17.1501 14.7321 17",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M4 3.5L21 20",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round"
|
|
51
|
+
}));
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
var _default = VideoOff;
|
|
55
|
+
exports.default = _default;
|
|
56
|
+
//# sourceMappingURL=VideoOff.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/VideoOff.js"],"names":["VideoOff","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,QAAQ,GAAG,SAAXA,QAAW,OAKX;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;AACE,IAAA,CAAC,EAAC,0ZADJ;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,2UADJ;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,cADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAfF,CADF;AAwBD,CA9BD;;eA+BeH,Q","sourcesContent":["import React from \"react\";\nconst VideoOff = ({\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 <path\n d=\"M15 10L19.553 7.724C19.7054 7.64783 19.8748 7.61188 20.045 7.61954C20.2152 7.62721 20.3806 7.67824 20.5256 7.7678C20.6706 7.85736 20.7902 7.98247 20.8733 8.13127C20.9563 8.28006 20.9999 8.44761 21 8.618V15.382C20.9999 15.5524 20.9563 15.7199 20.8733 15.8687C20.7902 16.0175 20.6706 16.1426 20.5256 16.2322C20.3806 16.3218 20.2152 16.3728 20.045 16.3805C19.8748 16.3881 19.7054 16.3522 19.553 16.276L15 14V10Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M10 6H13C13.5304 6 14.0391 6.21071 14.4142 6.58579C14.7893 6.96086 15 7.46957 15 8V14M6 6H5C4.46957 6 3.96086 6.21071 3.58579 6.58579C3.21071 6.96086 3 7.46957 3 8V16C3 16.5304 3.21071 17.0391 3.58579 17.4142C3.96086 17.7893 4.46957 18 5 18H13C13.5304 18 14.0391 17.7893 14.4142 17.4142C14.5389 17.2895 14.6454 17.1501 14.7321 17\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4 3.5L21 20\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default VideoOff;\n"],"file":"VideoOff.js"}
|
package/dist/cjs/icons/index.js
CHANGED
|
@@ -309,6 +309,12 @@ Object.defineProperty(exports, "CustomDomain", {
|
|
|
309
309
|
return _CustomDomain.default;
|
|
310
310
|
}
|
|
311
311
|
});
|
|
312
|
+
Object.defineProperty(exports, "CustomSize", {
|
|
313
|
+
enumerable: true,
|
|
314
|
+
get: function get() {
|
|
315
|
+
return _CustomSize.default;
|
|
316
|
+
}
|
|
317
|
+
});
|
|
312
318
|
Object.defineProperty(exports, "Customers", {
|
|
313
319
|
enumerable: true,
|
|
314
320
|
get: function get() {
|
|
@@ -339,6 +345,24 @@ Object.defineProperty(exports, "Delete", {
|
|
|
339
345
|
return _Delete.default;
|
|
340
346
|
}
|
|
341
347
|
});
|
|
348
|
+
Object.defineProperty(exports, "DeleteColumn", {
|
|
349
|
+
enumerable: true,
|
|
350
|
+
get: function get() {
|
|
351
|
+
return _DeleteColumn.default;
|
|
352
|
+
}
|
|
353
|
+
});
|
|
354
|
+
Object.defineProperty(exports, "DeleteRow", {
|
|
355
|
+
enumerable: true,
|
|
356
|
+
get: function get() {
|
|
357
|
+
return _DeleteRow.default;
|
|
358
|
+
}
|
|
359
|
+
});
|
|
360
|
+
Object.defineProperty(exports, "DeleteTable", {
|
|
361
|
+
enumerable: true,
|
|
362
|
+
get: function get() {
|
|
363
|
+
return _DeleteTable.default;
|
|
364
|
+
}
|
|
365
|
+
});
|
|
342
366
|
Object.defineProperty(exports, "Design", {
|
|
343
367
|
enumerable: true,
|
|
344
368
|
get: function get() {
|
|
@@ -423,6 +447,12 @@ Object.defineProperty(exports, "EmailSent", {
|
|
|
423
447
|
return _EmailSent.default;
|
|
424
448
|
}
|
|
425
449
|
});
|
|
450
|
+
Object.defineProperty(exports, "EntireScreen", {
|
|
451
|
+
enumerable: true,
|
|
452
|
+
get: function get() {
|
|
453
|
+
return _EntireScreen.default;
|
|
454
|
+
}
|
|
455
|
+
});
|
|
426
456
|
Object.defineProperty(exports, "Error", {
|
|
427
457
|
enumerable: true,
|
|
428
458
|
get: function get() {
|
|
@@ -699,6 +729,18 @@ Object.defineProperty(exports, "Input", {
|
|
|
699
729
|
return _Input.default;
|
|
700
730
|
}
|
|
701
731
|
});
|
|
732
|
+
Object.defineProperty(exports, "InsertColumn", {
|
|
733
|
+
enumerable: true,
|
|
734
|
+
get: function get() {
|
|
735
|
+
return _InsertColumn.default;
|
|
736
|
+
}
|
|
737
|
+
});
|
|
738
|
+
Object.defineProperty(exports, "InsertRow", {
|
|
739
|
+
enumerable: true,
|
|
740
|
+
get: function get() {
|
|
741
|
+
return _InsertRow.default;
|
|
742
|
+
}
|
|
743
|
+
});
|
|
702
744
|
Object.defineProperty(exports, "Invoice", {
|
|
703
745
|
enumerable: true,
|
|
704
746
|
get: function get() {
|
|
@@ -861,6 +903,12 @@ Object.defineProperty(exports, "Merge", {
|
|
|
861
903
|
return _Merge.default;
|
|
862
904
|
}
|
|
863
905
|
});
|
|
906
|
+
Object.defineProperty(exports, "MergeSplit", {
|
|
907
|
+
enumerable: true,
|
|
908
|
+
get: function get() {
|
|
909
|
+
return _MergeSplit.default;
|
|
910
|
+
}
|
|
911
|
+
});
|
|
864
912
|
Object.defineProperty(exports, "MergedPullRequest", {
|
|
865
913
|
enumerable: true,
|
|
866
914
|
get: function get() {
|
|
@@ -891,6 +939,12 @@ Object.defineProperty(exports, "Mic", {
|
|
|
891
939
|
return _Mic.default;
|
|
892
940
|
}
|
|
893
941
|
});
|
|
942
|
+
Object.defineProperty(exports, "MicOff", {
|
|
943
|
+
enumerable: true,
|
|
944
|
+
get: function get() {
|
|
945
|
+
return _MicOff.default;
|
|
946
|
+
}
|
|
947
|
+
});
|
|
894
948
|
Object.defineProperty(exports, "Minus", {
|
|
895
949
|
enumerable: true,
|
|
896
950
|
get: function get() {
|
|
@@ -1287,6 +1341,12 @@ Object.defineProperty(exports, "Smiley", {
|
|
|
1287
1341
|
return _Smiley.default;
|
|
1288
1342
|
}
|
|
1289
1343
|
});
|
|
1344
|
+
Object.defineProperty(exports, "SpecificWindow", {
|
|
1345
|
+
enumerable: true,
|
|
1346
|
+
get: function get() {
|
|
1347
|
+
return _SpecificWindow.default;
|
|
1348
|
+
}
|
|
1349
|
+
});
|
|
1290
1350
|
Object.defineProperty(exports, "Status", {
|
|
1291
1351
|
enumerable: true,
|
|
1292
1352
|
get: function get() {
|
|
@@ -1401,6 +1461,12 @@ Object.defineProperty(exports, "TimeTracking", {
|
|
|
1401
1461
|
return _TimeTracking.default;
|
|
1402
1462
|
}
|
|
1403
1463
|
});
|
|
1464
|
+
Object.defineProperty(exports, "ToggleHeaderRow", {
|
|
1465
|
+
enumerable: true,
|
|
1466
|
+
get: function get() {
|
|
1467
|
+
return _ToggleHeaderRow.default;
|
|
1468
|
+
}
|
|
1469
|
+
});
|
|
1404
1470
|
Object.defineProperty(exports, "Transaction", {
|
|
1405
1471
|
enumerable: true,
|
|
1406
1472
|
get: function get() {
|
|
@@ -1533,6 +1599,12 @@ Object.defineProperty(exports, "Video", {
|
|
|
1533
1599
|
return _Video.default;
|
|
1534
1600
|
}
|
|
1535
1601
|
});
|
|
1602
|
+
Object.defineProperty(exports, "VideoOff", {
|
|
1603
|
+
enumerable: true,
|
|
1604
|
+
get: function get() {
|
|
1605
|
+
return _VideoOff.default;
|
|
1606
|
+
}
|
|
1607
|
+
});
|
|
1536
1608
|
Object.defineProperty(exports, "Volume", {
|
|
1537
1609
|
enumerable: true,
|
|
1538
1610
|
get: function get() {
|
|
@@ -1724,10 +1796,18 @@ var _Customers = _interopRequireDefault(require("./Customers"));
|
|
|
1724
1796
|
|
|
1725
1797
|
var _Customize = _interopRequireDefault(require("./Customize"));
|
|
1726
1798
|
|
|
1799
|
+
var _CustomSize = _interopRequireDefault(require("./CustomSize"));
|
|
1800
|
+
|
|
1727
1801
|
var _Dashboard = _interopRequireDefault(require("./Dashboard"));
|
|
1728
1802
|
|
|
1729
1803
|
var _Database = _interopRequireDefault(require("./Database"));
|
|
1730
1804
|
|
|
1805
|
+
var _DeleteColumn = _interopRequireDefault(require("./DeleteColumn"));
|
|
1806
|
+
|
|
1807
|
+
var _DeleteRow = _interopRequireDefault(require("./DeleteRow"));
|
|
1808
|
+
|
|
1809
|
+
var _DeleteTable = _interopRequireDefault(require("./DeleteTable"));
|
|
1810
|
+
|
|
1731
1811
|
var _Delete = _interopRequireDefault(require("./Delete"));
|
|
1732
1812
|
|
|
1733
1813
|
var _Design = _interopRequireDefault(require("./Design"));
|
|
@@ -1758,6 +1838,8 @@ var _Email = _interopRequireDefault(require("./Email"));
|
|
|
1758
1838
|
|
|
1759
1839
|
var _EmailSent = _interopRequireDefault(require("./EmailSent"));
|
|
1760
1840
|
|
|
1841
|
+
var _EntireScreen = _interopRequireDefault(require("./EntireScreen"));
|
|
1842
|
+
|
|
1761
1843
|
var _Error = _interopRequireDefault(require("./Error"));
|
|
1762
1844
|
|
|
1763
1845
|
var _Expand = _interopRequireDefault(require("./Expand"));
|
|
@@ -1850,6 +1932,10 @@ var _Info = _interopRequireDefault(require("./Info"));
|
|
|
1850
1932
|
|
|
1851
1933
|
var _Input = _interopRequireDefault(require("./Input"));
|
|
1852
1934
|
|
|
1935
|
+
var _InsertColumn = _interopRequireDefault(require("./InsertColumn"));
|
|
1936
|
+
|
|
1937
|
+
var _InsertRow = _interopRequireDefault(require("./InsertRow"));
|
|
1938
|
+
|
|
1853
1939
|
var _Invoice = _interopRequireDefault(require("./Invoice"));
|
|
1854
1940
|
|
|
1855
1941
|
var _IpAddress = _interopRequireDefault(require("./IpAddress"));
|
|
@@ -1902,6 +1988,8 @@ var _MenuLayout = _interopRequireDefault(require("./MenuLayout"));
|
|
|
1902
1988
|
|
|
1903
1989
|
var _MenuSquare = _interopRequireDefault(require("./MenuSquare"));
|
|
1904
1990
|
|
|
1991
|
+
var _MergeSplit = _interopRequireDefault(require("./MergeSplit"));
|
|
1992
|
+
|
|
1905
1993
|
var _Merge = _interopRequireDefault(require("./Merge"));
|
|
1906
1994
|
|
|
1907
1995
|
var _MergedPullRequest = _interopRequireDefault(require("./MergedPullRequest"));
|
|
@@ -1914,6 +2002,8 @@ var _MessageSquare = _interopRequireDefault(require("./MessageSquare"));
|
|
|
1914
2002
|
|
|
1915
2003
|
var _Mic = _interopRequireDefault(require("./Mic"));
|
|
1916
2004
|
|
|
2005
|
+
var _MicOff = _interopRequireDefault(require("./MicOff"));
|
|
2006
|
+
|
|
1917
2007
|
var _Minus = _interopRequireDefault(require("./Minus"));
|
|
1918
2008
|
|
|
1919
2009
|
var _Mobile = _interopRequireDefault(require("./Mobile"));
|
|
@@ -2046,6 +2136,8 @@ var _SmileFaceGrey = _interopRequireDefault(require("./SmileFaceGrey"));
|
|
|
2046
2136
|
|
|
2047
2137
|
var _Smiley = _interopRequireDefault(require("./Smiley"));
|
|
2048
2138
|
|
|
2139
|
+
var _SpecificWindow = _interopRequireDefault(require("./SpecificWindow"));
|
|
2140
|
+
|
|
2049
2141
|
var _Status = _interopRequireDefault(require("./Status"));
|
|
2050
2142
|
|
|
2051
2143
|
var _Subdomain = _interopRequireDefault(require("./Subdomain"));
|
|
@@ -2084,6 +2176,8 @@ var _Tickets = _interopRequireDefault(require("./Tickets"));
|
|
|
2084
2176
|
|
|
2085
2177
|
var _TimeTracking = _interopRequireDefault(require("./TimeTracking"));
|
|
2086
2178
|
|
|
2179
|
+
var _ToggleHeaderRow = _interopRequireDefault(require("./ToggleHeaderRow"));
|
|
2180
|
+
|
|
2087
2181
|
var _Transaction = _interopRequireDefault(require("./Transaction"));
|
|
2088
2182
|
|
|
2089
2183
|
var _Translate = _interopRequireDefault(require("./Translate"));
|
|
@@ -2128,6 +2222,8 @@ var _UserStar = _interopRequireDefault(require("./UserStar"));
|
|
|
2128
2222
|
|
|
2129
2223
|
var _Video = _interopRequireDefault(require("./Video"));
|
|
2130
2224
|
|
|
2225
|
+
var _VideoOff = _interopRequireDefault(require("./VideoOff"));
|
|
2226
|
+
|
|
2131
2227
|
var _Volume = _interopRequireDefault(require("./Volume"));
|
|
2132
2228
|
|
|
2133
2229
|
var _Volume2 = _interopRequireDefault(require("./Volume0"));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../generate/icons/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["import ActivityLog from \"./ActivityLog\";\r\nimport AddCircle from \"./AddCircle\";\r\nimport AddMenu from \"./AddMenu\";\r\nimport AddRectangle from \"./AddRectangle\";\r\nimport Address from \"./Address\";\r\nimport Agents from \"./Agents\";\r\nimport Apple from \"./Apple\";\r\nimport AppSwitcher from \"./AppSwitcher\";\r\nimport Archive from \"./Archive\";\r\nimport Articles from \"./Articles\";\r\nimport Attachment from \"./Attachment\";\r\nimport Bank from \"./Bank\";\r\nimport Blockquote from \"./Blockquote\";\r\nimport Book from \"./Book\";\r\nimport Bookmark from \"./Bookmark\";\r\nimport BookOpen from \"./BookOpen\";\r\nimport Braces from \"./Braces\";\r\nimport Building from \"./Building\";\r\nimport Calendar from \"./Calendar\";\r\nimport Camera from \"./Camera\";\r\nimport CannedResponses from \"./CannedResponses\";\r\nimport Captcha from \"./Captcha\";\r\nimport Category from \"./Category\";\r\nimport CenterAlign from \"./CenterAlign\";\r\nimport Certificate from \"./Certificate\";\r\nimport ChatOffline from \"./ChatOffline\";\r\nimport Chat from \"./Chat\";\r\nimport ChatBubble from \"./ChatBubble\";\r\nimport ChatEmpty from \"./ChatEmpty\";\r\nimport ChatNotification from \"./ChatNotification\";\r\nimport Check from \"./Check\";\r\nimport Checkbox from \"./Checkbox\";\r\nimport CheckboxInactive from \"./CheckboxInactive\";\r\nimport CheckCircle from \"./CheckCircle\";\r\nimport Checkmark from \"./Checkmark\";\r\nimport Chrome from \"./Chrome\";\r\nimport Clock from \"./Clock\";\r\nimport Close from \"./Close\";\r\nimport CloseCircle from \"./CloseCircle\";\r\nimport ClosedPullRequest from \"./ClosedPullRequest\";\r\nimport Code from \"./Code\";\r\nimport CodeBlock from \"./CodeBlock\";\r\nimport Collapse from \"./Collapse\";\r\nimport Column from \"./Column\";\r\nimport Computer from \"./Computer\";\r\nimport ContactBook from \"./ContactBook\";\r\nimport Copy from \"./Copy\";\r\nimport CreditCard from \"./CreditCard\";\r\nimport Css3 from \"./Css3\";\r\nimport Cursor from \"./Cursor\";\r\nimport CustomDomain from \"./CustomDomain\";\r\nimport Customers from \"./Customers\";\r\nimport Customize from \"./Customize\";\r\nimport Dashboard from \"./Dashboard\";\r\nimport Database from \"./Database\";\r\nimport Delete from \"./Delete\";\r\nimport Design from \"./Design\";\r\nimport Divider from \"./Divider\";\r\nimport DoubleCheck from \"./DoubleCheck\";\r\nimport DownArrowCircle from \"./DownArrowCircle\";\r\nimport Down from \"./Down\";\r\nimport DownArrow from \"./DownArrow\";\r\nimport Download from \"./Download\";\r\nimport Draft from \"./Draft\";\r\nimport Drag from \"./Drag\";\r\nimport Dropdown from \"./Dropdown\";\r\nimport DropdownClosed from \"./DropdownClosed\";\r\nimport Edit from \"./Edit\";\r\nimport Email from \"./Email\";\r\nimport EmailSent from \"./EmailSent\";\r\nimport Error from \"./Error\";\r\nimport Expand from \"./Expand\";\r\nimport ExternalLink from \"./ExternalLink\";\r\nimport Eye from \"./Eye\";\r\nimport Facebook from \"./Facebook\";\r\nimport Favorite from \"./Favorite\";\r\nimport FileDownload from \"./FileDownload\";\r\nimport File from \"./File\";\r\nimport FileGeneric from \"./FileGeneric\";\r\nimport FileUpload from \"./FileUpload\";\r\nimport FilterAz from \"./FilterAz\";\r\nimport Filter from \"./Filter\";\r\nimport Flag from \"./Flag\";\r\nimport Flash from \"./Flash\";\r\nimport Focus from \"./Focus\";\r\nimport Folder from \"./Folder\";\r\nimport Form from \"./Form\";\r\nimport Forward from \"./Forward\";\r\nimport FullScreen from \"./FullScreen\";\r\nimport Gif from \"./Gif\";\r\nimport Gift from \"./Gift\";\r\nimport GitMerge from \"./GitMerge\";\r\nimport Globe from \"./Globe\";\r\nimport Goal from \"./Goal\";\r\nimport Graph from \"./Graph\";\r\nimport Group from \"./Group\";\r\nimport HamburgerMenu from \"./HamburgerMenu\";\r\nimport Hash from \"./Hash\";\r\nimport HashChecked from \"./HashChecked\";\r\nimport HashInSet from \"./HashInSet\";\r\nimport Header from \"./Header\";\r\nimport Heart from \"./Heart\";\r\nimport Help from \"./Help\";\r\nimport Hide from \"./Hide\";\r\nimport Highlight from \"./Highlight\";\r\nimport History from \"./History\";\r\nimport Home from \"./Home\";\r\nimport HourGlass from \"./HourGlass\";\r\nimport Hours from \"./Hours\";\r\nimport Html from \"./Html\";\r\nimport ImageUpload from \"./ImageUpload\";\r\nimport Image from \"./Image\";\r\nimport Inbox from \"./Inbox\";\r\nimport IndeterminateCircle from \"./IndeterminateCircle\";\r\nimport Info from \"./Info\";\r\nimport Input from \"./Input\";\r\nimport Invoice from \"./Invoice\";\r\nimport IpAddress from \"./IpAddress\";\r\nimport Keyboard from \"./Keyboard\";\r\nimport LeftArrowCircle from \"./LeftArrowCircle\";\r\nimport Left from \"./Left\";\r\nimport LeftAlign from \"./LeftAlign\";\r\nimport LeftArrow from \"./LeftArrow\";\r\nimport Link from \"./Link\";\r\nimport Linkedin from \"./Linkedin\";\r\nimport ListDot from \"./ListDot\";\r\nimport ListNumber from \"./ListNumber\";\r\nimport List from \"./List\";\r\nimport ListDetails from \"./ListDetails\";\r\nimport Loading from \"./Loading\";\r\nimport Location from \"./Location\";\r\nimport Lock from \"./Lock\";\r\nimport MailUnread from \"./MailUnread\";\r\nimport MailSend from \"./MailSend\";\r\nimport Matrix from \"./Matrix\";\r\nimport MatrixDots from \"./MatrixDots\";\r\nimport MatrixDotsClear from \"./MatrixDotsClear\";\r\nimport MediaVideo from \"./MediaVideo\";\r\nimport MenuHorizontal from \"./MenuHorizontal\";\r\nimport MenuVertical from \"./MenuVertical\";\r\nimport MenuLayout from \"./MenuLayout\";\r\nimport MenuSquare from \"./MenuSquare\";\r\nimport Merge from \"./Merge\";\r\nimport MergedPullRequest from \"./MergedPullRequest\";\r\nimport Message from \"./Message\";\r\nimport MessageBubble from \"./MessageBubble\";\r\nimport MessageSquare from \"./MessageSquare\";\r\nimport Mic from \"./Mic\";\r\nimport Minus from \"./Minus\";\r\nimport Mobile from \"./Mobile\";\r\nimport Moon from \"./Moon\";\r\nimport Movie from \"./Movie\";\r\nimport MultipleChoice from \"./MultipleChoice\";\r\nimport NeetoAnalytics from \"./NeetoAnalytics\";\r\nimport NeetoCal from \"./NeetoCal\";\r\nimport NeetoChangelog from \"./NeetoChangelog\";\r\nimport NeetoChat from \"./NeetoChat\";\r\nimport NeetoDesk from \"./NeetoDesk\";\r\nimport NeetoForm from \"./NeetoForm\";\r\nimport NeetoIcon from \"./NeetoIcon\";\r\nimport NeetoInsights from \"./NeetoInsights\";\r\nimport NeetoInterview from \"./NeetoInterview\";\r\nimport NeetoInvisible from \"./NeetoInvisible\";\r\nimport NeetoKb from \"./NeetoKb\";\r\nimport NeetoQuiz from \"./NeetoQuiz\";\r\nimport NeetoReplay from \"./NeetoReplay\";\r\nimport NeetoWireframe from \"./NeetoWireframe\";\r\nimport NeutralFaceGrey from \"./NeutralFaceGrey\";\r\nimport NewChat from \"./NewChat\";\r\nimport Notes from \"./Notes\";\r\nimport Notification from \"./Notification\";\r\nimport Paragraph from \"./Paragraph\";\r\nimport Pause from \"./Pause\";\r\nimport Phone from \"./Phone\";\r\nimport PhoneRing from \"./PhoneRing\";\r\nimport Play from \"./Play\";\r\nimport Plus from \"./Plus\";\r\nimport Print from \"./Print\";\r\nimport Puzzle from \"./Puzzle\";\r\nimport QrCode from \"./QrCode\";\r\nimport Quote from \"./Quote\";\r\nimport Radio from \"./Radio\";\r\nimport RadioInactive from \"./RadioInactive\";\r\nimport Rating from \"./Rating\";\r\nimport RatingFilled from \"./RatingFilled\";\r\nimport Redirection from \"./Redirection\";\r\nimport Redo from \"./Redo\";\r\nimport Refresh from \"./Refresh\";\r\nimport RemoveCircle from \"./RemoveCircle\";\r\nimport Reorder from \"./Reorder\";\r\nimport Repeat from \"./Repeat\";\r\nimport Reply from \"./Reply\";\r\nimport Report from \"./Report\";\r\nimport Ribbon from \"./Ribbon\";\r\nimport RightArrowCircle from \"./RightArrowCircle\";\r\nimport Right from \"./Right\";\r\nimport RightAlign from \"./RightAlign\";\r\nimport RightArrow from \"./RightArrow\";\r\nimport Robot from \"./Robot\";\r\nimport SadFaceGrey from \"./SadFaceGrey\";\r\nimport Scale from \"./Scale\";\r\nimport Search from \"./Search\";\r\nimport Sections from \"./Sections\";\r\nimport Security from \"./Security\";\r\nimport Send from \"./Send\";\r\nimport SendPlane from \"./SendPlane\";\r\nimport Seo from \"./Seo\";\r\nimport Settings from \"./Settings\";\r\nimport SettingsChecked from \"./SettingsChecked\";\r\nimport Share from \"./Share\";\r\nimport SidebarClose from \"./SidebarClose\";\r\nimport SidebarOpen from \"./SidebarOpen\";\r\nimport SmileFaceGrey from \"./SmileFaceGrey\";\r\nimport Smiley from \"./Smiley\";\r\nimport Status from \"./Status\";\r\nimport Subdomain from \"./Subdomain\";\r\nimport Suitcase from \"./Suitcase\";\r\nimport Sun from \"./Sun\";\r\nimport Swap from \"./Swap\";\r\nimport Tablet from \"./Tablet\";\r\nimport Tag from \"./Tag\";\r\nimport Tags from \"./Tags\";\r\nimport Terms from \"./Terms\";\r\nimport TextBold from \"./TextBold\";\r\nimport TextCross from \"./TextCross\";\r\nimport TextH1 from \"./TextH1\";\r\nimport TextH2 from \"./TextH2\";\r\nimport TextItalic from \"./TextItalic\";\r\nimport Text from \"./Text\";\r\nimport TextLines from \"./TextLines\";\r\nimport TextSize from \"./TextSize\";\r\nimport Tickets from \"./Tickets\";\r\nimport TimeTracking from \"./TimeTracking\";\r\nimport Transaction from \"./Transaction\";\r\nimport Translate from \"./Translate\";\r\nimport Twitter from \"./Twitter\";\r\nimport Ubuntu from \"./Ubuntu\";\r\nimport Underline from \"./Underline\";\r\nimport Undo from \"./Undo\";\r\nimport Unlink from \"./Unlink\";\r\nimport Unlock from \"./Unlock\";\r\nimport UpArrowCircle from \"./UpArrowCircle\";\r\nimport Up from \"./Up\";\r\nimport UpArrow from \"./UpArrow\";\r\nimport Upload from \"./Upload\";\r\nimport UserAdd from \"./UserAdd\";\r\nimport UserCircle from \"./UserCircle\";\r\nimport UserRemove from \"./UserRemove\";\r\nimport User from \"./User\";\r\nimport UserNotification from \"./UserNotification\";\r\nimport UserRole from \"./UserRole\";\r\nimport UserRoundedRect from \"./UserRoundedRect\";\r\nimport UserSettings from \"./UserSettings\";\r\nimport UserStar from \"./UserStar\";\r\nimport Video from \"./Video\";\r\nimport Volume from \"./Volume\";\r\nimport Volume0 from \"./Volume0\";\r\nimport Volume100 from \"./Volume100\";\r\nimport Volume25 from \"./Volume25\";\r\nimport Volume50 from \"./Volume50\";\r\nimport Volume75 from \"./Volume75\";\r\nimport VolumeOutline from \"./VolumeOutline\";\r\nimport VolumeOutline0 from \"./VolumeOutline0\";\r\nimport WarningFilled from \"./WarningFilled\";\r\nimport Warning from \"./Warning\";\r\nimport Whatsapp from \"./Whatsapp\";\r\nimport WidgetModes from \"./WidgetModes\";\r\nimport YesNo from \"./YesNo\";\r\nimport Youtube from \"./Youtube\";\r\nexport { \r\n\tActivityLog,\r\n\tAddCircle,\r\n\tAddMenu,\r\n\tAddRectangle,\r\n\tAddress,\r\n\tAgents,\r\n\tApple,\r\n\tAppSwitcher,\r\n\tArchive,\r\n\tArticles,\r\n\tAttachment,\r\n\tBank,\r\n\tBlockquote,\r\n\tBook,\r\n\tBookmark,\r\n\tBookOpen,\r\n\tBraces,\r\n\tBuilding,\r\n\tCalendar,\r\n\tCamera,\r\n\tCannedResponses,\r\n\tCaptcha,\r\n\tCategory,\r\n\tCenterAlign,\r\n\tCertificate,\r\n\tChatOffline,\r\n\tChat,\r\n\tChatBubble,\r\n\tChatEmpty,\r\n\tChatNotification,\r\n\tCheck,\r\n\tCheckbox,\r\n\tCheckboxInactive,\r\n\tCheckCircle,\r\n\tCheckmark,\r\n\tChrome,\r\n\tClock,\r\n\tClose,\r\n\tCloseCircle,\r\n\tClosedPullRequest,\r\n\tCode,\r\n\tCodeBlock,\r\n\tCollapse,\r\n\tColumn,\r\n\tComputer,\r\n\tContactBook,\r\n\tCopy,\r\n\tCreditCard,\r\n\tCss3,\r\n\tCursor,\r\n\tCustomDomain,\r\n\tCustomers,\r\n\tCustomize,\r\n\tDashboard,\r\n\tDatabase,\r\n\tDelete,\r\n\tDesign,\r\n\tDivider,\r\n\tDoubleCheck,\r\n\tDownArrowCircle,\r\n\tDown,\r\n\tDownArrow,\r\n\tDownload,\r\n\tDraft,\r\n\tDrag,\r\n\tDropdown,\r\n\tDropdownClosed,\r\n\tEdit,\r\n\tEmail,\r\n\tEmailSent,\r\n\tError,\r\n\tExpand,\r\n\tExternalLink,\r\n\tEye,\r\n\tFacebook,\r\n\tFavorite,\r\n\tFileDownload,\r\n\tFile,\r\n\tFileGeneric,\r\n\tFileUpload,\r\n\tFilterAz,\r\n\tFilter,\r\n\tFlag,\r\n\tFlash,\r\n\tFocus,\r\n\tFolder,\r\n\tForm,\r\n\tForward,\r\n\tFullScreen,\r\n\tGif,\r\n\tGift,\r\n\tGitMerge,\r\n\tGlobe,\r\n\tGoal,\r\n\tGraph,\r\n\tGroup,\r\n\tHamburgerMenu,\r\n\tHash,\r\n\tHashChecked,\r\n\tHashInSet,\r\n\tHeader,\r\n\tHeart,\r\n\tHelp,\r\n\tHide,\r\n\tHighlight,\r\n\tHistory,\r\n\tHome,\r\n\tHourGlass,\r\n\tHours,\r\n\tHtml,\r\n\tImageUpload,\r\n\tImage,\r\n\tInbox,\r\n\tIndeterminateCircle,\r\n\tInfo,\r\n\tInput,\r\n\tInvoice,\r\n\tIpAddress,\r\n\tKeyboard,\r\n\tLeftArrowCircle,\r\n\tLeft,\r\n\tLeftAlign,\r\n\tLeftArrow,\r\n\tLink,\r\n\tLinkedin,\r\n\tListDot,\r\n\tListNumber,\r\n\tList,\r\n\tListDetails,\r\n\tLoading,\r\n\tLocation,\r\n\tLock,\r\n\tMailUnread,\r\n\tMailSend,\r\n\tMatrix,\r\n\tMatrixDots,\r\n\tMatrixDotsClear,\r\n\tMediaVideo,\r\n\tMenuHorizontal,\r\n\tMenuVertical,\r\n\tMenuLayout,\r\n\tMenuSquare,\r\n\tMerge,\r\n\tMergedPullRequest,\r\n\tMessage,\r\n\tMessageBubble,\r\n\tMessageSquare,\r\n\tMic,\r\n\tMinus,\r\n\tMobile,\r\n\tMoon,\r\n\tMovie,\r\n\tMultipleChoice,\r\n\tNeetoAnalytics,\r\n\tNeetoCal,\r\n\tNeetoChangelog,\r\n\tNeetoChat,\r\n\tNeetoDesk,\r\n\tNeetoForm,\r\n\tNeetoIcon,\r\n\tNeetoInsights,\r\n\tNeetoInterview,\r\n\tNeetoInvisible,\r\n\tNeetoKb,\r\n\tNeetoQuiz,\r\n\tNeetoReplay,\r\n\tNeetoWireframe,\r\n\tNeutralFaceGrey,\r\n\tNewChat,\r\n\tNotes,\r\n\tNotification,\r\n\tParagraph,\r\n\tPause,\r\n\tPhone,\r\n\tPhoneRing,\r\n\tPlay,\r\n\tPlus,\r\n\tPrint,\r\n\tPuzzle,\r\n\tQrCode,\r\n\tQuote,\r\n\tRadio,\r\n\tRadioInactive,\r\n\tRating,\r\n\tRatingFilled,\r\n\tRedirection,\r\n\tRedo,\r\n\tRefresh,\r\n\tRemoveCircle,\r\n\tReorder,\r\n\tRepeat,\r\n\tReply,\r\n\tReport,\r\n\tRibbon,\r\n\tRightArrowCircle,\r\n\tRight,\r\n\tRightAlign,\r\n\tRightArrow,\r\n\tRobot,\r\n\tSadFaceGrey,\r\n\tScale,\r\n\tSearch,\r\n\tSections,\r\n\tSecurity,\r\n\tSend,\r\n\tSendPlane,\r\n\tSeo,\r\n\tSettings,\r\n\tSettingsChecked,\r\n\tShare,\r\n\tSidebarClose,\r\n\tSidebarOpen,\r\n\tSmileFaceGrey,\r\n\tSmiley,\r\n\tStatus,\r\n\tSubdomain,\r\n\tSuitcase,\r\n\tSun,\r\n\tSwap,\r\n\tTablet,\r\n\tTag,\r\n\tTags,\r\n\tTerms,\r\n\tTextBold,\r\n\tTextCross,\r\n\tTextH1,\r\n\tTextH2,\r\n\tTextItalic,\r\n\tText,\r\n\tTextLines,\r\n\tTextSize,\r\n\tTickets,\r\n\tTimeTracking,\r\n\tTransaction,\r\n\tTranslate,\r\n\tTwitter,\r\n\tUbuntu,\r\n\tUnderline,\r\n\tUndo,\r\n\tUnlink,\r\n\tUnlock,\r\n\tUpArrowCircle,\r\n\tUp,\r\n\tUpArrow,\r\n\tUpload,\r\n\tUserAdd,\r\n\tUserCircle,\r\n\tUserRemove,\r\n\tUser,\r\n\tUserNotification,\r\n\tUserRole,\r\n\tUserRoundedRect,\r\n\tUserSettings,\r\n\tUserStar,\r\n\tVideo,\r\n\tVolume,\r\n\tVolume0,\r\n\tVolume100,\r\n\tVolume25,\r\n\tVolume50,\r\n\tVolume75,\r\n\tVolumeOutline,\r\n\tVolumeOutline0,\r\n\tWarningFilled,\r\n\tWarning,\r\n\tWhatsapp,\r\n\tWidgetModes,\r\n\tYesNo,\r\n\tYoutube\r\n};"],"file":"index.js"}
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["import ActivityLog from \"./ActivityLog\";\r\nimport AddCircle from \"./AddCircle\";\r\nimport AddMenu from \"./AddMenu\";\r\nimport AddRectangle from \"./AddRectangle\";\r\nimport Address from \"./Address\";\r\nimport Agents from \"./Agents\";\r\nimport Apple from \"./Apple\";\r\nimport AppSwitcher from \"./AppSwitcher\";\r\nimport Archive from \"./Archive\";\r\nimport Articles from \"./Articles\";\r\nimport Attachment from \"./Attachment\";\r\nimport Bank from \"./Bank\";\r\nimport Blockquote from \"./Blockquote\";\r\nimport Book from \"./Book\";\r\nimport Bookmark from \"./Bookmark\";\r\nimport BookOpen from \"./BookOpen\";\r\nimport Braces from \"./Braces\";\r\nimport Building from \"./Building\";\r\nimport Calendar from \"./Calendar\";\r\nimport Camera from \"./Camera\";\r\nimport CannedResponses from \"./CannedResponses\";\r\nimport Captcha from \"./Captcha\";\r\nimport Category from \"./Category\";\r\nimport CenterAlign from \"./CenterAlign\";\r\nimport Certificate from \"./Certificate\";\r\nimport ChatOffline from \"./ChatOffline\";\r\nimport Chat from \"./Chat\";\r\nimport ChatBubble from \"./ChatBubble\";\r\nimport ChatEmpty from \"./ChatEmpty\";\r\nimport ChatNotification from \"./ChatNotification\";\r\nimport Check from \"./Check\";\r\nimport Checkbox from \"./Checkbox\";\r\nimport CheckboxInactive from \"./CheckboxInactive\";\r\nimport CheckCircle from \"./CheckCircle\";\r\nimport Checkmark from \"./Checkmark\";\r\nimport Chrome from \"./Chrome\";\r\nimport Clock from \"./Clock\";\r\nimport Close from \"./Close\";\r\nimport CloseCircle from \"./CloseCircle\";\r\nimport ClosedPullRequest from \"./ClosedPullRequest\";\r\nimport Code from \"./Code\";\r\nimport CodeBlock from \"./CodeBlock\";\r\nimport Collapse from \"./Collapse\";\r\nimport Column from \"./Column\";\r\nimport Computer from \"./Computer\";\r\nimport ContactBook from \"./ContactBook\";\r\nimport Copy from \"./Copy\";\r\nimport CreditCard from \"./CreditCard\";\r\nimport Css3 from \"./Css3\";\r\nimport Cursor from \"./Cursor\";\r\nimport CustomDomain from \"./CustomDomain\";\r\nimport Customers from \"./Customers\";\r\nimport Customize from \"./Customize\";\r\nimport CustomSize from \"./CustomSize\";\r\nimport Dashboard from \"./Dashboard\";\r\nimport Database from \"./Database\";\r\nimport DeleteColumn from \"./DeleteColumn\";\r\nimport DeleteRow from \"./DeleteRow\";\r\nimport DeleteTable from \"./DeleteTable\";\r\nimport Delete from \"./Delete\";\r\nimport Design from \"./Design\";\r\nimport Divider from \"./Divider\";\r\nimport DoubleCheck from \"./DoubleCheck\";\r\nimport DownArrowCircle from \"./DownArrowCircle\";\r\nimport Down from \"./Down\";\r\nimport DownArrow from \"./DownArrow\";\r\nimport Download from \"./Download\";\r\nimport Draft from \"./Draft\";\r\nimport Drag from \"./Drag\";\r\nimport Dropdown from \"./Dropdown\";\r\nimport DropdownClosed from \"./DropdownClosed\";\r\nimport Edit from \"./Edit\";\r\nimport Email from \"./Email\";\r\nimport EmailSent from \"./EmailSent\";\r\nimport EntireScreen from \"./EntireScreen\";\r\nimport Error from \"./Error\";\r\nimport Expand from \"./Expand\";\r\nimport ExternalLink from \"./ExternalLink\";\r\nimport Eye from \"./Eye\";\r\nimport Facebook from \"./Facebook\";\r\nimport Favorite from \"./Favorite\";\r\nimport FileDownload from \"./FileDownload\";\r\nimport File from \"./File\";\r\nimport FileGeneric from \"./FileGeneric\";\r\nimport FileUpload from \"./FileUpload\";\r\nimport FilterAz from \"./FilterAz\";\r\nimport Filter from \"./Filter\";\r\nimport Flag from \"./Flag\";\r\nimport Flash from \"./Flash\";\r\nimport Focus from \"./Focus\";\r\nimport Folder from \"./Folder\";\r\nimport Form from \"./Form\";\r\nimport Forward from \"./Forward\";\r\nimport FullScreen from \"./FullScreen\";\r\nimport Gif from \"./Gif\";\r\nimport Gift from \"./Gift\";\r\nimport GitMerge from \"./GitMerge\";\r\nimport Globe from \"./Globe\";\r\nimport Goal from \"./Goal\";\r\nimport Graph from \"./Graph\";\r\nimport Group from \"./Group\";\r\nimport HamburgerMenu from \"./HamburgerMenu\";\r\nimport Hash from \"./Hash\";\r\nimport HashChecked from \"./HashChecked\";\r\nimport HashInSet from \"./HashInSet\";\r\nimport Header from \"./Header\";\r\nimport Heart from \"./Heart\";\r\nimport Help from \"./Help\";\r\nimport Hide from \"./Hide\";\r\nimport Highlight from \"./Highlight\";\r\nimport History from \"./History\";\r\nimport Home from \"./Home\";\r\nimport HourGlass from \"./HourGlass\";\r\nimport Hours from \"./Hours\";\r\nimport Html from \"./Html\";\r\nimport ImageUpload from \"./ImageUpload\";\r\nimport Image from \"./Image\";\r\nimport Inbox from \"./Inbox\";\r\nimport IndeterminateCircle from \"./IndeterminateCircle\";\r\nimport Info from \"./Info\";\r\nimport Input from \"./Input\";\r\nimport InsertColumn from \"./InsertColumn\";\r\nimport InsertRow from \"./InsertRow\";\r\nimport Invoice from \"./Invoice\";\r\nimport IpAddress from \"./IpAddress\";\r\nimport Keyboard from \"./Keyboard\";\r\nimport LeftArrowCircle from \"./LeftArrowCircle\";\r\nimport Left from \"./Left\";\r\nimport LeftAlign from \"./LeftAlign\";\r\nimport LeftArrow from \"./LeftArrow\";\r\nimport Link from \"./Link\";\r\nimport Linkedin from \"./Linkedin\";\r\nimport ListDot from \"./ListDot\";\r\nimport ListNumber from \"./ListNumber\";\r\nimport List from \"./List\";\r\nimport ListDetails from \"./ListDetails\";\r\nimport Loading from \"./Loading\";\r\nimport Location from \"./Location\";\r\nimport Lock from \"./Lock\";\r\nimport MailUnread from \"./MailUnread\";\r\nimport MailSend from \"./MailSend\";\r\nimport Matrix from \"./Matrix\";\r\nimport MatrixDots from \"./MatrixDots\";\r\nimport MatrixDotsClear from \"./MatrixDotsClear\";\r\nimport MediaVideo from \"./MediaVideo\";\r\nimport MenuHorizontal from \"./MenuHorizontal\";\r\nimport MenuVertical from \"./MenuVertical\";\r\nimport MenuLayout from \"./MenuLayout\";\r\nimport MenuSquare from \"./MenuSquare\";\r\nimport MergeSplit from \"./MergeSplit\";\r\nimport Merge from \"./Merge\";\r\nimport MergedPullRequest from \"./MergedPullRequest\";\r\nimport Message from \"./Message\";\r\nimport MessageBubble from \"./MessageBubble\";\r\nimport MessageSquare from \"./MessageSquare\";\r\nimport Mic from \"./Mic\";\r\nimport MicOff from \"./MicOff\";\r\nimport Minus from \"./Minus\";\r\nimport Mobile from \"./Mobile\";\r\nimport Moon from \"./Moon\";\r\nimport Movie from \"./Movie\";\r\nimport MultipleChoice from \"./MultipleChoice\";\r\nimport NeetoAnalytics from \"./NeetoAnalytics\";\r\nimport NeetoCal from \"./NeetoCal\";\r\nimport NeetoChangelog from \"./NeetoChangelog\";\r\nimport NeetoChat from \"./NeetoChat\";\r\nimport NeetoDesk from \"./NeetoDesk\";\r\nimport NeetoForm from \"./NeetoForm\";\r\nimport NeetoIcon from \"./NeetoIcon\";\r\nimport NeetoInsights from \"./NeetoInsights\";\r\nimport NeetoInterview from \"./NeetoInterview\";\r\nimport NeetoInvisible from \"./NeetoInvisible\";\r\nimport NeetoKb from \"./NeetoKb\";\r\nimport NeetoQuiz from \"./NeetoQuiz\";\r\nimport NeetoReplay from \"./NeetoReplay\";\r\nimport NeetoWireframe from \"./NeetoWireframe\";\r\nimport NeutralFaceGrey from \"./NeutralFaceGrey\";\r\nimport NewChat from \"./NewChat\";\r\nimport Notes from \"./Notes\";\r\nimport Notification from \"./Notification\";\r\nimport Paragraph from \"./Paragraph\";\r\nimport Pause from \"./Pause\";\r\nimport Phone from \"./Phone\";\r\nimport PhoneRing from \"./PhoneRing\";\r\nimport Play from \"./Play\";\r\nimport Plus from \"./Plus\";\r\nimport Print from \"./Print\";\r\nimport Puzzle from \"./Puzzle\";\r\nimport QrCode from \"./QrCode\";\r\nimport Quote from \"./Quote\";\r\nimport Radio from \"./Radio\";\r\nimport RadioInactive from \"./RadioInactive\";\r\nimport Rating from \"./Rating\";\r\nimport RatingFilled from \"./RatingFilled\";\r\nimport Redirection from \"./Redirection\";\r\nimport Redo from \"./Redo\";\r\nimport Refresh from \"./Refresh\";\r\nimport RemoveCircle from \"./RemoveCircle\";\r\nimport Reorder from \"./Reorder\";\r\nimport Repeat from \"./Repeat\";\r\nimport Reply from \"./Reply\";\r\nimport Report from \"./Report\";\r\nimport Ribbon from \"./Ribbon\";\r\nimport RightArrowCircle from \"./RightArrowCircle\";\r\nimport Right from \"./Right\";\r\nimport RightAlign from \"./RightAlign\";\r\nimport RightArrow from \"./RightArrow\";\r\nimport Robot from \"./Robot\";\r\nimport SadFaceGrey from \"./SadFaceGrey\";\r\nimport Scale from \"./Scale\";\r\nimport Search from \"./Search\";\r\nimport Sections from \"./Sections\";\r\nimport Security from \"./Security\";\r\nimport Send from \"./Send\";\r\nimport SendPlane from \"./SendPlane\";\r\nimport Seo from \"./Seo\";\r\nimport Settings from \"./Settings\";\r\nimport SettingsChecked from \"./SettingsChecked\";\r\nimport Share from \"./Share\";\r\nimport SidebarClose from \"./SidebarClose\";\r\nimport SidebarOpen from \"./SidebarOpen\";\r\nimport SmileFaceGrey from \"./SmileFaceGrey\";\r\nimport Smiley from \"./Smiley\";\r\nimport SpecificWindow from \"./SpecificWindow\";\r\nimport Status from \"./Status\";\r\nimport Subdomain from \"./Subdomain\";\r\nimport Suitcase from \"./Suitcase\";\r\nimport Sun from \"./Sun\";\r\nimport Swap from \"./Swap\";\r\nimport Tablet from \"./Tablet\";\r\nimport Tag from \"./Tag\";\r\nimport Tags from \"./Tags\";\r\nimport Terms from \"./Terms\";\r\nimport TextBold from \"./TextBold\";\r\nimport TextCross from \"./TextCross\";\r\nimport TextH1 from \"./TextH1\";\r\nimport TextH2 from \"./TextH2\";\r\nimport TextItalic from \"./TextItalic\";\r\nimport Text from \"./Text\";\r\nimport TextLines from \"./TextLines\";\r\nimport TextSize from \"./TextSize\";\r\nimport Tickets from \"./Tickets\";\r\nimport TimeTracking from \"./TimeTracking\";\r\nimport ToggleHeaderRow from \"./ToggleHeaderRow\";\r\nimport Transaction from \"./Transaction\";\r\nimport Translate from \"./Translate\";\r\nimport Twitter from \"./Twitter\";\r\nimport Ubuntu from \"./Ubuntu\";\r\nimport Underline from \"./Underline\";\r\nimport Undo from \"./Undo\";\r\nimport Unlink from \"./Unlink\";\r\nimport Unlock from \"./Unlock\";\r\nimport UpArrowCircle from \"./UpArrowCircle\";\r\nimport Up from \"./Up\";\r\nimport UpArrow from \"./UpArrow\";\r\nimport Upload from \"./Upload\";\r\nimport UserAdd from \"./UserAdd\";\r\nimport UserCircle from \"./UserCircle\";\r\nimport UserRemove from \"./UserRemove\";\r\nimport User from \"./User\";\r\nimport UserNotification from \"./UserNotification\";\r\nimport UserRole from \"./UserRole\";\r\nimport UserRoundedRect from \"./UserRoundedRect\";\r\nimport UserSettings from \"./UserSettings\";\r\nimport UserStar from \"./UserStar\";\r\nimport Video from \"./Video\";\r\nimport VideoOff from \"./VideoOff\";\r\nimport Volume from \"./Volume\";\r\nimport Volume0 from \"./Volume0\";\r\nimport Volume100 from \"./Volume100\";\r\nimport Volume25 from \"./Volume25\";\r\nimport Volume50 from \"./Volume50\";\r\nimport Volume75 from \"./Volume75\";\r\nimport VolumeOutline from \"./VolumeOutline\";\r\nimport VolumeOutline0 from \"./VolumeOutline0\";\r\nimport WarningFilled from \"./WarningFilled\";\r\nimport Warning from \"./Warning\";\r\nimport Whatsapp from \"./Whatsapp\";\r\nimport WidgetModes from \"./WidgetModes\";\r\nimport YesNo from \"./YesNo\";\r\nimport Youtube from \"./Youtube\";\r\nexport { \r\n\tActivityLog,\r\n\tAddCircle,\r\n\tAddMenu,\r\n\tAddRectangle,\r\n\tAddress,\r\n\tAgents,\r\n\tApple,\r\n\tAppSwitcher,\r\n\tArchive,\r\n\tArticles,\r\n\tAttachment,\r\n\tBank,\r\n\tBlockquote,\r\n\tBook,\r\n\tBookmark,\r\n\tBookOpen,\r\n\tBraces,\r\n\tBuilding,\r\n\tCalendar,\r\n\tCamera,\r\n\tCannedResponses,\r\n\tCaptcha,\r\n\tCategory,\r\n\tCenterAlign,\r\n\tCertificate,\r\n\tChatOffline,\r\n\tChat,\r\n\tChatBubble,\r\n\tChatEmpty,\r\n\tChatNotification,\r\n\tCheck,\r\n\tCheckbox,\r\n\tCheckboxInactive,\r\n\tCheckCircle,\r\n\tCheckmark,\r\n\tChrome,\r\n\tClock,\r\n\tClose,\r\n\tCloseCircle,\r\n\tClosedPullRequest,\r\n\tCode,\r\n\tCodeBlock,\r\n\tCollapse,\r\n\tColumn,\r\n\tComputer,\r\n\tContactBook,\r\n\tCopy,\r\n\tCreditCard,\r\n\tCss3,\r\n\tCursor,\r\n\tCustomDomain,\r\n\tCustomers,\r\n\tCustomize,\r\n\tCustomSize,\r\n\tDashboard,\r\n\tDatabase,\r\n\tDeleteColumn,\r\n\tDeleteRow,\r\n\tDeleteTable,\r\n\tDelete,\r\n\tDesign,\r\n\tDivider,\r\n\tDoubleCheck,\r\n\tDownArrowCircle,\r\n\tDown,\r\n\tDownArrow,\r\n\tDownload,\r\n\tDraft,\r\n\tDrag,\r\n\tDropdown,\r\n\tDropdownClosed,\r\n\tEdit,\r\n\tEmail,\r\n\tEmailSent,\r\n\tEntireScreen,\r\n\tError,\r\n\tExpand,\r\n\tExternalLink,\r\n\tEye,\r\n\tFacebook,\r\n\tFavorite,\r\n\tFileDownload,\r\n\tFile,\r\n\tFileGeneric,\r\n\tFileUpload,\r\n\tFilterAz,\r\n\tFilter,\r\n\tFlag,\r\n\tFlash,\r\n\tFocus,\r\n\tFolder,\r\n\tForm,\r\n\tForward,\r\n\tFullScreen,\r\n\tGif,\r\n\tGift,\r\n\tGitMerge,\r\n\tGlobe,\r\n\tGoal,\r\n\tGraph,\r\n\tGroup,\r\n\tHamburgerMenu,\r\n\tHash,\r\n\tHashChecked,\r\n\tHashInSet,\r\n\tHeader,\r\n\tHeart,\r\n\tHelp,\r\n\tHide,\r\n\tHighlight,\r\n\tHistory,\r\n\tHome,\r\n\tHourGlass,\r\n\tHours,\r\n\tHtml,\r\n\tImageUpload,\r\n\tImage,\r\n\tInbox,\r\n\tIndeterminateCircle,\r\n\tInfo,\r\n\tInput,\r\n\tInsertColumn,\r\n\tInsertRow,\r\n\tInvoice,\r\n\tIpAddress,\r\n\tKeyboard,\r\n\tLeftArrowCircle,\r\n\tLeft,\r\n\tLeftAlign,\r\n\tLeftArrow,\r\n\tLink,\r\n\tLinkedin,\r\n\tListDot,\r\n\tListNumber,\r\n\tList,\r\n\tListDetails,\r\n\tLoading,\r\n\tLocation,\r\n\tLock,\r\n\tMailUnread,\r\n\tMailSend,\r\n\tMatrix,\r\n\tMatrixDots,\r\n\tMatrixDotsClear,\r\n\tMediaVideo,\r\n\tMenuHorizontal,\r\n\tMenuVertical,\r\n\tMenuLayout,\r\n\tMenuSquare,\r\n\tMergeSplit,\r\n\tMerge,\r\n\tMergedPullRequest,\r\n\tMessage,\r\n\tMessageBubble,\r\n\tMessageSquare,\r\n\tMic,\r\n\tMicOff,\r\n\tMinus,\r\n\tMobile,\r\n\tMoon,\r\n\tMovie,\r\n\tMultipleChoice,\r\n\tNeetoAnalytics,\r\n\tNeetoCal,\r\n\tNeetoChangelog,\r\n\tNeetoChat,\r\n\tNeetoDesk,\r\n\tNeetoForm,\r\n\tNeetoIcon,\r\n\tNeetoInsights,\r\n\tNeetoInterview,\r\n\tNeetoInvisible,\r\n\tNeetoKb,\r\n\tNeetoQuiz,\r\n\tNeetoReplay,\r\n\tNeetoWireframe,\r\n\tNeutralFaceGrey,\r\n\tNewChat,\r\n\tNotes,\r\n\tNotification,\r\n\tParagraph,\r\n\tPause,\r\n\tPhone,\r\n\tPhoneRing,\r\n\tPlay,\r\n\tPlus,\r\n\tPrint,\r\n\tPuzzle,\r\n\tQrCode,\r\n\tQuote,\r\n\tRadio,\r\n\tRadioInactive,\r\n\tRating,\r\n\tRatingFilled,\r\n\tRedirection,\r\n\tRedo,\r\n\tRefresh,\r\n\tRemoveCircle,\r\n\tReorder,\r\n\tRepeat,\r\n\tReply,\r\n\tReport,\r\n\tRibbon,\r\n\tRightArrowCircle,\r\n\tRight,\r\n\tRightAlign,\r\n\tRightArrow,\r\n\tRobot,\r\n\tSadFaceGrey,\r\n\tScale,\r\n\tSearch,\r\n\tSections,\r\n\tSecurity,\r\n\tSend,\r\n\tSendPlane,\r\n\tSeo,\r\n\tSettings,\r\n\tSettingsChecked,\r\n\tShare,\r\n\tSidebarClose,\r\n\tSidebarOpen,\r\n\tSmileFaceGrey,\r\n\tSmiley,\r\n\tSpecificWindow,\r\n\tStatus,\r\n\tSubdomain,\r\n\tSuitcase,\r\n\tSun,\r\n\tSwap,\r\n\tTablet,\r\n\tTag,\r\n\tTags,\r\n\tTerms,\r\n\tTextBold,\r\n\tTextCross,\r\n\tTextH1,\r\n\tTextH2,\r\n\tTextItalic,\r\n\tText,\r\n\tTextLines,\r\n\tTextSize,\r\n\tTickets,\r\n\tTimeTracking,\r\n\tToggleHeaderRow,\r\n\tTransaction,\r\n\tTranslate,\r\n\tTwitter,\r\n\tUbuntu,\r\n\tUnderline,\r\n\tUndo,\r\n\tUnlink,\r\n\tUnlock,\r\n\tUpArrowCircle,\r\n\tUp,\r\n\tUpArrow,\r\n\tUpload,\r\n\tUserAdd,\r\n\tUserCircle,\r\n\tUserRemove,\r\n\tUser,\r\n\tUserNotification,\r\n\tUserRole,\r\n\tUserRoundedRect,\r\n\tUserSettings,\r\n\tUserStar,\r\n\tVideo,\r\n\tVideoOff,\r\n\tVolume,\r\n\tVolume0,\r\n\tVolume100,\r\n\tVolume25,\r\n\tVolume50,\r\n\tVolume75,\r\n\tVolumeOutline,\r\n\tVolumeOutline0,\r\n\tWarningFilled,\r\n\tWarning,\r\n\tWhatsapp,\r\n\tWidgetModes,\r\n\tYesNo,\r\n\tYoutube\r\n};"],"file":"index.js"}
|
|
@@ -0,0 +1,83 @@
|
|
|
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 CustomSize = function CustomSize(_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("path", {
|
|
26
|
+
d: "M7 19C6.46957 19 5.96086 18.7893 5.58579 18.4142C5.21071 18.0391 5 17.5304 5 17",
|
|
27
|
+
stroke: color,
|
|
28
|
+
strokeWidth: strokeWidth,
|
|
29
|
+
strokeLinecap: "round",
|
|
30
|
+
strokeLinejoin: "round"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M5 13V11",
|
|
33
|
+
stroke: color,
|
|
34
|
+
strokeWidth: strokeWidth,
|
|
35
|
+
strokeLinecap: "round",
|
|
36
|
+
strokeLinejoin: "round"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M5 7C5 6.46957 5.21071 5.96086 5.58579 5.58579C5.96086 5.21071 6.46957 5 7 5",
|
|
39
|
+
stroke: color,
|
|
40
|
+
strokeWidth: strokeWidth,
|
|
41
|
+
strokeLinecap: "round",
|
|
42
|
+
strokeLinejoin: "round"
|
|
43
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
d: "M11 5H13",
|
|
45
|
+
stroke: color,
|
|
46
|
+
strokeWidth: strokeWidth,
|
|
47
|
+
strokeLinecap: "round",
|
|
48
|
+
strokeLinejoin: "round"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M17 5C17.5304 5 18.0391 5.21071 18.4142 5.58579C18.7893 5.96086 19 6.46957 19 7",
|
|
51
|
+
stroke: color,
|
|
52
|
+
strokeWidth: strokeWidth,
|
|
53
|
+
strokeLinecap: "round",
|
|
54
|
+
strokeLinejoin: "round"
|
|
55
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
56
|
+
d: "M19 11V13",
|
|
57
|
+
stroke: color,
|
|
58
|
+
strokeWidth: strokeWidth,
|
|
59
|
+
strokeLinecap: "round",
|
|
60
|
+
strokeLinejoin: "round"
|
|
61
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
62
|
+
d: "M19 17V21",
|
|
63
|
+
stroke: color,
|
|
64
|
+
strokeWidth: strokeWidth,
|
|
65
|
+
strokeLinecap: "round",
|
|
66
|
+
strokeLinejoin: "round"
|
|
67
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
68
|
+
d: "M21 19H17",
|
|
69
|
+
stroke: color,
|
|
70
|
+
strokeWidth: strokeWidth,
|
|
71
|
+
strokeLinecap: "round",
|
|
72
|
+
strokeLinejoin: "round"
|
|
73
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
74
|
+
d: "M13 19H11",
|
|
75
|
+
stroke: color,
|
|
76
|
+
strokeWidth: strokeWidth,
|
|
77
|
+
strokeLinecap: "round",
|
|
78
|
+
strokeLinejoin: "round"
|
|
79
|
+
}));
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export default CustomSize;
|
|
83
|
+
//# sourceMappingURL=CustomSize.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/icons/CustomSize.js"],"names":["React","CustomSize","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,UAAU,GAAG,SAAbA,UAAa,OAKb;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;AACE,IAAA,CAAC,EAAC,iFADJ;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,UADJ;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,8EADJ;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,iFADJ;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,WADJ;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,WADJ;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,WADJ;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,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAzDF,CADF;AAmED,CAzED;;AA0EA,eAAeH,UAAf","sourcesContent":["import React from \"react\";\nconst CustomSize = ({\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 <path\n d=\"M7 19C6.46957 19 5.96086 18.7893 5.58579 18.4142C5.21071 18.0391 5 17.5304 5 17\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 13V11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 7C5 6.46957 5.21071 5.96086 5.58579 5.58579C5.96086 5.21071 6.46957 5 7 5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M11 5H13\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M17 5C17.5304 5 18.0391 5.21071 18.4142 5.58579C18.7893 5.96086 19 6.46957 19 7\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19 11V13\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19 17V21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M21 19H17\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13 19H11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n};\nexport default CustomSize;\n"],"file":"CustomSize.js"}
|