@bigbinary/neeto-icons 1.19.1 → 1.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/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/ToggleHeaderRow.js +75 -0
- package/dist/cjs/icons/ToggleHeaderRow.js.map +1 -0
- package/dist/cjs/icons/index.js +56 -0
- package/dist/cjs/icons/index.js.map +1 -1
- 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/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/ToggleHeaderRow.js +65 -0
- package/dist/icons/ToggleHeaderRow.js.map +1 -0
- package/dist/icons/index.js +8 -1
- package/dist/icons/index.js.map +1 -1
- package/icons.d.ts +7 -0
- package/package.json +1 -1
|
@@ -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,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,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"}
|
package/dist/cjs/icons/index.js
CHANGED
|
@@ -339,6 +339,24 @@ Object.defineProperty(exports, "Delete", {
|
|
|
339
339
|
return _Delete.default;
|
|
340
340
|
}
|
|
341
341
|
});
|
|
342
|
+
Object.defineProperty(exports, "DeleteColumn", {
|
|
343
|
+
enumerable: true,
|
|
344
|
+
get: function get() {
|
|
345
|
+
return _DeleteColumn.default;
|
|
346
|
+
}
|
|
347
|
+
});
|
|
348
|
+
Object.defineProperty(exports, "DeleteRow", {
|
|
349
|
+
enumerable: true,
|
|
350
|
+
get: function get() {
|
|
351
|
+
return _DeleteRow.default;
|
|
352
|
+
}
|
|
353
|
+
});
|
|
354
|
+
Object.defineProperty(exports, "DeleteTable", {
|
|
355
|
+
enumerable: true,
|
|
356
|
+
get: function get() {
|
|
357
|
+
return _DeleteTable.default;
|
|
358
|
+
}
|
|
359
|
+
});
|
|
342
360
|
Object.defineProperty(exports, "Design", {
|
|
343
361
|
enumerable: true,
|
|
344
362
|
get: function get() {
|
|
@@ -699,6 +717,18 @@ Object.defineProperty(exports, "Input", {
|
|
|
699
717
|
return _Input.default;
|
|
700
718
|
}
|
|
701
719
|
});
|
|
720
|
+
Object.defineProperty(exports, "InsertColumn", {
|
|
721
|
+
enumerable: true,
|
|
722
|
+
get: function get() {
|
|
723
|
+
return _InsertColumn.default;
|
|
724
|
+
}
|
|
725
|
+
});
|
|
726
|
+
Object.defineProperty(exports, "InsertRow", {
|
|
727
|
+
enumerable: true,
|
|
728
|
+
get: function get() {
|
|
729
|
+
return _InsertRow.default;
|
|
730
|
+
}
|
|
731
|
+
});
|
|
702
732
|
Object.defineProperty(exports, "Invoice", {
|
|
703
733
|
enumerable: true,
|
|
704
734
|
get: function get() {
|
|
@@ -861,6 +891,12 @@ Object.defineProperty(exports, "Merge", {
|
|
|
861
891
|
return _Merge.default;
|
|
862
892
|
}
|
|
863
893
|
});
|
|
894
|
+
Object.defineProperty(exports, "MergeSplit", {
|
|
895
|
+
enumerable: true,
|
|
896
|
+
get: function get() {
|
|
897
|
+
return _MergeSplit.default;
|
|
898
|
+
}
|
|
899
|
+
});
|
|
864
900
|
Object.defineProperty(exports, "MergedPullRequest", {
|
|
865
901
|
enumerable: true,
|
|
866
902
|
get: function get() {
|
|
@@ -1401,6 +1437,12 @@ Object.defineProperty(exports, "TimeTracking", {
|
|
|
1401
1437
|
return _TimeTracking.default;
|
|
1402
1438
|
}
|
|
1403
1439
|
});
|
|
1440
|
+
Object.defineProperty(exports, "ToggleHeaderRow", {
|
|
1441
|
+
enumerable: true,
|
|
1442
|
+
get: function get() {
|
|
1443
|
+
return _ToggleHeaderRow.default;
|
|
1444
|
+
}
|
|
1445
|
+
});
|
|
1404
1446
|
Object.defineProperty(exports, "Transaction", {
|
|
1405
1447
|
enumerable: true,
|
|
1406
1448
|
get: function get() {
|
|
@@ -1728,6 +1770,12 @@ var _Dashboard = _interopRequireDefault(require("./Dashboard"));
|
|
|
1728
1770
|
|
|
1729
1771
|
var _Database = _interopRequireDefault(require("./Database"));
|
|
1730
1772
|
|
|
1773
|
+
var _DeleteColumn = _interopRequireDefault(require("./DeleteColumn"));
|
|
1774
|
+
|
|
1775
|
+
var _DeleteRow = _interopRequireDefault(require("./DeleteRow"));
|
|
1776
|
+
|
|
1777
|
+
var _DeleteTable = _interopRequireDefault(require("./DeleteTable"));
|
|
1778
|
+
|
|
1731
1779
|
var _Delete = _interopRequireDefault(require("./Delete"));
|
|
1732
1780
|
|
|
1733
1781
|
var _Design = _interopRequireDefault(require("./Design"));
|
|
@@ -1850,6 +1898,10 @@ var _Info = _interopRequireDefault(require("./Info"));
|
|
|
1850
1898
|
|
|
1851
1899
|
var _Input = _interopRequireDefault(require("./Input"));
|
|
1852
1900
|
|
|
1901
|
+
var _InsertColumn = _interopRequireDefault(require("./InsertColumn"));
|
|
1902
|
+
|
|
1903
|
+
var _InsertRow = _interopRequireDefault(require("./InsertRow"));
|
|
1904
|
+
|
|
1853
1905
|
var _Invoice = _interopRequireDefault(require("./Invoice"));
|
|
1854
1906
|
|
|
1855
1907
|
var _IpAddress = _interopRequireDefault(require("./IpAddress"));
|
|
@@ -1902,6 +1954,8 @@ var _MenuLayout = _interopRequireDefault(require("./MenuLayout"));
|
|
|
1902
1954
|
|
|
1903
1955
|
var _MenuSquare = _interopRequireDefault(require("./MenuSquare"));
|
|
1904
1956
|
|
|
1957
|
+
var _MergeSplit = _interopRequireDefault(require("./MergeSplit"));
|
|
1958
|
+
|
|
1905
1959
|
var _Merge = _interopRequireDefault(require("./Merge"));
|
|
1906
1960
|
|
|
1907
1961
|
var _MergedPullRequest = _interopRequireDefault(require("./MergedPullRequest"));
|
|
@@ -2084,6 +2138,8 @@ var _Tickets = _interopRequireDefault(require("./Tickets"));
|
|
|
2084
2138
|
|
|
2085
2139
|
var _TimeTracking = _interopRequireDefault(require("./TimeTracking"));
|
|
2086
2140
|
|
|
2141
|
+
var _ToggleHeaderRow = _interopRequireDefault(require("./ToggleHeaderRow"));
|
|
2142
|
+
|
|
2087
2143
|
var _Transaction = _interopRequireDefault(require("./Transaction"));
|
|
2088
2144
|
|
|
2089
2145
|
var _Translate = _interopRequireDefault(require("./Translate"));
|