@bigbinary/neeto-icons 1.20.24 → 1.20.26
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/MarginAll.js +75 -0
- package/dist/cjs/icons/MarginAll.js.map +1 -0
- package/dist/cjs/icons/MarginBottom.js +60 -0
- package/dist/cjs/icons/MarginBottom.js.map +1 -0
- package/dist/cjs/icons/MarginLeft.js +60 -0
- package/dist/cjs/icons/MarginLeft.js.map +1 -0
- package/dist/cjs/icons/MarginRight.js +60 -0
- package/dist/cjs/icons/MarginRight.js.map +1 -0
- package/dist/cjs/icons/MarginTop.js +60 -0
- package/dist/cjs/icons/MarginTop.js.map +1 -0
- package/dist/cjs/icons/MarginX.js +65 -0
- package/dist/cjs/icons/MarginX.js.map +1 -0
- package/dist/cjs/icons/MarginY.js +65 -0
- package/dist/cjs/icons/MarginY.js.map +1 -0
- package/dist/cjs/icons/PaddingAll.js +75 -0
- package/dist/cjs/icons/PaddingAll.js.map +1 -0
- package/dist/cjs/icons/PaddingBottom.js +60 -0
- package/dist/cjs/icons/PaddingBottom.js.map +1 -0
- package/dist/cjs/icons/PaddingLeft.js +60 -0
- package/dist/cjs/icons/PaddingLeft.js.map +1 -0
- package/dist/cjs/icons/PaddingRight.js +60 -0
- package/dist/cjs/icons/PaddingRight.js.map +1 -0
- package/dist/cjs/icons/PaddingTop.js +60 -0
- package/dist/cjs/icons/PaddingTop.js.map +1 -0
- package/dist/cjs/icons/PaddingX.js +65 -0
- package/dist/cjs/icons/PaddingX.js.map +1 -0
- package/dist/cjs/icons/PaddingY.js +65 -0
- package/dist/cjs/icons/PaddingY.js.map +1 -0
- package/dist/cjs/icons/index.js +112 -0
- package/dist/cjs/icons/index.js.map +1 -1
- package/dist/icons/MarginAll.js +65 -0
- package/dist/icons/MarginAll.js.map +1 -0
- package/dist/icons/MarginBottom.js +50 -0
- package/dist/icons/MarginBottom.js.map +1 -0
- package/dist/icons/MarginLeft.js +50 -0
- package/dist/icons/MarginLeft.js.map +1 -0
- package/dist/icons/MarginRight.js +50 -0
- package/dist/icons/MarginRight.js.map +1 -0
- package/dist/icons/MarginTop.js +50 -0
- package/dist/icons/MarginTop.js.map +1 -0
- package/dist/icons/MarginX.js +55 -0
- package/dist/icons/MarginX.js.map +1 -0
- package/dist/icons/MarginY.js +55 -0
- package/dist/icons/MarginY.js.map +1 -0
- package/dist/icons/PaddingAll.js +65 -0
- package/dist/icons/PaddingAll.js.map +1 -0
- package/dist/icons/PaddingBottom.js +50 -0
- package/dist/icons/PaddingBottom.js.map +1 -0
- package/dist/icons/PaddingLeft.js +50 -0
- package/dist/icons/PaddingLeft.js.map +1 -0
- package/dist/icons/PaddingRight.js +50 -0
- package/dist/icons/PaddingRight.js.map +1 -0
- package/dist/icons/PaddingTop.js +50 -0
- package/dist/icons/PaddingTop.js.map +1 -0
- package/dist/icons/PaddingX.js +55 -0
- package/dist/icons/PaddingX.js.map +1 -0
- package/dist/icons/PaddingY.js +55 -0
- package/dist/icons/PaddingY.js.map +1 -0
- package/dist/icons/index.js +15 -1
- package/dist/icons/index.js.map +1 -1
- package/icons.d.ts +14 -0
- package/package.json +2 -2
|
@@ -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 MarginAll = function MarginAll(_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("g", {
|
|
35
|
+
clipPath: "url(#MarginAll_js__clip0_7507_1454)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 6,
|
|
38
|
+
y: 6,
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
rx: 2,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M3 18L3 6",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
50
|
+
d: "M21 18L21 6",
|
|
51
|
+
stroke: color,
|
|
52
|
+
strokeWidth: strokeWidth,
|
|
53
|
+
strokeLinecap: "round"
|
|
54
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
+
d: "M6 3H18",
|
|
56
|
+
stroke: color,
|
|
57
|
+
strokeWidth: strokeWidth,
|
|
58
|
+
strokeLinecap: "round"
|
|
59
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
60
|
+
d: "M6 21H18",
|
|
61
|
+
stroke: color,
|
|
62
|
+
strokeWidth: strokeWidth,
|
|
63
|
+
strokeLinecap: "round"
|
|
64
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
65
|
+
id: "MarginAll_js__clip0_7507_1454"
|
|
66
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
67
|
+
width: 24,
|
|
68
|
+
height: 24,
|
|
69
|
+
fill: color
|
|
70
|
+
}))));
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
var _default = MarginAll;
|
|
74
|
+
exports.default = _default;
|
|
75
|
+
//# sourceMappingURL=MarginAll.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MarginAll.js"],"names":["MarginAll","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;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,EAHT;AAIE,IAAA,MAAM,EAAE,EAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,WADJ;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,eAsBE;AACE,IAAA,CAAC,EAAC,SADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAtBF,eA4BE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA5BF,CADF,eAoCE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CApCF,CADF;AA4CD,CAlDD;;eAmDeF,S","sourcesContent":["import React from \"react\";\nconst MarginAll = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#MarginAll_js__clip0_7507_1454)\">\n <rect\n x={6}\n y={6}\n width={12}\n height={12}\n rx={2}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M3 18L3 6\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M21 18L21 6\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M6 3H18\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M6 21H18\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MarginAll_js__clip0_7507_1454\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MarginAll;\n"],"file":"MarginAll.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 MarginBottom = function MarginBottom(_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("g", {
|
|
35
|
+
clipPath: "url(#MarginBottom_js__clip0_7507_1482)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 6,
|
|
38
|
+
y: 6,
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
rx: 2,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M6 21H18",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
50
|
+
id: "MarginBottom_js__clip0_7507_1482"
|
|
51
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
52
|
+
width: 24,
|
|
53
|
+
height: 24,
|
|
54
|
+
fill: color
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
var _default = MarginBottom;
|
|
59
|
+
exports.default = _default;
|
|
60
|
+
//# sourceMappingURL=MarginBottom.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MarginBottom.js"],"names":["MarginBottom","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;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,EAHT;AAIE,IAAA,MAAM,EAAE,EAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAVF,CADF,eAkBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAlBF,CADF;AA0BD,CAhCD;;eAiCeF,Y","sourcesContent":["import React from \"react\";\nconst MarginBottom = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#MarginBottom_js__clip0_7507_1482)\">\n <rect\n x={6}\n y={6}\n width={12}\n height={12}\n rx={2}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M6 21H18\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MarginBottom_js__clip0_7507_1482\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MarginBottom;\n"],"file":"MarginBottom.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 MarginLeft = function MarginLeft(_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("g", {
|
|
35
|
+
clipPath: "url(#MarginLeft_js__clip0_7507_1489)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 6,
|
|
38
|
+
y: 6,
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
rx: 2,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M3 18L3 6",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
50
|
+
id: "MarginLeft_js__clip0_7507_1489"
|
|
51
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
52
|
+
width: 24,
|
|
53
|
+
height: 24,
|
|
54
|
+
fill: color
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
var _default = MarginLeft;
|
|
59
|
+
exports.default = _default;
|
|
60
|
+
//# sourceMappingURL=MarginLeft.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MarginLeft.js"],"names":["MarginLeft","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;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,EAHT;AAIE,IAAA,MAAM,EAAE,EAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAVF,CADF,eAkBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAlBF,CADF;AA0BD,CAhCD;;eAiCeF,U","sourcesContent":["import React from \"react\";\nconst MarginLeft = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#MarginLeft_js__clip0_7507_1489)\">\n <rect\n x={6}\n y={6}\n width={12}\n height={12}\n rx={2}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M3 18L3 6\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MarginLeft_js__clip0_7507_1489\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MarginLeft;\n"],"file":"MarginLeft.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 MarginRight = function MarginRight(_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("g", {
|
|
35
|
+
clipPath: "url(#MarginRight_js__clip0_7507_1496)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 6,
|
|
38
|
+
y: 6,
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
rx: 2,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M21 18L21 6",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
50
|
+
id: "MarginRight_js__clip0_7507_1496"
|
|
51
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
52
|
+
width: 24,
|
|
53
|
+
height: 24,
|
|
54
|
+
fill: color
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
var _default = MarginRight;
|
|
59
|
+
exports.default = _default;
|
|
60
|
+
//# sourceMappingURL=MarginRight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MarginRight.js"],"names":["MarginRight","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;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,EAHT;AAIE,IAAA,MAAM,EAAE,EAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,aADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAVF,CADF,eAkBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAlBF,CADF;AA0BD,CAhCD;;eAiCeF,W","sourcesContent":["import React from \"react\";\nconst MarginRight = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#MarginRight_js__clip0_7507_1496)\">\n <rect\n x={6}\n y={6}\n width={12}\n height={12}\n rx={2}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M21 18L21 6\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MarginRight_js__clip0_7507_1496\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MarginRight;\n"],"file":"MarginRight.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 MarginTop = function MarginTop(_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("g", {
|
|
35
|
+
clipPath: "url(#MarginTop_js__clip0_7507_1475)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 6,
|
|
38
|
+
y: 6,
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
rx: 2,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M6 3H18",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
50
|
+
id: "MarginTop_js__clip0_7507_1475"
|
|
51
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
52
|
+
width: 24,
|
|
53
|
+
height: 24,
|
|
54
|
+
fill: color
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
var _default = MarginTop;
|
|
59
|
+
exports.default = _default;
|
|
60
|
+
//# sourceMappingURL=MarginTop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MarginTop.js"],"names":["MarginTop","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;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,EAHT;AAIE,IAAA,MAAM,EAAE,EAJV;AAKE,IAAA,EAAE,EAAE,CALN;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,CADF,eAkBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAlBF,CADF;AA0BD,CAhCD;;eAiCeF,S","sourcesContent":["import React from \"react\";\nconst MarginTop = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#MarginTop_js__clip0_7507_1475)\">\n <rect\n x={6}\n y={6}\n width={12}\n height={12}\n rx={2}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M6 3H18\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MarginTop_js__clip0_7507_1475\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MarginTop;\n"],"file":"MarginTop.js"}
|
|
@@ -0,0 +1,65 @@
|
|
|
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 MarginX = function MarginX(_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("g", {
|
|
35
|
+
clipPath: "url(#MarginX_js__clip0_7507_1569)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 6,
|
|
38
|
+
y: 6,
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
rx: 2,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M3 18L3 6",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
50
|
+
d: "M21 18L21 6",
|
|
51
|
+
stroke: color,
|
|
52
|
+
strokeWidth: strokeWidth,
|
|
53
|
+
strokeLinecap: "round"
|
|
54
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
55
|
+
id: "MarginX_js__clip0_7507_1569"
|
|
56
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
57
|
+
width: 24,
|
|
58
|
+
height: 24,
|
|
59
|
+
fill: color
|
|
60
|
+
}))));
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
var _default = MarginX;
|
|
64
|
+
exports.default = _default;
|
|
65
|
+
//# sourceMappingURL=MarginX.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MarginX.js"],"names":["MarginX","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,OAAO,GAAG,SAAVA,OAAU,OAKV;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,EAHT;AAIE,IAAA,MAAM,EAAE,EAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,WADJ;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,eAwBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAxBF,CADF;AAgCD,CAtCD;;eAuCeF,O","sourcesContent":["import React from \"react\";\nconst MarginX = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#MarginX_js__clip0_7507_1569)\">\n <rect\n x={6}\n y={6}\n width={12}\n height={12}\n rx={2}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M3 18L3 6\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M21 18L21 6\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MarginX_js__clip0_7507_1569\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MarginX;\n"],"file":"MarginX.js"}
|
|
@@ -0,0 +1,65 @@
|
|
|
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 MarginY = function MarginY(_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("g", {
|
|
35
|
+
clipPath: "url(#MarginY_js__clip0_7507_1503)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 6,
|
|
38
|
+
y: 6,
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
rx: 2,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M6 3H18",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
50
|
+
d: "M6 21H18",
|
|
51
|
+
stroke: color,
|
|
52
|
+
strokeWidth: strokeWidth,
|
|
53
|
+
strokeLinecap: "round"
|
|
54
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
55
|
+
id: "MarginY_js__clip0_7507_1503"
|
|
56
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
57
|
+
width: 24,
|
|
58
|
+
height: 24,
|
|
59
|
+
fill: color
|
|
60
|
+
}))));
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
var _default = MarginY;
|
|
64
|
+
exports.default = _default;
|
|
65
|
+
//# sourceMappingURL=MarginY.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MarginY.js"],"names":["MarginY","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,OAAO,GAAG,SAAVA,OAAU,OAKV;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,EAHT;AAIE,IAAA,MAAM,EAAE,EAJV;AAKE,IAAA,EAAE,EAAE,CALN;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,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAhBF,CADF,eAwBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CAxBF,CADF;AAgCD,CAtCD;;eAuCeF,O","sourcesContent":["import React from \"react\";\nconst MarginY = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#MarginY_js__clip0_7507_1503)\">\n <rect\n x={6}\n y={6}\n width={12}\n height={12}\n rx={2}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M6 3H18\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M6 21H18\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MarginY_js__clip0_7507_1503\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MarginY;\n"],"file":"MarginY.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 PaddingAll = function PaddingAll(_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("g", {
|
|
35
|
+
clipPath: "url(#PaddingAll_js__clip0_7507_1519)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 9,
|
|
38
|
+
y: 9,
|
|
39
|
+
width: 6,
|
|
40
|
+
height: 6,
|
|
41
|
+
rx: 1,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M21 5L21 19",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
50
|
+
d: "M3 5L3 19",
|
|
51
|
+
stroke: color,
|
|
52
|
+
strokeWidth: strokeWidth,
|
|
53
|
+
strokeLinecap: "round"
|
|
54
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
+
d: "M19 3L5 3",
|
|
56
|
+
stroke: color,
|
|
57
|
+
strokeWidth: strokeWidth,
|
|
58
|
+
strokeLinecap: "round"
|
|
59
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
60
|
+
d: "M19 21L5 21",
|
|
61
|
+
stroke: color,
|
|
62
|
+
strokeWidth: strokeWidth,
|
|
63
|
+
strokeLinecap: "round"
|
|
64
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
65
|
+
id: "PaddingAll_js__clip0_7507_1519"
|
|
66
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
67
|
+
width: 24,
|
|
68
|
+
height: 24,
|
|
69
|
+
fill: color
|
|
70
|
+
}))));
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
var _default = PaddingAll;
|
|
74
|
+
exports.default = _default;
|
|
75
|
+
//# sourceMappingURL=PaddingAll.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/PaddingAll.js"],"names":["PaddingAll","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;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,CAFL;AAGE,IAAA,KAAK,EAAE,CAHT;AAIE,IAAA,MAAM,EAAE,CAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAEF,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IADF,eAUE;AACE,IAAA,CAAC,EAAC,aADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAVF,eAgBE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAhBF,eAsBE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAtBF,eA4BE;AACE,IAAA,CAAC,EAAC,aADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA5BF,CADF,eAoCE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CApCF,CADF;AA4CD,CAlDD;;eAmDeF,U","sourcesContent":["import React from \"react\";\nconst PaddingAll = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <g clipPath=\"url(#PaddingAll_js__clip0_7507_1519)\">\n <rect\n x={9}\n y={9}\n width={6}\n height={6}\n rx={1}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M21 5L21 19\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M3 5L3 19\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M19 3L5 3\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M19 21L5 21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"PaddingAll_js__clip0_7507_1519\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default PaddingAll;\n"],"file":"PaddingAll.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 PaddingBottom = function PaddingBottom(_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("g", {
|
|
35
|
+
clipPath: "url(#PaddingBottom_js__clip0_7507_1548)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
37
|
+
x: 9,
|
|
38
|
+
y: 9,
|
|
39
|
+
width: 6,
|
|
40
|
+
height: 6,
|
|
41
|
+
rx: 1,
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
+
d: "M19 21L5 21",
|
|
46
|
+
stroke: color,
|
|
47
|
+
strokeWidth: strokeWidth,
|
|
48
|
+
strokeLinecap: "round"
|
|
49
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
50
|
+
id: "PaddingBottom_js__clip0_7507_1548"
|
|
51
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
52
|
+
width: 24,
|
|
53
|
+
height: 24,
|
|
54
|
+
fill: color
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
var _default = PaddingBottom;
|
|
59
|
+
exports.default = _default;
|
|
60
|
+
//# sourceMappingURL=PaddingBottom.js.map
|