@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,93 @@
|
|
|
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 CustomSize = function CustomSize(_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: "M7 19C6.46957 19 5.96086 18.7893 5.58579 18.4142C5.21071 18.0391 5 17.5304 5 17",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M5 13V11",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M5 7C5 6.46957 5.21071 5.96086 5.58579 5.58579C5.96086 5.21071 6.46957 5 7 5",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round",
|
|
51
|
+
strokeLinejoin: "round"
|
|
52
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
53
|
+
d: "M11 5H13",
|
|
54
|
+
stroke: color,
|
|
55
|
+
strokeWidth: strokeWidth,
|
|
56
|
+
strokeLinecap: "round",
|
|
57
|
+
strokeLinejoin: "round"
|
|
58
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
59
|
+
d: "M17 5C17.5304 5 18.0391 5.21071 18.4142 5.58579C18.7893 5.96086 19 6.46957 19 7",
|
|
60
|
+
stroke: color,
|
|
61
|
+
strokeWidth: strokeWidth,
|
|
62
|
+
strokeLinecap: "round",
|
|
63
|
+
strokeLinejoin: "round"
|
|
64
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
65
|
+
d: "M19 11V13",
|
|
66
|
+
stroke: color,
|
|
67
|
+
strokeWidth: strokeWidth,
|
|
68
|
+
strokeLinecap: "round",
|
|
69
|
+
strokeLinejoin: "round"
|
|
70
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
71
|
+
d: "M19 17V21",
|
|
72
|
+
stroke: color,
|
|
73
|
+
strokeWidth: strokeWidth,
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeLinejoin: "round"
|
|
76
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
77
|
+
d: "M21 19H17",
|
|
78
|
+
stroke: color,
|
|
79
|
+
strokeWidth: strokeWidth,
|
|
80
|
+
strokeLinecap: "round",
|
|
81
|
+
strokeLinejoin: "round"
|
|
82
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
83
|
+
d: "M13 19H11",
|
|
84
|
+
stroke: color,
|
|
85
|
+
strokeWidth: strokeWidth,
|
|
86
|
+
strokeLinecap: "round",
|
|
87
|
+
strokeLinejoin: "round"
|
|
88
|
+
}));
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
var _default = CustomSize;
|
|
92
|
+
exports.default = _default;
|
|
93
|
+
//# sourceMappingURL=CustomSize.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/CustomSize.js"],"names":["CustomSize","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,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;;eA0EeH,U","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"}
|
|
@@ -0,0 +1,57 @@
|
|
|
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 DeleteColumn = function DeleteColumn(_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("rect", {
|
|
35
|
+
x: 4.75,
|
|
36
|
+
y: 4.75,
|
|
37
|
+
width: 6.5,
|
|
38
|
+
height: 14.5,
|
|
39
|
+
rx: 1.25,
|
|
40
|
+
stroke: color,
|
|
41
|
+
strokeWidth: strokeWidth
|
|
42
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
43
|
+
d: "M14.8787 9.87869L19.1213 14.1213",
|
|
44
|
+
stroke: color,
|
|
45
|
+
strokeWidth: strokeWidth,
|
|
46
|
+
strokeLinecap: "round"
|
|
47
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
48
|
+
d: "M19.1213 9.87869L14.8787 14.1213",
|
|
49
|
+
stroke: color,
|
|
50
|
+
strokeWidth: strokeWidth,
|
|
51
|
+
strokeLinecap: "round"
|
|
52
|
+
}));
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
var _default = DeleteColumn;
|
|
56
|
+
exports.default = _default;
|
|
57
|
+
//# sourceMappingURL=DeleteColumn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/DeleteColumn.js"],"names":["DeleteColumn","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,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;AACE,IAAA,CAAC,EAAE,IADL;AAEE,IAAA,CAAC,EAAE,IAFL;AAGE,IAAA,KAAK,EAAE,GAHT;AAIE,IAAA,MAAM,EAAE,IAJV;AAKE,IAAA,EAAE,EAAE,IALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,kCADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAVF,eAgBE;AACE,IAAA,CAAC,EAAC,kCADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAhBF,CADF;AAyBD,CA/BD;;eAgCeH,Y","sourcesContent":["import React from \"react\";\nconst DeleteColumn = ({\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 <rect\n x={4.75}\n y={4.75}\n width={6.5}\n height={14.5}\n rx={1.25}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M14.8787 9.87869L19.1213 14.1213\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M19.1213 9.87869L14.8787 14.1213\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default DeleteColumn;\n"],"file":"DeleteColumn.js"}
|
|
@@ -0,0 +1,58 @@
|
|
|
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 DeleteRow = function DeleteRow(_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("rect", {
|
|
35
|
+
x: 19.25,
|
|
36
|
+
y: 4.75,
|
|
37
|
+
width: 6.5,
|
|
38
|
+
height: 14.5,
|
|
39
|
+
rx: 1.25,
|
|
40
|
+
transform: "rotate(90 19.25 4.75)",
|
|
41
|
+
stroke: color,
|
|
42
|
+
strokeWidth: strokeWidth
|
|
43
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
44
|
+
d: "M14.7426 15.2573L10.5 19.5",
|
|
45
|
+
stroke: color,
|
|
46
|
+
strokeWidth: strokeWidth,
|
|
47
|
+
strokeLinecap: "round"
|
|
48
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
49
|
+
d: "M14.7426 19.5L10.5 15.2573",
|
|
50
|
+
stroke: color,
|
|
51
|
+
strokeWidth: strokeWidth,
|
|
52
|
+
strokeLinecap: "round"
|
|
53
|
+
}));
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
var _default = DeleteRow;
|
|
57
|
+
exports.default = _default;
|
|
58
|
+
//# sourceMappingURL=DeleteRow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/DeleteRow.js"],"names":["DeleteRow","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,SAAS,GAAG,SAAZA,SAAY,OAKZ;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,EAAE,KADL;AAEE,IAAA,CAAC,EAAE,IAFL;AAGE,IAAA,KAAK,EAAE,GAHT;AAIE,IAAA,MAAM,EAAE,IAJV;AAKE,IAAA,EAAE,EAAE,IALN;AAME,IAAA,SAAS,EAAC,uBANZ;AAOE,IAAA,MAAM,EAAEF,KAPV;AAQE,IAAA,WAAW,EAAEC;AARf,IADF,eAWE;AACE,IAAA,CAAC,EAAC,4BADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAXF,eAiBE;AACE,IAAA,CAAC,EAAC,4BADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAjBF,CADF;AA0BD,CAhCD;;eAiCeH,S","sourcesContent":["import React from \"react\";\nconst DeleteRow = ({\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 <rect\n x={19.25}\n y={4.75}\n width={6.5}\n height={14.5}\n rx={1.25}\n transform=\"rotate(90 19.25 4.75)\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M14.7426 15.2573L10.5 19.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M14.7426 19.5L10.5 15.2573\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default DeleteRow;\n"],"file":"DeleteRow.js"}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 DeleteTable = function DeleteTable(_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: "M4 10H9.5M20 10H13M10 4V7M20 17V6C20 5.46957 19.7893 4.96086 19.4142 4.58579C19.0391 4.21071 18.5304 4 18 4H6.99998M20 20C19.5 20 18.3962 20 18 20H6C5.46956 20 4.96086 19.7893 4.58578 19.4142C4.21071 19.0391 4 18.5304 4 18V6C4 5.61061 3.99998 4.5 3.99998 4",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M20 20L4 4",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round"
|
|
45
|
+
}));
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
var _default = DeleteTable;
|
|
49
|
+
exports.default = _default;
|
|
50
|
+
//# sourceMappingURL=DeleteTable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/DeleteTable.js"],"names":["DeleteTable","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,WAAW,GAAG,SAAdA,WAAc,OAKd;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,kQADJ;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,CADF;AAiBD,CAvBD;;eAwBeH,W","sourcesContent":["import React from \"react\";\nconst DeleteTable = ({\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=\"M4 10H9.5M20 10H13M10 4V7M20 17V6C20 5.46957 19.7893 4.96086 19.4142 4.58579C19.0391 4.21071 18.5304 4 18 4H6.99998M20 20C19.5 20 18.3962 20 18 20H6C5.46956 20 4.96086 19.7893 4.58578 19.4142C4.21071 19.0391 4 18.5304 4 18V6C4 5.61061 3.99998 4.5 3.99998 4\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M20 20L4 4\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default DeleteTable;\n"],"file":"DeleteTable.js"}
|
|
@@ -0,0 +1,55 @@
|
|
|
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 EntireScreen = function EntireScreen(_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 6.28571C3 5.67951 3.21071 5.09812 3.58579 4.66947C3.96086 4.24082 4.46957 4 5 4H19C19.5304 4 20.0391 4.24082 20.4142 4.66947C20.7893 5.09812 21 5.67951 21 6.28571V17.7143C21 18.3205 20.7893 18.9019 20.4142 19.3305C20.0391 19.7592 19.5304 20 19 20H5C4.46957 20 3.96086 19.7592 3.58579 19.3305C3.21071 18.9019 3 18.3205 3 17.7143V6.28571Z",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M14 7H17.8C17.9105 7 18 7.08954 18 7.2V11",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round"
|
|
45
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
46
|
+
d: "M10 17H6.2C6.08954 17 6 16.9105 6 16.8V13",
|
|
47
|
+
stroke: color,
|
|
48
|
+
strokeWidth: strokeWidth,
|
|
49
|
+
strokeLinecap: "round"
|
|
50
|
+
}));
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var _default = EntireScreen;
|
|
54
|
+
exports.default = _default;
|
|
55
|
+
//# sourceMappingURL=EntireScreen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/EntireScreen.js"],"names":["EntireScreen","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,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;AACE,IAAA,CAAC,EAAC,qVADJ;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,2CADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IARF,eAcE;AACE,IAAA,CAAC,EAAC,2CADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAdF,CADF;AAuBD,CA7BD;;eA8BeH,Y","sourcesContent":["import React from \"react\";\nconst EntireScreen = ({\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 6.28571C3 5.67951 3.21071 5.09812 3.58579 4.66947C3.96086 4.24082 4.46957 4 5 4H19C19.5304 4 20.0391 4.24082 20.4142 4.66947C20.7893 5.09812 21 5.67951 21 6.28571V17.7143C21 18.3205 20.7893 18.9019 20.4142 19.3305C20.0391 19.7592 19.5304 20 19 20H5C4.46957 20 3.96086 19.7592 3.58579 19.3305C3.21071 18.9019 3 18.3205 3 17.7143V6.28571Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 7H17.8C17.9105 7 18 7.08954 18 7.2V11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M10 17H6.2C6.08954 17 6 16.9105 6 16.8V13\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default EntireScreen;\n"],"file":"EntireScreen.js"}
|
|
@@ -0,0 +1,57 @@
|
|
|
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 InsertColumn = function InsertColumn(_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("rect", {
|
|
35
|
+
x: 12.75,
|
|
36
|
+
y: 4.75,
|
|
37
|
+
width: 6.5,
|
|
38
|
+
height: 14.5,
|
|
39
|
+
rx: 1.25,
|
|
40
|
+
stroke: color,
|
|
41
|
+
strokeWidth: strokeWidth
|
|
42
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
43
|
+
d: "M7 9V15",
|
|
44
|
+
stroke: color,
|
|
45
|
+
strokeWidth: strokeWidth,
|
|
46
|
+
strokeLinecap: "round"
|
|
47
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
48
|
+
d: "M10 12L4 12",
|
|
49
|
+
stroke: color,
|
|
50
|
+
strokeWidth: strokeWidth,
|
|
51
|
+
strokeLinecap: "round"
|
|
52
|
+
}));
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
var _default = InsertColumn;
|
|
56
|
+
exports.default = _default;
|
|
57
|
+
//# sourceMappingURL=InsertColumn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/InsertColumn.js"],"names":["InsertColumn","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,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;AACE,IAAA,CAAC,EAAE,KADL;AAEE,IAAA,CAAC,EAAE,IAFL;AAGE,IAAA,KAAK,EAAE,GAHT;AAIE,IAAA,MAAM,EAAE,IAJV;AAKE,IAAA,EAAE,EAAE,IALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,SADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAVF,eAgBE;AACE,IAAA,CAAC,EAAC,aADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAhBF,CADF;AAyBD,CA/BD;;eAgCeH,Y","sourcesContent":["import React from \"react\";\nconst InsertColumn = ({\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 <rect\n x={12.75}\n y={4.75}\n width={6.5}\n height={14.5}\n rx={1.25}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M7 9V15\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M10 12L4 12\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default InsertColumn;\n"],"file":"InsertColumn.js"}
|
|
@@ -0,0 +1,58 @@
|
|
|
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 InsertRow = function InsertRow(_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("rect", {
|
|
35
|
+
x: 19.25,
|
|
36
|
+
y: 12.75,
|
|
37
|
+
width: 6.5,
|
|
38
|
+
height: 14.5,
|
|
39
|
+
rx: 1.25,
|
|
40
|
+
transform: "rotate(90 19.25 12.75)",
|
|
41
|
+
stroke: color,
|
|
42
|
+
strokeWidth: strokeWidth
|
|
43
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
44
|
+
d: "M15 7L9 7",
|
|
45
|
+
stroke: color,
|
|
46
|
+
strokeWidth: strokeWidth,
|
|
47
|
+
strokeLinecap: "round"
|
|
48
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
49
|
+
d: "M12 10L12 4",
|
|
50
|
+
stroke: color,
|
|
51
|
+
strokeWidth: strokeWidth,
|
|
52
|
+
strokeLinecap: "round"
|
|
53
|
+
}));
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
var _default = InsertRow;
|
|
57
|
+
exports.default = _default;
|
|
58
|
+
//# sourceMappingURL=InsertRow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/InsertRow.js"],"names":["InsertRow","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,SAAS,GAAG,SAAZA,SAAY,OAKZ;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,EAAE,KADL;AAEE,IAAA,CAAC,EAAE,KAFL;AAGE,IAAA,KAAK,EAAE,GAHT;AAIE,IAAA,MAAM,EAAE,IAJV;AAKE,IAAA,EAAE,EAAE,IALN;AAME,IAAA,SAAS,EAAC,wBANZ;AAOE,IAAA,MAAM,EAAEF,KAPV;AAQE,IAAA,WAAW,EAAEC;AARf,IADF,eAWE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAXF,eAiBE;AACE,IAAA,CAAC,EAAC,aADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAjBF,CADF;AA0BD,CAhCD;;eAiCeH,S","sourcesContent":["import React from \"react\";\nconst InsertRow = ({\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 <rect\n x={19.25}\n y={12.75}\n width={6.5}\n height={14.5}\n rx={1.25}\n transform=\"rotate(90 19.25 12.75)\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M15 7L9 7\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M12 10L12 4\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default InsertRow;\n"],"file":"InsertRow.js"}
|
|
@@ -0,0 +1,60 @@
|
|
|
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 MergeSplit = function MergeSplit(_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 8H20.5",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round"
|
|
45
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
46
|
+
d: "M3 16H20.5",
|
|
47
|
+
stroke: color,
|
|
48
|
+
strokeWidth: strokeWidth,
|
|
49
|
+
strokeLinecap: "round"
|
|
50
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
51
|
+
d: "M12 14L12 10",
|
|
52
|
+
stroke: color,
|
|
53
|
+
strokeWidth: strokeWidth,
|
|
54
|
+
strokeLinecap: "round"
|
|
55
|
+
}));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
var _default = MergeSplit;
|
|
59
|
+
exports.default = _default;
|
|
60
|
+
//# sourceMappingURL=MergeSplit.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MergeSplit.js"],"names":["MergeSplit","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,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,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,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IARF,eAcE;AACE,IAAA,CAAC,EAAC,YADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAdF,eAoBE;AACE,IAAA,CAAC,EAAC,cADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IApBF,CADF;AA6BD,CAnCD;;eAoCeH,U","sourcesContent":["import React from \"react\";\nconst MergeSplit = ({\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 8H20.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M3 16H20.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M12 14L12 10\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default MergeSplit;\n"],"file":"MergeSplit.js"}
|
|
@@ -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 MicOff = function MicOff(_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: "M9.13466 5C9.27766 4.56335 9.53111 4.16167 9.87863 3.83245C10.4412 3.29945 11.2043 3.00002 11.9999 3.00002C12.7956 3.00002 13.5587 3.29945 14.1213 3.83245C14.6839 4.36545 14.9999 5.08835 14.9999 5.84212V10.579C14.9999 11.3327 14.6839 12.0556 14.1213 12.5886C13.5587 13.1216 12.7956 13.4211 11.9999 13.4211C11.2043 13.4211 10.4412 13.1216 9.87863 12.5886C9.31602 12.0556 8.99995 11.3327 8.99995 10.579V8.5",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M5 10.579C5 12.3378 5.7375 14.0245 7.05025 15.2682C8.36301 16.5119 10.1435 17.2105 12 17.2105C13.1928 17.2105 14.3542 16.9221 15.3803 16.3861M19 10.579C19 12.2144 18.3624 13.7875 17.2175 15",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M7.99992 21H15.9999",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round",
|
|
51
|
+
strokeLinejoin: "round"
|
|
52
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
53
|
+
d: "M11.9999 17.2106V21",
|
|
54
|
+
stroke: color,
|
|
55
|
+
strokeWidth: strokeWidth,
|
|
56
|
+
strokeLinecap: "round",
|
|
57
|
+
strokeLinejoin: "round"
|
|
58
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
59
|
+
d: "M5 3L19 21",
|
|
60
|
+
stroke: color,
|
|
61
|
+
strokeWidth: strokeWidth,
|
|
62
|
+
strokeLinecap: "round"
|
|
63
|
+
}));
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
var _default = MicOff;
|
|
67
|
+
exports.default = _default;
|
|
68
|
+
//# sourceMappingURL=MicOff.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MicOff.js"],"names":["MicOff","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,MAAM,GAAG,SAATA,MAAS,OAKT;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,sZADJ;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,+LADJ;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,qBADJ;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,YADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA7BF,CADF;AAsCD,CA5CD;;eA6CeH,M","sourcesContent":["import React from \"react\";\nconst MicOff = ({\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=\"M9.13466 5C9.27766 4.56335 9.53111 4.16167 9.87863 3.83245C10.4412 3.29945 11.2043 3.00002 11.9999 3.00002C12.7956 3.00002 13.5587 3.29945 14.1213 3.83245C14.6839 4.36545 14.9999 5.08835 14.9999 5.84212V10.579C14.9999 11.3327 14.6839 12.0556 14.1213 12.5886C13.5587 13.1216 12.7956 13.4211 11.9999 13.4211C11.2043 13.4211 10.4412 13.1216 9.87863 12.5886C9.31602 12.0556 8.99995 11.3327 8.99995 10.579V8.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 10.579C5 12.3378 5.7375 14.0245 7.05025 15.2682C8.36301 16.5119 10.1435 17.2105 12 17.2105C13.1928 17.2105 14.3542 16.9221 15.3803 16.3861M19 10.579C19 12.2144 18.3624 13.7875 17.2175 15\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M7.99992 21H15.9999\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M11.9999 17.2106V21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 3L19 21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default MicOff;\n"],"file":"MicOff.js"}
|