@bigbinary/neeto-icons 1.20.41 → 1.20.43

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.
@@ -0,0 +1,52 @@
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 = ["width", "height"];
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 BringToBack = function BringToBack(_ref) {
21
+ var _ref$width = _ref.width,
22
+ width = _ref$width === void 0 ? 80 : _ref$width,
23
+ _ref$height = _ref.height,
24
+ height = _ref$height === void 0 ? 26 : _ref$height,
25
+ props = _objectWithoutProperties(_ref, _excluded);
26
+
27
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
28
+ width: width,
29
+ height: height,
30
+ fill: "none",
31
+ viewBox: "0 0 24 24"
32
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
33
+ clipPath: "url(#BringToBack_js__a)"
34
+ }, /*#__PURE__*/_react.default.createElement("path", {
35
+ fill: "#0C111D",
36
+ d: "M9 15h6v4H5V9h4v6Z",
37
+ "data-dark-mode-fill-color": "true"
38
+ }), /*#__PURE__*/_react.default.createElement("path", {
39
+ stroke: "#0C111D",
40
+ d: "M9.5 5.5h9v9h-9z",
41
+ "data-dark-mode-stroke-color": "true"
42
+ })), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
43
+ id: "BringToBack_js__a"
44
+ }, /*#__PURE__*/_react.default.createElement("path", {
45
+ fill: "#fff",
46
+ d: "M0 0h24v24H0z"
47
+ }))));
48
+ };
49
+
50
+ var _default = BringToBack;
51
+ exports.default = _default;
52
+ //# sourceMappingURL=BringToBack.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../generate/elements/BringToBack.js"],"names":["BringToBack","width","height","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,WAAW,GAAG,SAAdA,WAAc,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC7D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,IAAI,EAAC,SADP;AAEE,IAAA,CAAC,EAAC,oBAFJ;AAGE,iCAA0B;AAH5B,IADF,eAME;AACE,IAAA,MAAM,EAAC,SADT;AAEE,IAAA,CAAC,EAAC,kBAFJ;AAGE,mCAA4B;AAH9B,IANF,CAPF,eAmBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAnBF,CADF;AA2BD,CA5BD;;eA6BeH,W","sourcesContent":["import React from \"react\";\nconst BringToBack = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g clipPath=\"url(#BringToBack_js__a)\">\n <path\n fill=\"#0C111D\"\n d=\"M9 15h6v4H5V9h4v6Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path\n stroke=\"#0C111D\"\n d=\"M9.5 5.5h9v9h-9z\"\n data-dark-mode-stroke-color=\"true\"\n />\n </g>\n <defs>\n <clipPath id=\"BringToBack_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default BringToBack;\n"],"file":"BringToBack.js"}
@@ -0,0 +1,51 @@
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 = ["width", "height"];
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 BringToFront = function BringToFront(_ref) {
21
+ var _ref$width = _ref.width,
22
+ width = _ref$width === void 0 ? 80 : _ref$width,
23
+ _ref$height = _ref.height,
24
+ height = _ref$height === void 0 ? 26 : _ref$height,
25
+ props = _objectWithoutProperties(_ref, _excluded);
26
+
27
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
28
+ width: width,
29
+ height: height,
30
+ fill: "none",
31
+ viewBox: "0 0 24 24"
32
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
33
+ fill: "#0C111D",
34
+ clipPath: "url(#BringToFront_js__a)"
35
+ }, /*#__PURE__*/_react.default.createElement("path", {
36
+ d: "M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z",
37
+ "data-dark-mode-fill-color": "true"
38
+ }), /*#__PURE__*/_react.default.createElement("path", {
39
+ d: "M9 5h10v10H9z",
40
+ "data-dark-mode-fill-color": "true"
41
+ })), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
42
+ id: "BringToFront_js__a"
43
+ }, /*#__PURE__*/_react.default.createElement("path", {
44
+ fill: "#fff",
45
+ d: "M0 0h24v24H0z"
46
+ }))));
47
+ };
48
+
49
+ var _default = BringToFront;
50
+ exports.default = _default;
51
+ //# sourceMappingURL=BringToFront.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../generate/elements/BringToFront.js"],"names":["BringToFront","width","height","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,YAAY,GAAG,SAAfA,YAAe,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC9D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,IAAI,EAAC,SAAR;AAAkB,IAAA,QAAQ,EAAC;AAA3B,kBACE;AACE,IAAA,CAAC,EAAC,kDADJ;AAEE,iCAA0B;AAF5B,IADF,eAKE;AAAM,IAAA,CAAC,EAAC,eAAR;AAAwB,iCAA0B;AAAlD,IALF,CAPF,eAcE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAdF,CADF;AAsBD,CAvBD;;eAwBeH,Y","sourcesContent":["import React from \"react\";\nconst BringToFront = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g fill=\"#0C111D\" clipPath=\"url(#BringToFront_js__a)\">\n <path\n d=\"M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path d=\"M9 5h10v10H9z\" data-dark-mode-fill-color=\"true\" />\n </g>\n <defs>\n <clipPath id=\"BringToFront_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default BringToFront;\n"],"file":"BringToFront.js"}
@@ -0,0 +1,51 @@
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 = ["width", "height"];
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 MoveBackward = function MoveBackward(_ref) {
21
+ var _ref$width = _ref.width,
22
+ width = _ref$width === void 0 ? 80 : _ref$width,
23
+ _ref$height = _ref.height,
24
+ height = _ref$height === void 0 ? 26 : _ref$height,
25
+ props = _objectWithoutProperties(_ref, _excluded);
26
+
27
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
28
+ width: width,
29
+ height: height,
30
+ fill: "none",
31
+ viewBox: "0 0 24 24"
32
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
33
+ fill: "#0C111D",
34
+ clipPath: "url(#MoveBackward_js__a)"
35
+ }, /*#__PURE__*/_react.default.createElement("path", {
36
+ d: "M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z",
37
+ "data-dark-mode-fill-color": "true"
38
+ }), /*#__PURE__*/_react.default.createElement("path", {
39
+ d: "M19 15H9V5h10v10Zm-5-7.333a.333.333 0 0 0-.333.333v3.196l-1.432-1.431-.051-.043a.333.333 0 0 0-.462.462l.043.051 2 2c.114.114.29.129.419.043l.051-.043 2-2a.333.333 0 1 0-.47-.47l-1.432 1.431V8A.333.333 0 0 0 14 7.667Z",
40
+ "data-dark-mode-fill-color": "true"
41
+ })), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
42
+ id: "MoveBackward_js__a"
43
+ }, /*#__PURE__*/_react.default.createElement("path", {
44
+ fill: "#fff",
45
+ d: "M0 0h24v24H0z"
46
+ }))));
47
+ };
48
+
49
+ var _default = MoveBackward;
50
+ exports.default = _default;
51
+ //# sourceMappingURL=MoveBackward.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../generate/elements/MoveBackward.js"],"names":["MoveBackward","width","height","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,YAAY,GAAG,SAAfA,YAAe,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC9D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,IAAI,EAAC,SAAR;AAAkB,IAAA,QAAQ,EAAC;AAA3B,kBACE;AACE,IAAA,CAAC,EAAC,kDADJ;AAEE,iCAA0B;AAF5B,IADF,eAKE;AACE,IAAA,CAAC,EAAC,2NADJ;AAEE,iCAA0B;AAF5B,IALF,CAPF,eAiBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAjBF,CADF;AAyBD,CA1BD;;eA2BeH,Y","sourcesContent":["import React from \"react\";\nconst MoveBackward = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g fill=\"#0C111D\" clipPath=\"url(#MoveBackward_js__a)\">\n <path\n d=\"M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path\n d=\"M19 15H9V5h10v10Zm-5-7.333a.333.333 0 0 0-.333.333v3.196l-1.432-1.431-.051-.043a.333.333 0 0 0-.462.462l.043.051 2 2c.114.114.29.129.419.043l.051-.043 2-2a.333.333 0 1 0-.47-.47l-1.432 1.431V8A.333.333 0 0 0 14 7.667Z\"\n data-dark-mode-fill-color=\"true\"\n />\n </g>\n <defs>\n <clipPath id=\"MoveBackward_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MoveBackward;\n"],"file":"MoveBackward.js"}
@@ -0,0 +1,51 @@
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 = ["width", "height"];
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 MoveForward = function MoveForward(_ref) {
21
+ var _ref$width = _ref.width,
22
+ width = _ref$width === void 0 ? 80 : _ref$width,
23
+ _ref$height = _ref.height,
24
+ height = _ref$height === void 0 ? 26 : _ref$height,
25
+ props = _objectWithoutProperties(_ref, _excluded);
26
+
27
+ return /*#__PURE__*/_react.default.createElement("svg", _extends({
28
+ width: width,
29
+ height: height,
30
+ fill: "none",
31
+ viewBox: "0 0 24 24"
32
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
33
+ fill: "#0C111D",
34
+ clipPath: "url(#MoveForward_js__a)"
35
+ }, /*#__PURE__*/_react.default.createElement("path", {
36
+ d: "M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z",
37
+ "data-dark-mode-fill-color": "true"
38
+ }), /*#__PURE__*/_react.default.createElement("path", {
39
+ d: "M19 15H9V5h10v10Zm-4.765-7.235a.333.333 0 0 0-.419-.043l-.051.043-2 2a.333.333 0 1 0 .47.47l1.432-1.431V12a.333.333 0 1 0 .666 0V8.804l1.432 1.431.051.043a.333.333 0 0 0 .462-.462l-.043-.051-2-2Z",
40
+ "data-dark-mode-fill-color": "true"
41
+ })), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
42
+ id: "MoveForward_js__a"
43
+ }, /*#__PURE__*/_react.default.createElement("path", {
44
+ fill: "#fff",
45
+ d: "M0 0h24v24H0z"
46
+ }))));
47
+ };
48
+
49
+ var _default = MoveForward;
50
+ exports.default = _default;
51
+ //# sourceMappingURL=MoveForward.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../generate/elements/MoveForward.js"],"names":["MoveForward","width","height","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,WAAW,GAAG,SAAdA,WAAc,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC7D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,IAAI,EAAC,SAAR;AAAkB,IAAA,QAAQ,EAAC;AAA3B,kBACE;AACE,IAAA,CAAC,EAAC,kDADJ;AAEE,iCAA0B;AAF5B,IADF,eAKE;AACE,IAAA,CAAC,EAAC,qMADJ;AAEE,iCAA0B;AAF5B,IALF,CAPF,eAiBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAjBF,CADF;AAyBD,CA1BD;;eA2BeH,W","sourcesContent":["import React from \"react\";\nconst MoveForward = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g fill=\"#0C111D\" clipPath=\"url(#MoveForward_js__a)\">\n <path\n d=\"M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path\n d=\"M19 15H9V5h10v10Zm-4.765-7.235a.333.333 0 0 0-.419-.043l-.051.043-2 2a.333.333 0 1 0 .47.47l1.432-1.431V12a.333.333 0 1 0 .666 0V8.804l1.432 1.431.051.043a.333.333 0 0 0 .462-.462l-.043-.051-2-2Z\"\n data-dark-mode-fill-color=\"true\"\n />\n </g>\n <defs>\n <clipPath id=\"MoveForward_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MoveForward;\n"],"file":"MoveForward.js"}
@@ -27,6 +27,18 @@ Object.defineProperty(exports, "Avatar", {
27
27
  return _Avatar.default;
28
28
  }
29
29
  });
30
+ Object.defineProperty(exports, "BringToBack", {
31
+ enumerable: true,
32
+ get: function get() {
33
+ return _BringToBack.default;
34
+ }
35
+ });
36
+ Object.defineProperty(exports, "BringToFront", {
37
+ enumerable: true,
38
+ get: function get() {
39
+ return _BringToFront.default;
40
+ }
41
+ });
30
42
  Object.defineProperty(exports, "Browser", {
31
43
  enumerable: true,
32
44
  get: function get() {
@@ -117,6 +129,18 @@ Object.defineProperty(exports, "List", {
117
129
  return _List.default;
118
130
  }
119
131
  });
132
+ Object.defineProperty(exports, "MoveBackward", {
133
+ enumerable: true,
134
+ get: function get() {
135
+ return _MoveBackward.default;
136
+ }
137
+ });
138
+ Object.defineProperty(exports, "MoveForward", {
139
+ enumerable: true,
140
+ get: function get() {
141
+ return _MoveForward.default;
142
+ }
143
+ });
120
144
  Object.defineProperty(exports, "Notes", {
121
145
  enumerable: true,
122
146
  get: function get() {
@@ -240,6 +264,10 @@ var _Arrow = _interopRequireDefault(require("./Arrow"));
240
264
 
241
265
  var _Avatar = _interopRequireDefault(require("./Avatar"));
242
266
 
267
+ var _BringToBack = _interopRequireDefault(require("./BringToBack"));
268
+
269
+ var _BringToFront = _interopRequireDefault(require("./BringToFront"));
270
+
243
271
  var _Browser = _interopRequireDefault(require("./Browser"));
244
272
 
245
273
  var _Button = _interopRequireDefault(require("./Button"));
@@ -270,6 +298,10 @@ var _Link = _interopRequireDefault(require("./Link"));
270
298
 
271
299
  var _List = _interopRequireDefault(require("./List"));
272
300
 
301
+ var _MoveBackward = _interopRequireDefault(require("./MoveBackward"));
302
+
303
+ var _MoveForward = _interopRequireDefault(require("./MoveForward"));
304
+
273
305
  var _Notes = _interopRequireDefault(require("./Notes"));
274
306
 
275
307
  var _Overlay = _interopRequireDefault(require("./Overlay"));
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../generate/elements/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["import Alert from \"./Alert\";\r\nimport AndroidMockup from \"./AndroidMockup\";\r\nimport Arrow from \"./Arrow\";\r\nimport Avatar from \"./Avatar\";\r\nimport Browser from \"./Browser\";\r\nimport Button from \"./Button\";\r\nimport Calendar from \"./Calendar\";\r\nimport Checkbox from \"./Checkbox\";\r\nimport Circle from \"./Circle\";\r\nimport Dropdown from \"./Dropdown\";\r\nimport Image from \"./Image\";\r\nimport Input from \"./Input\";\r\nimport IPhoneMockup from \"./IPhoneMockup\";\r\nimport Keyboard from \"./Keyboard\";\r\nimport Label from \"./Label\";\r\nimport Line from \"./Line\";\r\nimport LineChart from \"./LineChart\";\r\nimport Link from \"./Link\";\r\nimport List from \"./List\";\r\nimport Notes from \"./Notes\";\r\nimport Overlay from \"./Overlay\";\r\nimport PieChart from \"./PieChart\";\r\nimport Radio from \"./Radio\";\r\nimport Rectangle from \"./Rectangle\";\r\nimport Scrollbar from \"./Scrollbar\";\r\nimport Search from \"./Search\";\r\nimport Slider from \"./Slider\";\r\nimport Subtitle from \"./Subtitle\";\r\nimport Table from \"./Table\";\r\nimport Tabs from \"./Tabs\";\r\nimport TextArea from \"./TextArea\";\r\nimport TextBlock from \"./TextBlock\";\r\nimport Title from \"./Title\";\r\nimport ToggleSwitch from \"./ToggleSwitch\";\r\nimport Toolbar from \"./Toolbar\";\r\nimport Tooltip from \"./Tooltip\";\r\nimport Video from \"./Video\";\r\nimport YesNo from \"./YesNo\";\r\nexport { \r\n\tAlert,\r\n\tAndroidMockup,\r\n\tArrow,\r\n\tAvatar,\r\n\tBrowser,\r\n\tButton,\r\n\tCalendar,\r\n\tCheckbox,\r\n\tCircle,\r\n\tDropdown,\r\n\tImage,\r\n\tInput,\r\n\tIPhoneMockup,\r\n\tKeyboard,\r\n\tLabel,\r\n\tLine,\r\n\tLineChart,\r\n\tLink,\r\n\tList,\r\n\tNotes,\r\n\tOverlay,\r\n\tPieChart,\r\n\tRadio,\r\n\tRectangle,\r\n\tScrollbar,\r\n\tSearch,\r\n\tSlider,\r\n\tSubtitle,\r\n\tTable,\r\n\tTabs,\r\n\tTextArea,\r\n\tTextBlock,\r\n\tTitle,\r\n\tToggleSwitch,\r\n\tToolbar,\r\n\tTooltip,\r\n\tVideo,\r\n\tYesNo\r\n};"],"file":"index.js"}
1
+ {"version":3,"sources":["../../../generate/elements/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["import Alert from \"./Alert\";\r\nimport AndroidMockup from \"./AndroidMockup\";\r\nimport Arrow from \"./Arrow\";\r\nimport Avatar from \"./Avatar\";\r\nimport BringToBack from \"./BringToBack\";\r\nimport BringToFront from \"./BringToFront\";\r\nimport Browser from \"./Browser\";\r\nimport Button from \"./Button\";\r\nimport Calendar from \"./Calendar\";\r\nimport Checkbox from \"./Checkbox\";\r\nimport Circle from \"./Circle\";\r\nimport Dropdown from \"./Dropdown\";\r\nimport Image from \"./Image\";\r\nimport Input from \"./Input\";\r\nimport IPhoneMockup from \"./IPhoneMockup\";\r\nimport Keyboard from \"./Keyboard\";\r\nimport Label from \"./Label\";\r\nimport Line from \"./Line\";\r\nimport LineChart from \"./LineChart\";\r\nimport Link from \"./Link\";\r\nimport List from \"./List\";\r\nimport MoveBackward from \"./MoveBackward\";\r\nimport MoveForward from \"./MoveForward\";\r\nimport Notes from \"./Notes\";\r\nimport Overlay from \"./Overlay\";\r\nimport PieChart from \"./PieChart\";\r\nimport Radio from \"./Radio\";\r\nimport Rectangle from \"./Rectangle\";\r\nimport Scrollbar from \"./Scrollbar\";\r\nimport Search from \"./Search\";\r\nimport Slider from \"./Slider\";\r\nimport Subtitle from \"./Subtitle\";\r\nimport Table from \"./Table\";\r\nimport Tabs from \"./Tabs\";\r\nimport TextArea from \"./TextArea\";\r\nimport TextBlock from \"./TextBlock\";\r\nimport Title from \"./Title\";\r\nimport ToggleSwitch from \"./ToggleSwitch\";\r\nimport Toolbar from \"./Toolbar\";\r\nimport Tooltip from \"./Tooltip\";\r\nimport Video from \"./Video\";\r\nimport YesNo from \"./YesNo\";\r\nexport { \r\n\tAlert,\r\n\tAndroidMockup,\r\n\tArrow,\r\n\tAvatar,\r\n\tBringToBack,\r\n\tBringToFront,\r\n\tBrowser,\r\n\tButton,\r\n\tCalendar,\r\n\tCheckbox,\r\n\tCircle,\r\n\tDropdown,\r\n\tImage,\r\n\tInput,\r\n\tIPhoneMockup,\r\n\tKeyboard,\r\n\tLabel,\r\n\tLine,\r\n\tLineChart,\r\n\tLink,\r\n\tList,\r\n\tMoveBackward,\r\n\tMoveForward,\r\n\tNotes,\r\n\tOverlay,\r\n\tPieChart,\r\n\tRadio,\r\n\tRectangle,\r\n\tScrollbar,\r\n\tSearch,\r\n\tSlider,\r\n\tSubtitle,\r\n\tTable,\r\n\tTabs,\r\n\tTextArea,\r\n\tTextBlock,\r\n\tTitle,\r\n\tToggleSwitch,\r\n\tToolbar,\r\n\tTooltip,\r\n\tVideo,\r\n\tYesNo\r\n};"],"file":"index.js"}
@@ -31,25 +31,24 @@ var Help = function Help(_ref) {
31
31
  height: size,
32
32
  viewBox: "0 0 24 24",
33
33
  fill: "none"
34
- }, props), /*#__PURE__*/_react.default.createElement("path", {
35
- d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
34
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
35
+ clipPath: "url(#Help_js__clip0_7880_44)"
36
+ }, /*#__PURE__*/_react.default.createElement("circle", {
37
+ cx: 12,
38
+ cy: 12,
39
+ r: 10,
36
40
  stroke: color,
37
- strokeWidth: strokeWidth,
38
- strokeLinecap: "round",
39
- strokeLinejoin: "round"
41
+ strokeWidth: strokeWidth
40
42
  }), /*#__PURE__*/_react.default.createElement("path", {
41
- d: "M9.09009 9.00008C9.32519 8.33175 9.78924 7.76819 10.4 7.40921C11.0108 7.05024 11.729 6.91902 12.4273 7.03879C13.1255 7.15857 13.7589 7.52161 14.2152 8.06361C14.6714 8.60561 14.9211 9.2916 14.9201 10.0001C14.9201 12.0001 11.9201 13.0001 11.9201 13.0001",
42
- stroke: color,
43
- strokeWidth: strokeWidth,
44
- strokeLinecap: "round",
45
- strokeLinejoin: "round"
46
- }), /*#__PURE__*/_react.default.createElement("path", {
47
- d: "M12 17H12.01",
48
- stroke: color,
49
- strokeWidth: strokeWidth,
50
- strokeLinecap: "round",
51
- strokeLinejoin: "round"
52
- }));
43
+ d: "M10.896 14.806C10.896 14.4139 10.926 14.0463 10.9859 13.7032C11.0512 13.3601 11.171 13.0334 11.3453 12.7229C11.4923 12.4289 11.6639 12.192 11.8599 12.0123C12.0614 11.8271 12.2793 11.6474 12.5134 11.4731C12.753 11.2934 13.0036 11.0647 13.265 10.7869C13.4828 10.5473 13.6271 10.305 13.6979 10.0599C13.7741 9.81484 13.8123 9.55071 13.8123 9.26753C13.8123 9.06059 13.7878 8.86726 13.7387 8.68754C13.6897 8.50783 13.608 8.35262 13.4937 8.22192C13.3194 8.00408 13.0989 7.8516 12.832 7.76447C12.5652 7.67189 12.2874 7.6256 11.9988 7.6256C11.7374 7.6256 11.4869 7.66099 11.2473 7.73179C11.0131 7.80259 10.817 7.9115 10.6591 8.05854C10.4903 8.20014 10.365 8.37713 10.2833 8.58952C10.2071 8.79646 10.1717 9.02246 10.1771 9.26753H8.38C8.42357 8.75562 8.55427 8.27638 8.7721 7.82982C8.98994 7.38325 9.28402 7.0211 9.65434 6.74336C9.9702 6.49285 10.3296 6.30769 10.7326 6.18788C11.1356 6.06263 11.5386 6 11.9416 6C12.5189 6 13.0635 6.08986 13.5754 6.26957C14.0927 6.44929 14.523 6.74064 14.866 7.14363C15.1166 7.42682 15.3044 7.75085 15.4297 8.11573C15.5604 8.47515 15.6257 8.8482 15.6257 9.23485C15.6257 9.75221 15.5141 10.2315 15.2908 10.6726C15.073 11.1137 14.7925 11.5167 14.4494 11.8816C14.2697 12.0722 14.0873 12.2464 13.9021 12.4044C13.717 12.5568 13.5454 12.7066 13.3875 12.8536C13.2296 13.0007 13.0989 13.1613 12.9954 13.3356C12.8483 13.5861 12.7639 13.8121 12.7422 14.0136C12.7204 14.2097 12.7095 14.4738 12.7095 14.806H10.896ZM10.9042 18V16.0231H12.7095V18H10.9042Z",
44
+ fill: color
45
+ })), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
46
+ id: "Help_js__clip0_7880_44"
47
+ }, /*#__PURE__*/_react.default.createElement("rect", {
48
+ width: 24,
49
+ height: 24,
50
+ fill: color
51
+ }))));
53
52
  };
54
53
 
55
54
  var _default = Help;
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../generate/icons/Help.js"],"names":["Help","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,IAAI,GAAG,SAAPA,IAAO,OAKP;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,mHADJ;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,6PADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,cADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,CADF;AAyBD,CA/BD;;eAgCeH,I","sourcesContent":["import React from \"react\";\nconst Help = ({\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=\"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M9.09009 9.00008C9.32519 8.33175 9.78924 7.76819 10.4 7.40921C11.0108 7.05024 11.729 6.91902 12.4273 7.03879C13.1255 7.15857 13.7589 7.52161 14.2152 8.06361C14.6714 8.60561 14.9211 9.2916 14.9201 10.0001C14.9201 12.0001 11.9201 13.0001 11.9201 13.0001\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12 17H12.01\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n};\nexport default Help;\n"],"file":"Help.js"}
1
+ {"version":3,"sources":["../../../generate/icons/Help.js"],"names":["Help","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,IAAI,GAAG,SAAPA,IAAO,OAKP;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,EAAE,EAAE,EADN;AAEE,IAAA,EAAE,EAAE,EAFN;AAGE,IAAA,CAAC,EAAE,EAHL;AAIE,IAAA,MAAM,EAAEF,KAJV;AAKE,IAAA,WAAW,EAAEC;AALf,IADF,eAQE;AACE,IAAA,CAAC,EAAC,y7CADJ;AAEE,IAAA,IAAI,EAAED;AAFR,IARF,CADF,eAcE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAEA;AAAnC,IADF,CADF,CAdF,CADF;AAsBD,CA5BD;;eA6BeF,I","sourcesContent":["import React from \"react\";\nconst Help = ({\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(#Help_js__clip0_7880_44)\">\n <circle\n cx={12}\n cy={12}\n r={10}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M10.896 14.806C10.896 14.4139 10.926 14.0463 10.9859 13.7032C11.0512 13.3601 11.171 13.0334 11.3453 12.7229C11.4923 12.4289 11.6639 12.192 11.8599 12.0123C12.0614 11.8271 12.2793 11.6474 12.5134 11.4731C12.753 11.2934 13.0036 11.0647 13.265 10.7869C13.4828 10.5473 13.6271 10.305 13.6979 10.0599C13.7741 9.81484 13.8123 9.55071 13.8123 9.26753C13.8123 9.06059 13.7878 8.86726 13.7387 8.68754C13.6897 8.50783 13.608 8.35262 13.4937 8.22192C13.3194 8.00408 13.0989 7.8516 12.832 7.76447C12.5652 7.67189 12.2874 7.6256 11.9988 7.6256C11.7374 7.6256 11.4869 7.66099 11.2473 7.73179C11.0131 7.80259 10.817 7.9115 10.6591 8.05854C10.4903 8.20014 10.365 8.37713 10.2833 8.58952C10.2071 8.79646 10.1717 9.02246 10.1771 9.26753H8.38C8.42357 8.75562 8.55427 8.27638 8.7721 7.82982C8.98994 7.38325 9.28402 7.0211 9.65434 6.74336C9.9702 6.49285 10.3296 6.30769 10.7326 6.18788C11.1356 6.06263 11.5386 6 11.9416 6C12.5189 6 13.0635 6.08986 13.5754 6.26957C14.0927 6.44929 14.523 6.74064 14.866 7.14363C15.1166 7.42682 15.3044 7.75085 15.4297 8.11573C15.5604 8.47515 15.6257 8.8482 15.6257 9.23485C15.6257 9.75221 15.5141 10.2315 15.2908 10.6726C15.073 11.1137 14.7925 11.5167 14.4494 11.8816C14.2697 12.0722 14.0873 12.2464 13.9021 12.4044C13.717 12.5568 13.5454 12.7066 13.3875 12.8536C13.2296 13.0007 13.0989 13.1613 12.9954 13.3356C12.8483 13.5861 12.7639 13.8121 12.7422 14.0136C12.7204 14.2097 12.7095 14.4738 12.7095 14.806H10.896ZM10.9042 18V16.0231H12.7095V18H10.9042Z\"\n fill={color}\n />\n </g>\n <defs>\n <clipPath id=\"Help_js__clip0_7880_44\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default Help;\n"],"file":"Help.js"}
@@ -31,37 +31,39 @@ var MyPreferences = function MyPreferences(_ref) {
31
31
  height: size,
32
32
  viewBox: "0 0 24 24",
33
33
  fill: "none"
34
- }, props), /*#__PURE__*/_react.default.createElement("path", {
35
- d: "M16.5675 3C16.6705 3.00002 16.7709 3.03182 16.8552 3.09106C16.9394 3.1503 17.0032 3.2341 17.038 3.331L17.292 4.0385C17.3324 4.14976 17.4106 4.24324 17.513 4.3025L18.2665 4.7375C18.3689 4.79654 18.4888 4.81744 18.605 4.7965L19.345 4.663C19.4464 4.64456 19.5511 4.65791 19.6446 4.70123C19.7382 4.74455 19.816 4.81572 19.8675 4.905L20.2675 5.595C20.3192 5.68404 20.3421 5.78686 20.3332 5.88941C20.3242 5.99196 20.2838 6.08926 20.2175 6.168L19.732 6.742C19.6556 6.83226 19.6136 6.94671 19.6135 7.065V7.935C19.6136 8.05329 19.6556 8.16774 19.732 8.258L20.2175 8.832C20.2838 8.91074 20.3242 9.00804 20.3332 9.11059C20.3421 9.21314 20.3192 9.31596 20.2675 9.405L19.8675 10.095C19.816 10.1842 19.7383 10.2553 19.6448 10.2986C19.5514 10.3419 19.4469 10.3553 19.3455 10.337L18.6055 10.2035C18.4893 10.1826 18.3694 10.2035 18.267 10.2625L17.5135 10.6975C17.4111 10.7568 17.3329 10.8502 17.2925 10.9615L17.0385 11.669C17.0037 11.766 16.9398 11.8498 16.8554 11.9091C16.7711 11.9683 16.6706 12.0001 16.5675 12H15.7675C15.6646 12 15.5641 11.9682 15.4799 11.9089C15.3957 11.8497 15.3318 11.7659 15.297 11.669L15.043 10.9615C15.0027 10.8504 14.9247 10.757 14.8225 10.6975L14.0685 10.2625C13.9662 10.2035 13.8463 10.1826 13.73 10.2035L12.99 10.337C12.8886 10.3554 12.784 10.3421 12.6905 10.2988C12.5969 10.2554 12.5191 10.1843 12.4675 10.095L12.0675 9.405C12.0159 9.31596 11.9929 9.21314 12.0019 9.11059C12.0108 9.00804 12.0512 8.91074 12.1175 8.832L12.603 8.258C12.6795 8.16774 12.7215 8.05329 12.7215 7.935V7.065C12.7215 6.94671 12.6795 6.83226 12.603 6.742L12.1225 6.168C12.0562 6.08926 12.0158 5.99196 12.0069 5.88941C11.9979 5.78686 12.0209 5.68404 12.0725 5.595L12.4725 4.905C12.524 4.81582 12.6018 4.74471 12.6952 4.70139C12.7887 4.65808 12.8932 4.64467 12.9945 4.663L13.7345 4.7965C13.8508 4.81744 13.9707 4.79654 14.073 4.7375L14.827 4.3025C14.9292 4.24305 15.0072 4.14961 15.0475 4.0385L15.3015 3.331C15.3361 3.23482 15.3993 3.15153 15.4826 3.09235C15.5659 3.03316 15.6653 3.00094 15.7675 3H16.5675Z",
34
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
35
+ clipPath: "url(#MyPreferences_js__clip0_7869_32)"
36
+ }, /*#__PURE__*/_react.default.createElement("path", {
37
+ d: "M5 7C5 8.06087 5.42143 9.07828 6.17157 9.82843C6.92172 10.5786 7.93913 11 9 11C10.0609 11 11.0783 10.5786 11.8284 9.82843C12.5786 9.07828 13 8.06087 13 7C13 5.93913 12.5786 4.92172 11.8284 4.17157C11.0783 3.42143 10.0609 3 9 3C7.93913 3 6.92172 3.42143 6.17157 4.17157C5.42143 4.92172 5 5.93913 5 7Z",
36
38
  stroke: color,
37
39
  strokeWidth: strokeWidth,
38
40
  strokeLinecap: "round",
39
41
  strokeLinejoin: "round"
40
42
  }), /*#__PURE__*/_react.default.createElement("path", {
41
- d: "M16.1675 8.875C16.9269 8.875 17.5425 8.25939 17.5425 7.5C17.5425 6.74061 16.9269 6.125 16.1675 6.125C15.4081 6.125 14.7925 6.74061 14.7925 7.5C14.7925 8.25939 15.4081 8.875 16.1675 8.875Z",
43
+ d: "M3 21V19C3 17.9391 3.42143 16.9217 4.17157 16.1716C4.92172 15.4214 5.93913 15 7 15H11",
42
44
  stroke: color,
43
45
  strokeWidth: strokeWidth,
44
46
  strokeLinecap: "round",
45
47
  strokeLinejoin: "round"
46
- }), /*#__PURE__*/_react.default.createElement("rect", {
47
- x: 2,
48
- y: 12,
49
- width: 3,
50
- height: 8,
51
- rx: 1,
52
- stroke: color,
53
- strokeWidth: strokeWidth
54
48
  }), /*#__PURE__*/_react.default.createElement("path", {
55
- d: "M5.5 13L7.86164 12.2128C8.26741 12.0775 8.71177 12.1235 9.08123 12.3391L13.2197 14.7531C13.9242 15.1641 14.157 16.0716 13.7374 16.771V16.771C13.3276 17.454 12.4471 17.6841 11.7556 17.2889L9.5 16",
49
+ d: "M18.9319 13C19.0431 13 19.1515 13.0354 19.2425 13.1012C19.3334 13.167 19.4024 13.2601 19.4399 13.3678L19.7142 14.1539C19.7577 14.2775 19.8422 14.3814 19.9528 14.4472L20.7664 14.9306C20.8769 14.9962 21.0064 15.0194 21.132 14.9961L21.931 14.8478C22.0405 14.8273 22.1535 14.8421 22.2545 14.8903C22.3555 14.9384 22.4395 15.0175 22.4952 15.1167L22.9271 15.8833C22.9829 15.9823 23.0076 16.0965 22.998 16.2105C22.9883 16.3244 22.9447 16.4325 22.8731 16.52L22.3489 17.1578C22.2663 17.2581 22.221 17.3852 22.2209 17.5167V18.4833C22.221 18.6148 22.2663 18.7419 22.3489 18.8422L22.8731 19.48C22.9447 19.5675 22.9883 19.6756 22.998 19.7895C23.0076 19.9035 22.9829 20.0177 22.9271 20.1167L22.4952 20.8833C22.4396 20.9824 22.3556 21.0614 22.2547 21.1096C22.1538 21.1577 22.0409 21.1726 21.9315 21.1522L21.1325 21.0039C21.007 20.9806 20.8775 21.0038 20.767 21.0694L19.9534 21.5528C19.8428 21.6186 19.7583 21.7225 19.7147 21.8461L19.4405 22.6322C19.4029 22.74 19.3338 22.8331 19.2428 22.899C19.1518 22.9648 19.0432 23.0001 18.9319 23H18.0681C17.9569 23 17.8485 22.9646 17.7575 22.8988C17.6666 22.833 17.5976 22.7399 17.5601 22.6322L17.2858 21.8461C17.2423 21.7227 17.158 21.6188 17.0477 21.5528L16.2336 21.0694C16.1231 21.0038 15.9936 20.9806 15.868 21.0039L15.069 21.1522C14.9595 21.1727 14.8465 21.1579 14.7455 21.1097C14.6445 21.0616 14.5605 20.9825 14.5048 20.8833L14.0729 20.1167C14.0171 20.0177 13.9924 19.9035 14.002 19.7895C14.0117 19.6756 14.0553 19.5675 14.1269 19.48L14.6511 18.8422C14.7337 18.7419 14.779 18.6148 14.7791 18.4833V17.5167C14.779 17.3852 14.7337 17.2581 14.6511 17.1578L14.1323 16.52C14.0607 16.4325 14.0171 16.3244 14.0074 16.2105C13.9978 16.0965 14.0225 15.9823 14.0783 15.8833L14.5102 15.1167C14.5658 15.0176 14.6498 14.9386 14.7507 14.8904C14.8516 14.8423 14.9645 14.8274 15.0739 14.8478L15.8729 14.9961C15.9984 15.0194 16.1279 14.9962 16.2384 14.9306L17.0526 14.4472C17.1629 14.3812 17.2471 14.2773 17.2907 14.1539L17.5649 13.3678C17.6022 13.2609 17.6704 13.1684 17.7604 13.1026C17.8504 13.0368 17.9577 13.001 18.0681 13H18.9319Z",
56
50
  stroke: color,
57
51
  strokeWidth: strokeWidth,
58
- strokeLinecap: "round"
52
+ strokeLinecap: "round",
53
+ strokeLinejoin: "round"
59
54
  }), /*#__PURE__*/_react.default.createElement("path", {
60
- d: "M14 17L19.0915 15.825C19.8901 15.6407 20.6979 16.0938 20.9571 16.8714V16.8714C21.25 17.7499 20.7329 18.6918 19.8345 18.9164L12.2597 20.8101C11.7695 20.9326 11.2516 20.8758 10.7996 20.6498L7.28636 18.8932C6.78286 18.6414 6.19998 18.6 5.66595 18.778L5 19",
55
+ d: "M18.5 19.5278C19.32 19.5278 19.9847 18.8438 19.9847 18C19.9847 17.1562 19.32 16.4722 18.5 16.4722C17.68 16.4722 17.0153 17.1562 17.0153 18C17.0153 18.8438 17.68 19.5278 18.5 19.5278Z",
61
56
  stroke: color,
62
57
  strokeWidth: strokeWidth,
63
- strokeLinecap: "round"
64
- }));
58
+ strokeLinecap: "round",
59
+ strokeLinejoin: "round"
60
+ })), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
61
+ id: "MyPreferences_js__clip0_7869_32"
62
+ }, /*#__PURE__*/_react.default.createElement("rect", {
63
+ width: 24,
64
+ height: 24,
65
+ fill: color
66
+ }))));
65
67
  };
66
68
 
67
69
  var _default = MyPreferences;
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../generate/icons/MyPreferences.js"],"names":["MyPreferences","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,aAAa,GAAG,SAAhBA,aAAgB,OAKhB;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,y8DADJ;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,6LADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,EAFL;AAGE,IAAA,KAAK,EAAE,CAHT;AAIE,IAAA,MAAM,EAAE,CAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAED,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IAfF,eAwBE;AACE,IAAA,CAAC,EAAC,oMADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAxBF,eA8BE;AACE,IAAA,CAAC,EAAC,8PADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA9BF,CADF;AAuCD,CA7CD;;eA8CeH,a","sourcesContent":["import React from \"react\";\nconst MyPreferences = ({\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.5675 3C16.6705 3.00002 16.7709 3.03182 16.8552 3.09106C16.9394 3.1503 17.0032 3.2341 17.038 3.331L17.292 4.0385C17.3324 4.14976 17.4106 4.24324 17.513 4.3025L18.2665 4.7375C18.3689 4.79654 18.4888 4.81744 18.605 4.7965L19.345 4.663C19.4464 4.64456 19.5511 4.65791 19.6446 4.70123C19.7382 4.74455 19.816 4.81572 19.8675 4.905L20.2675 5.595C20.3192 5.68404 20.3421 5.78686 20.3332 5.88941C20.3242 5.99196 20.2838 6.08926 20.2175 6.168L19.732 6.742C19.6556 6.83226 19.6136 6.94671 19.6135 7.065V7.935C19.6136 8.05329 19.6556 8.16774 19.732 8.258L20.2175 8.832C20.2838 8.91074 20.3242 9.00804 20.3332 9.11059C20.3421 9.21314 20.3192 9.31596 20.2675 9.405L19.8675 10.095C19.816 10.1842 19.7383 10.2553 19.6448 10.2986C19.5514 10.3419 19.4469 10.3553 19.3455 10.337L18.6055 10.2035C18.4893 10.1826 18.3694 10.2035 18.267 10.2625L17.5135 10.6975C17.4111 10.7568 17.3329 10.8502 17.2925 10.9615L17.0385 11.669C17.0037 11.766 16.9398 11.8498 16.8554 11.9091C16.7711 11.9683 16.6706 12.0001 16.5675 12H15.7675C15.6646 12 15.5641 11.9682 15.4799 11.9089C15.3957 11.8497 15.3318 11.7659 15.297 11.669L15.043 10.9615C15.0027 10.8504 14.9247 10.757 14.8225 10.6975L14.0685 10.2625C13.9662 10.2035 13.8463 10.1826 13.73 10.2035L12.99 10.337C12.8886 10.3554 12.784 10.3421 12.6905 10.2988C12.5969 10.2554 12.5191 10.1843 12.4675 10.095L12.0675 9.405C12.0159 9.31596 11.9929 9.21314 12.0019 9.11059C12.0108 9.00804 12.0512 8.91074 12.1175 8.832L12.603 8.258C12.6795 8.16774 12.7215 8.05329 12.7215 7.935V7.065C12.7215 6.94671 12.6795 6.83226 12.603 6.742L12.1225 6.168C12.0562 6.08926 12.0158 5.99196 12.0069 5.88941C11.9979 5.78686 12.0209 5.68404 12.0725 5.595L12.4725 4.905C12.524 4.81582 12.6018 4.74471 12.6952 4.70139C12.7887 4.65808 12.8932 4.64467 12.9945 4.663L13.7345 4.7965C13.8508 4.81744 13.9707 4.79654 14.073 4.7375L14.827 4.3025C14.9292 4.24305 15.0072 4.14961 15.0475 4.0385L15.3015 3.331C15.3361 3.23482 15.3993 3.15153 15.4826 3.09235C15.5659 3.03316 15.6653 3.00094 15.7675 3H16.5675Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M16.1675 8.875C16.9269 8.875 17.5425 8.25939 17.5425 7.5C17.5425 6.74061 16.9269 6.125 16.1675 6.125C15.4081 6.125 14.7925 6.74061 14.7925 7.5C14.7925 8.25939 15.4081 8.875 16.1675 8.875Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <rect\n x={2}\n y={12}\n width={3}\n height={8}\n rx={1}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M5.5 13L7.86164 12.2128C8.26741 12.0775 8.71177 12.1235 9.08123 12.3391L13.2197 14.7531C13.9242 15.1641 14.157 16.0716 13.7374 16.771V16.771C13.3276 17.454 12.4471 17.6841 11.7556 17.2889L9.5 16\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M14 17L19.0915 15.825C19.8901 15.6407 20.6979 16.0938 20.9571 16.8714V16.8714C21.25 17.7499 20.7329 18.6918 19.8345 18.9164L12.2597 20.8101C11.7695 20.9326 11.2516 20.8758 10.7996 20.6498L7.28636 18.8932C6.78286 18.6414 6.19998 18.6 5.66595 18.778L5 19\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default MyPreferences;\n"],"file":"MyPreferences.js"}
1
+ {"version":3,"sources":["../../../generate/icons/MyPreferences.js"],"names":["MyPreferences","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,aAAa,GAAG,SAAhBA,aAAgB,OAKhB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,6SADJ;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,uFADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,8/DADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,wLADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,CADF,eA+BE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CA/BF,CADF;AAuCD,CA7CD;;eA8CeF,a","sourcesContent":["import React from \"react\";\nconst MyPreferences = ({\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(#MyPreferences_js__clip0_7869_32)\">\n <path\n d=\"M5 7C5 8.06087 5.42143 9.07828 6.17157 9.82843C6.92172 10.5786 7.93913 11 9 11C10.0609 11 11.0783 10.5786 11.8284 9.82843C12.5786 9.07828 13 8.06087 13 7C13 5.93913 12.5786 4.92172 11.8284 4.17157C11.0783 3.42143 10.0609 3 9 3C7.93913 3 6.92172 3.42143 6.17157 4.17157C5.42143 4.92172 5 5.93913 5 7Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3 21V19C3 17.9391 3.42143 16.9217 4.17157 16.1716C4.92172 15.4214 5.93913 15 7 15H11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M18.9319 13C19.0431 13 19.1515 13.0354 19.2425 13.1012C19.3334 13.167 19.4024 13.2601 19.4399 13.3678L19.7142 14.1539C19.7577 14.2775 19.8422 14.3814 19.9528 14.4472L20.7664 14.9306C20.8769 14.9962 21.0064 15.0194 21.132 14.9961L21.931 14.8478C22.0405 14.8273 22.1535 14.8421 22.2545 14.8903C22.3555 14.9384 22.4395 15.0175 22.4952 15.1167L22.9271 15.8833C22.9829 15.9823 23.0076 16.0965 22.998 16.2105C22.9883 16.3244 22.9447 16.4325 22.8731 16.52L22.3489 17.1578C22.2663 17.2581 22.221 17.3852 22.2209 17.5167V18.4833C22.221 18.6148 22.2663 18.7419 22.3489 18.8422L22.8731 19.48C22.9447 19.5675 22.9883 19.6756 22.998 19.7895C23.0076 19.9035 22.9829 20.0177 22.9271 20.1167L22.4952 20.8833C22.4396 20.9824 22.3556 21.0614 22.2547 21.1096C22.1538 21.1577 22.0409 21.1726 21.9315 21.1522L21.1325 21.0039C21.007 20.9806 20.8775 21.0038 20.767 21.0694L19.9534 21.5528C19.8428 21.6186 19.7583 21.7225 19.7147 21.8461L19.4405 22.6322C19.4029 22.74 19.3338 22.8331 19.2428 22.899C19.1518 22.9648 19.0432 23.0001 18.9319 23H18.0681C17.9569 23 17.8485 22.9646 17.7575 22.8988C17.6666 22.833 17.5976 22.7399 17.5601 22.6322L17.2858 21.8461C17.2423 21.7227 17.158 21.6188 17.0477 21.5528L16.2336 21.0694C16.1231 21.0038 15.9936 20.9806 15.868 21.0039L15.069 21.1522C14.9595 21.1727 14.8465 21.1579 14.7455 21.1097C14.6445 21.0616 14.5605 20.9825 14.5048 20.8833L14.0729 20.1167C14.0171 20.0177 13.9924 19.9035 14.002 19.7895C14.0117 19.6756 14.0553 19.5675 14.1269 19.48L14.6511 18.8422C14.7337 18.7419 14.779 18.6148 14.7791 18.4833V17.5167C14.779 17.3852 14.7337 17.2581 14.6511 17.1578L14.1323 16.52C14.0607 16.4325 14.0171 16.3244 14.0074 16.2105C13.9978 16.0965 14.0225 15.9823 14.0783 15.8833L14.5102 15.1167C14.5658 15.0176 14.6498 14.9386 14.7507 14.8904C14.8516 14.8423 14.9645 14.8274 15.0739 14.8478L15.8729 14.9961C15.9984 15.0194 16.1279 14.9962 16.2384 14.9306L17.0526 14.4472C17.1629 14.3812 17.2471 14.2773 17.2907 14.1539L17.5649 13.3678C17.6022 13.2609 17.6704 13.1684 17.7604 13.1026C17.8504 13.0368 17.9577 13.001 18.0681 13H18.9319Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M18.5 19.5278C19.32 19.5278 19.9847 18.8438 19.9847 18C19.9847 17.1562 19.32 16.4722 18.5 16.4722C17.68 16.4722 17.0153 17.1562 17.0153 18C17.0153 18.8438 17.68 19.5278 18.5 19.5278Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MyPreferences_js__clip0_7869_32\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MyPreferences;\n"],"file":"MyPreferences.js"}
@@ -0,0 +1,42 @@
1
+ var _excluded = ["width", "height"];
2
+
3
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+
5
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
6
+
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+
9
+ import React from "react";
10
+
11
+ var BringToBack = function BringToBack(_ref) {
12
+ var _ref$width = _ref.width,
13
+ width = _ref$width === void 0 ? 80 : _ref$width,
14
+ _ref$height = _ref.height,
15
+ height = _ref$height === void 0 ? 26 : _ref$height,
16
+ props = _objectWithoutProperties(_ref, _excluded);
17
+
18
+ return /*#__PURE__*/React.createElement("svg", _extends({
19
+ width: width,
20
+ height: height,
21
+ fill: "none",
22
+ viewBox: "0 0 24 24"
23
+ }, props), /*#__PURE__*/React.createElement("g", {
24
+ clipPath: "url(#BringToBack_js__a)"
25
+ }, /*#__PURE__*/React.createElement("path", {
26
+ fill: "#0C111D",
27
+ d: "M9 15h6v4H5V9h4v6Z",
28
+ "data-dark-mode-fill-color": "true"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ stroke: "#0C111D",
31
+ d: "M9.5 5.5h9v9h-9z",
32
+ "data-dark-mode-stroke-color": "true"
33
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
34
+ id: "BringToBack_js__a"
35
+ }, /*#__PURE__*/React.createElement("path", {
36
+ fill: "#fff",
37
+ d: "M0 0h24v24H0z"
38
+ }))));
39
+ };
40
+
41
+ export default BringToBack;
42
+ //# sourceMappingURL=BringToBack.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../generate/elements/BringToBack.js"],"names":["React","BringToBack","width","height","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,WAAW,GAAG,SAAdA,WAAc,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC7D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,IAAI,EAAC,SADP;AAEE,IAAA,CAAC,EAAC,oBAFJ;AAGE,iCAA0B;AAH5B,IADF,eAME;AACE,IAAA,MAAM,EAAC,SADT;AAEE,IAAA,CAAC,EAAC,kBAFJ;AAGE,mCAA4B;AAH9B,IANF,CAPF,eAmBE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAnBF,CADF;AA2BD,CA5BD;;AA6BA,eAAeH,WAAf","sourcesContent":["import React from \"react\";\nconst BringToBack = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g clipPath=\"url(#BringToBack_js__a)\">\n <path\n fill=\"#0C111D\"\n d=\"M9 15h6v4H5V9h4v6Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path\n stroke=\"#0C111D\"\n d=\"M9.5 5.5h9v9h-9z\"\n data-dark-mode-stroke-color=\"true\"\n />\n </g>\n <defs>\n <clipPath id=\"BringToBack_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default BringToBack;\n"],"file":"BringToBack.js"}
@@ -0,0 +1,41 @@
1
+ var _excluded = ["width", "height"];
2
+
3
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+
5
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
6
+
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+
9
+ import React from "react";
10
+
11
+ var BringToFront = function BringToFront(_ref) {
12
+ var _ref$width = _ref.width,
13
+ width = _ref$width === void 0 ? 80 : _ref$width,
14
+ _ref$height = _ref.height,
15
+ height = _ref$height === void 0 ? 26 : _ref$height,
16
+ props = _objectWithoutProperties(_ref, _excluded);
17
+
18
+ return /*#__PURE__*/React.createElement("svg", _extends({
19
+ width: width,
20
+ height: height,
21
+ fill: "none",
22
+ viewBox: "0 0 24 24"
23
+ }, props), /*#__PURE__*/React.createElement("g", {
24
+ fill: "#0C111D",
25
+ clipPath: "url(#BringToFront_js__a)"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ d: "M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z",
28
+ "data-dark-mode-fill-color": "true"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ d: "M9 5h10v10H9z",
31
+ "data-dark-mode-fill-color": "true"
32
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
33
+ id: "BringToFront_js__a"
34
+ }, /*#__PURE__*/React.createElement("path", {
35
+ fill: "#fff",
36
+ d: "M0 0h24v24H0z"
37
+ }))));
38
+ };
39
+
40
+ export default BringToFront;
41
+ //# sourceMappingURL=BringToFront.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../generate/elements/BringToFront.js"],"names":["React","BringToFront","width","height","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,YAAY,GAAG,SAAfA,YAAe,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC9D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,IAAI,EAAC,SAAR;AAAkB,IAAA,QAAQ,EAAC;AAA3B,kBACE;AACE,IAAA,CAAC,EAAC,kDADJ;AAEE,iCAA0B;AAF5B,IADF,eAKE;AAAM,IAAA,CAAC,EAAC,eAAR;AAAwB,iCAA0B;AAAlD,IALF,CAPF,eAcE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAdF,CADF;AAsBD,CAvBD;;AAwBA,eAAeH,YAAf","sourcesContent":["import React from \"react\";\nconst BringToFront = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g fill=\"#0C111D\" clipPath=\"url(#BringToFront_js__a)\">\n <path\n d=\"M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path d=\"M9 5h10v10H9z\" data-dark-mode-fill-color=\"true\" />\n </g>\n <defs>\n <clipPath id=\"BringToFront_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default BringToFront;\n"],"file":"BringToFront.js"}
@@ -0,0 +1,41 @@
1
+ var _excluded = ["width", "height"];
2
+
3
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+
5
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
6
+
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+
9
+ import React from "react";
10
+
11
+ var MoveBackward = function MoveBackward(_ref) {
12
+ var _ref$width = _ref.width,
13
+ width = _ref$width === void 0 ? 80 : _ref$width,
14
+ _ref$height = _ref.height,
15
+ height = _ref$height === void 0 ? 26 : _ref$height,
16
+ props = _objectWithoutProperties(_ref, _excluded);
17
+
18
+ return /*#__PURE__*/React.createElement("svg", _extends({
19
+ width: width,
20
+ height: height,
21
+ fill: "none",
22
+ viewBox: "0 0 24 24"
23
+ }, props), /*#__PURE__*/React.createElement("g", {
24
+ fill: "#0C111D",
25
+ clipPath: "url(#MoveBackward_js__a)"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ d: "M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z",
28
+ "data-dark-mode-fill-color": "true"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ d: "M19 15H9V5h10v10Zm-5-7.333a.333.333 0 0 0-.333.333v3.196l-1.432-1.431-.051-.043a.333.333 0 0 0-.462.462l.043.051 2 2c.114.114.29.129.419.043l.051-.043 2-2a.333.333 0 1 0-.47-.47l-1.432 1.431V8A.333.333 0 0 0 14 7.667Z",
31
+ "data-dark-mode-fill-color": "true"
32
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
33
+ id: "MoveBackward_js__a"
34
+ }, /*#__PURE__*/React.createElement("path", {
35
+ fill: "#fff",
36
+ d: "M0 0h24v24H0z"
37
+ }))));
38
+ };
39
+
40
+ export default MoveBackward;
41
+ //# sourceMappingURL=MoveBackward.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../generate/elements/MoveBackward.js"],"names":["React","MoveBackward","width","height","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,YAAY,GAAG,SAAfA,YAAe,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC9D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,IAAI,EAAC,SAAR;AAAkB,IAAA,QAAQ,EAAC;AAA3B,kBACE;AACE,IAAA,CAAC,EAAC,kDADJ;AAEE,iCAA0B;AAF5B,IADF,eAKE;AACE,IAAA,CAAC,EAAC,2NADJ;AAEE,iCAA0B;AAF5B,IALF,CAPF,eAiBE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAjBF,CADF;AAyBD,CA1BD;;AA2BA,eAAeH,YAAf","sourcesContent":["import React from \"react\";\nconst MoveBackward = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g fill=\"#0C111D\" clipPath=\"url(#MoveBackward_js__a)\">\n <path\n d=\"M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path\n d=\"M19 15H9V5h10v10Zm-5-7.333a.333.333 0 0 0-.333.333v3.196l-1.432-1.431-.051-.043a.333.333 0 0 0-.462.462l.043.051 2 2c.114.114.29.129.419.043l.051-.043 2-2a.333.333 0 1 0-.47-.47l-1.432 1.431V8A.333.333 0 0 0 14 7.667Z\"\n data-dark-mode-fill-color=\"true\"\n />\n </g>\n <defs>\n <clipPath id=\"MoveBackward_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MoveBackward;\n"],"file":"MoveBackward.js"}
@@ -0,0 +1,41 @@
1
+ var _excluded = ["width", "height"];
2
+
3
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+
5
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
6
+
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+
9
+ import React from "react";
10
+
11
+ var MoveForward = function MoveForward(_ref) {
12
+ var _ref$width = _ref.width,
13
+ width = _ref$width === void 0 ? 80 : _ref$width,
14
+ _ref$height = _ref.height,
15
+ height = _ref$height === void 0 ? 26 : _ref$height,
16
+ props = _objectWithoutProperties(_ref, _excluded);
17
+
18
+ return /*#__PURE__*/React.createElement("svg", _extends({
19
+ width: width,
20
+ height: height,
21
+ fill: "none",
22
+ viewBox: "0 0 24 24"
23
+ }, props), /*#__PURE__*/React.createElement("g", {
24
+ fill: "#0C111D",
25
+ clipPath: "url(#MoveForward_js__a)"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ d: "M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z",
28
+ "data-dark-mode-fill-color": "true"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ d: "M19 15H9V5h10v10Zm-4.765-7.235a.333.333 0 0 0-.419-.043l-.051.043-2 2a.333.333 0 1 0 .47.47l1.432-1.431V12a.333.333 0 1 0 .666 0V8.804l1.432 1.431.051.043a.333.333 0 0 0 .462-.462l-.043-.051-2-2Z",
31
+ "data-dark-mode-fill-color": "true"
32
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
33
+ id: "MoveForward_js__a"
34
+ }, /*#__PURE__*/React.createElement("path", {
35
+ fill: "#fff",
36
+ d: "M0 0h24v24H0z"
37
+ }))));
38
+ };
39
+
40
+ export default MoveForward;
41
+ //# sourceMappingURL=MoveForward.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../generate/elements/MoveForward.js"],"names":["React","MoveForward","width","height","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,WAAW,GAAG,SAAdA,WAAc,OAA2C;AAAA,wBAAxCC,KAAwC;AAAA,MAAxCA,KAAwC,2BAAhC,EAAgC;AAAA,yBAA5BC,MAA4B;AAAA,MAA5BA,MAA4B,4BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC7D,sBACE;AACE,IAAA,KAAK,EAAEF,KADT;AAEE,IAAA,MAAM,EAAEC,MAFV;AAGE,IAAA,IAAI,EAAC,MAHP;AAIE,IAAA,OAAO,EAAC;AAJV,KAKMC,KALN,gBAOE;AAAG,IAAA,IAAI,EAAC,SAAR;AAAkB,IAAA,QAAQ,EAAC;AAA3B,kBACE;AACE,IAAA,CAAC,EAAC,kDADJ;AAEE,iCAA0B;AAF5B,IADF,eAKE;AACE,IAAA,CAAC,EAAC,qMADJ;AAEE,iCAA0B;AAF5B,IALF,CAPF,eAiBE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,IAAI,EAAC,MAAX;AAAkB,IAAA,CAAC,EAAC;AAApB,IADF,CADF,CAjBF,CADF;AAyBD,CA1BD;;AA2BA,eAAeH,WAAf","sourcesContent":["import React from \"react\";\nconst MoveForward = ({ width = 80, height = 26, ...props }) => {\n return (\n <svg\n width={width}\n height={height}\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n {...props}\n >\n <g fill=\"#0C111D\" clipPath=\"url(#MoveForward_js__a)\">\n <path\n d=\"M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4v1.111Z\"\n data-dark-mode-fill-color=\"true\"\n />\n <path\n d=\"M19 15H9V5h10v10Zm-4.765-7.235a.333.333 0 0 0-.419-.043l-.051.043-2 2a.333.333 0 1 0 .47.47l1.432-1.431V12a.333.333 0 1 0 .666 0V8.804l1.432 1.431.051.043a.333.333 0 0 0 .462-.462l-.043-.051-2-2Z\"\n data-dark-mode-fill-color=\"true\"\n />\n </g>\n <defs>\n <clipPath id=\"MoveForward_js__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MoveForward;\n"],"file":"MoveForward.js"}
@@ -2,6 +2,8 @@ import Alert from "./Alert";
2
2
  import AndroidMockup from "./AndroidMockup";
3
3
  import Arrow from "./Arrow";
4
4
  import Avatar from "./Avatar";
5
+ import BringToBack from "./BringToBack";
6
+ import BringToFront from "./BringToFront";
5
7
  import Browser from "./Browser";
6
8
  import Button from "./Button";
7
9
  import Calendar from "./Calendar";
@@ -17,6 +19,8 @@ import Line from "./Line";
17
19
  import LineChart from "./LineChart";
18
20
  import Link from "./Link";
19
21
  import List from "./List";
22
+ import MoveBackward from "./MoveBackward";
23
+ import MoveForward from "./MoveForward";
20
24
  import Notes from "./Notes";
21
25
  import Overlay from "./Overlay";
22
26
  import PieChart from "./PieChart";
@@ -36,5 +40,5 @@ import Toolbar from "./Toolbar";
36
40
  import Tooltip from "./Tooltip";
37
41
  import Video from "./Video";
38
42
  import YesNo from "./YesNo";
39
- export { Alert, AndroidMockup, Arrow, Avatar, Browser, Button, Calendar, Checkbox, Circle, Dropdown, Image, Input, IPhoneMockup, Keyboard, Label, Line, LineChart, Link, List, Notes, Overlay, PieChart, Radio, Rectangle, Scrollbar, Search, Slider, Subtitle, Table, Tabs, TextArea, TextBlock, Title, ToggleSwitch, Toolbar, Tooltip, Video, YesNo };
43
+ export { Alert, AndroidMockup, Arrow, Avatar, BringToBack, BringToFront, Browser, Button, Calendar, Checkbox, Circle, Dropdown, Image, Input, IPhoneMockup, Keyboard, Label, Line, LineChart, Link, List, MoveBackward, MoveForward, Notes, Overlay, PieChart, Radio, Rectangle, Scrollbar, Search, Slider, Subtitle, Table, Tabs, TextArea, TextBlock, Title, ToggleSwitch, Toolbar, Tooltip, Video, YesNo };
40
44
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../generate/elements/index.js"],"names":["Alert","AndroidMockup","Arrow","Avatar","Browser","Button","Calendar","Checkbox","Circle","Dropdown","Image","Input","IPhoneMockup","Keyboard","Label","Line","LineChart","Link","List","Notes","Overlay","PieChart","Radio","Rectangle","Scrollbar","Search","Slider","Subtitle","Table","Tabs","TextArea","TextBlock","Title","ToggleSwitch","Toolbar","Tooltip","Video","YesNo"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,SAAlB;AACA,OAAOC,aAAP,MAA0B,iBAA1B;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,SACCrC,KADD,EAECC,aAFD,EAGCC,KAHD,EAICC,MAJD,EAKCC,OALD,EAMCC,MAND,EAOCC,QAPD,EAQCC,QARD,EASCC,MATD,EAUCC,QAVD,EAWCC,KAXD,EAYCC,KAZD,EAaCC,YAbD,EAcCC,QAdD,EAeCC,KAfD,EAgBCC,IAhBD,EAiBCC,SAjBD,EAkBCC,IAlBD,EAmBCC,IAnBD,EAoBCC,KApBD,EAqBCC,OArBD,EAsBCC,QAtBD,EAuBCC,KAvBD,EAwBCC,SAxBD,EAyBCC,SAzBD,EA0BCC,MA1BD,EA2BCC,MA3BD,EA4BCC,QA5BD,EA6BCC,KA7BD,EA8BCC,IA9BD,EA+BCC,QA/BD,EAgCCC,SAhCD,EAiCCC,KAjCD,EAkCCC,YAlCD,EAmCCC,OAnCD,EAoCCC,OApCD,EAqCCC,KArCD,EAsCCC,KAtCD","sourcesContent":["import Alert from \"./Alert\";\r\nimport AndroidMockup from \"./AndroidMockup\";\r\nimport Arrow from \"./Arrow\";\r\nimport Avatar from \"./Avatar\";\r\nimport Browser from \"./Browser\";\r\nimport Button from \"./Button\";\r\nimport Calendar from \"./Calendar\";\r\nimport Checkbox from \"./Checkbox\";\r\nimport Circle from \"./Circle\";\r\nimport Dropdown from \"./Dropdown\";\r\nimport Image from \"./Image\";\r\nimport Input from \"./Input\";\r\nimport IPhoneMockup from \"./IPhoneMockup\";\r\nimport Keyboard from \"./Keyboard\";\r\nimport Label from \"./Label\";\r\nimport Line from \"./Line\";\r\nimport LineChart from \"./LineChart\";\r\nimport Link from \"./Link\";\r\nimport List from \"./List\";\r\nimport Notes from \"./Notes\";\r\nimport Overlay from \"./Overlay\";\r\nimport PieChart from \"./PieChart\";\r\nimport Radio from \"./Radio\";\r\nimport Rectangle from \"./Rectangle\";\r\nimport Scrollbar from \"./Scrollbar\";\r\nimport Search from \"./Search\";\r\nimport Slider from \"./Slider\";\r\nimport Subtitle from \"./Subtitle\";\r\nimport Table from \"./Table\";\r\nimport Tabs from \"./Tabs\";\r\nimport TextArea from \"./TextArea\";\r\nimport TextBlock from \"./TextBlock\";\r\nimport Title from \"./Title\";\r\nimport ToggleSwitch from \"./ToggleSwitch\";\r\nimport Toolbar from \"./Toolbar\";\r\nimport Tooltip from \"./Tooltip\";\r\nimport Video from \"./Video\";\r\nimport YesNo from \"./YesNo\";\r\nexport { \r\n\tAlert,\r\n\tAndroidMockup,\r\n\tArrow,\r\n\tAvatar,\r\n\tBrowser,\r\n\tButton,\r\n\tCalendar,\r\n\tCheckbox,\r\n\tCircle,\r\n\tDropdown,\r\n\tImage,\r\n\tInput,\r\n\tIPhoneMockup,\r\n\tKeyboard,\r\n\tLabel,\r\n\tLine,\r\n\tLineChart,\r\n\tLink,\r\n\tList,\r\n\tNotes,\r\n\tOverlay,\r\n\tPieChart,\r\n\tRadio,\r\n\tRectangle,\r\n\tScrollbar,\r\n\tSearch,\r\n\tSlider,\r\n\tSubtitle,\r\n\tTable,\r\n\tTabs,\r\n\tTextArea,\r\n\tTextBlock,\r\n\tTitle,\r\n\tToggleSwitch,\r\n\tToolbar,\r\n\tTooltip,\r\n\tVideo,\r\n\tYesNo\r\n};"],"file":"index.js"}
1
+ {"version":3,"sources":["../../generate/elements/index.js"],"names":["Alert","AndroidMockup","Arrow","Avatar","BringToBack","BringToFront","Browser","Button","Calendar","Checkbox","Circle","Dropdown","Image","Input","IPhoneMockup","Keyboard","Label","Line","LineChart","Link","List","MoveBackward","MoveForward","Notes","Overlay","PieChart","Radio","Rectangle","Scrollbar","Search","Slider","Subtitle","Table","Tabs","TextArea","TextBlock","Title","ToggleSwitch","Toolbar","Tooltip","Video","YesNo"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,SAAlB;AACA,OAAOC,aAAP,MAA0B,iBAA1B;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,MAAP,MAAmB,UAAnB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,IAAP,MAAiB,QAAjB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,OAAOC,KAAP,MAAkB,SAAlB;AACA,SACCzC,KADD,EAECC,aAFD,EAGCC,KAHD,EAICC,MAJD,EAKCC,WALD,EAMCC,YAND,EAOCC,OAPD,EAQCC,MARD,EASCC,QATD,EAUCC,QAVD,EAWCC,MAXD,EAYCC,QAZD,EAaCC,KAbD,EAcCC,KAdD,EAeCC,YAfD,EAgBCC,QAhBD,EAiBCC,KAjBD,EAkBCC,IAlBD,EAmBCC,SAnBD,EAoBCC,IApBD,EAqBCC,IArBD,EAsBCC,YAtBD,EAuBCC,WAvBD,EAwBCC,KAxBD,EAyBCC,OAzBD,EA0BCC,QA1BD,EA2BCC,KA3BD,EA4BCC,SA5BD,EA6BCC,SA7BD,EA8BCC,MA9BD,EA+BCC,MA/BD,EAgCCC,QAhCD,EAiCCC,KAjCD,EAkCCC,IAlCD,EAmCCC,QAnCD,EAoCCC,SApCD,EAqCCC,KArCD,EAsCCC,YAtCD,EAuCCC,OAvCD,EAwCCC,OAxCD,EAyCCC,KAzCD,EA0CCC,KA1CD","sourcesContent":["import Alert from \"./Alert\";\r\nimport AndroidMockup from \"./AndroidMockup\";\r\nimport Arrow from \"./Arrow\";\r\nimport Avatar from \"./Avatar\";\r\nimport BringToBack from \"./BringToBack\";\r\nimport BringToFront from \"./BringToFront\";\r\nimport Browser from \"./Browser\";\r\nimport Button from \"./Button\";\r\nimport Calendar from \"./Calendar\";\r\nimport Checkbox from \"./Checkbox\";\r\nimport Circle from \"./Circle\";\r\nimport Dropdown from \"./Dropdown\";\r\nimport Image from \"./Image\";\r\nimport Input from \"./Input\";\r\nimport IPhoneMockup from \"./IPhoneMockup\";\r\nimport Keyboard from \"./Keyboard\";\r\nimport Label from \"./Label\";\r\nimport Line from \"./Line\";\r\nimport LineChart from \"./LineChart\";\r\nimport Link from \"./Link\";\r\nimport List from \"./List\";\r\nimport MoveBackward from \"./MoveBackward\";\r\nimport MoveForward from \"./MoveForward\";\r\nimport Notes from \"./Notes\";\r\nimport Overlay from \"./Overlay\";\r\nimport PieChart from \"./PieChart\";\r\nimport Radio from \"./Radio\";\r\nimport Rectangle from \"./Rectangle\";\r\nimport Scrollbar from \"./Scrollbar\";\r\nimport Search from \"./Search\";\r\nimport Slider from \"./Slider\";\r\nimport Subtitle from \"./Subtitle\";\r\nimport Table from \"./Table\";\r\nimport Tabs from \"./Tabs\";\r\nimport TextArea from \"./TextArea\";\r\nimport TextBlock from \"./TextBlock\";\r\nimport Title from \"./Title\";\r\nimport ToggleSwitch from \"./ToggleSwitch\";\r\nimport Toolbar from \"./Toolbar\";\r\nimport Tooltip from \"./Tooltip\";\r\nimport Video from \"./Video\";\r\nimport YesNo from \"./YesNo\";\r\nexport { \r\n\tAlert,\r\n\tAndroidMockup,\r\n\tArrow,\r\n\tAvatar,\r\n\tBringToBack,\r\n\tBringToFront,\r\n\tBrowser,\r\n\tButton,\r\n\tCalendar,\r\n\tCheckbox,\r\n\tCircle,\r\n\tDropdown,\r\n\tImage,\r\n\tInput,\r\n\tIPhoneMockup,\r\n\tKeyboard,\r\n\tLabel,\r\n\tLine,\r\n\tLineChart,\r\n\tLink,\r\n\tList,\r\n\tMoveBackward,\r\n\tMoveForward,\r\n\tNotes,\r\n\tOverlay,\r\n\tPieChart,\r\n\tRadio,\r\n\tRectangle,\r\n\tScrollbar,\r\n\tSearch,\r\n\tSlider,\r\n\tSubtitle,\r\n\tTable,\r\n\tTabs,\r\n\tTextArea,\r\n\tTextBlock,\r\n\tTitle,\r\n\tToggleSwitch,\r\n\tToolbar,\r\n\tTooltip,\r\n\tVideo,\r\n\tYesNo\r\n};"],"file":"index.js"}
@@ -22,25 +22,24 @@ var Help = function Help(_ref) {
22
22
  height: size,
23
23
  viewBox: "0 0 24 24",
24
24
  fill: "none"
25
- }, props), /*#__PURE__*/React.createElement("path", {
26
- d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
25
+ }, props), /*#__PURE__*/React.createElement("g", {
26
+ clipPath: "url(#Help_js__clip0_7880_44)"
27
+ }, /*#__PURE__*/React.createElement("circle", {
28
+ cx: 12,
29
+ cy: 12,
30
+ r: 10,
27
31
  stroke: color,
28
- strokeWidth: strokeWidth,
29
- strokeLinecap: "round",
30
- strokeLinejoin: "round"
32
+ strokeWidth: strokeWidth
31
33
  }), /*#__PURE__*/React.createElement("path", {
32
- d: "M9.09009 9.00008C9.32519 8.33175 9.78924 7.76819 10.4 7.40921C11.0108 7.05024 11.729 6.91902 12.4273 7.03879C13.1255 7.15857 13.7589 7.52161 14.2152 8.06361C14.6714 8.60561 14.9211 9.2916 14.9201 10.0001C14.9201 12.0001 11.9201 13.0001 11.9201 13.0001",
33
- stroke: color,
34
- strokeWidth: strokeWidth,
35
- strokeLinecap: "round",
36
- strokeLinejoin: "round"
37
- }), /*#__PURE__*/React.createElement("path", {
38
- d: "M12 17H12.01",
39
- stroke: color,
40
- strokeWidth: strokeWidth,
41
- strokeLinecap: "round",
42
- strokeLinejoin: "round"
43
- }));
34
+ d: "M10.896 14.806C10.896 14.4139 10.926 14.0463 10.9859 13.7032C11.0512 13.3601 11.171 13.0334 11.3453 12.7229C11.4923 12.4289 11.6639 12.192 11.8599 12.0123C12.0614 11.8271 12.2793 11.6474 12.5134 11.4731C12.753 11.2934 13.0036 11.0647 13.265 10.7869C13.4828 10.5473 13.6271 10.305 13.6979 10.0599C13.7741 9.81484 13.8123 9.55071 13.8123 9.26753C13.8123 9.06059 13.7878 8.86726 13.7387 8.68754C13.6897 8.50783 13.608 8.35262 13.4937 8.22192C13.3194 8.00408 13.0989 7.8516 12.832 7.76447C12.5652 7.67189 12.2874 7.6256 11.9988 7.6256C11.7374 7.6256 11.4869 7.66099 11.2473 7.73179C11.0131 7.80259 10.817 7.9115 10.6591 8.05854C10.4903 8.20014 10.365 8.37713 10.2833 8.58952C10.2071 8.79646 10.1717 9.02246 10.1771 9.26753H8.38C8.42357 8.75562 8.55427 8.27638 8.7721 7.82982C8.98994 7.38325 9.28402 7.0211 9.65434 6.74336C9.9702 6.49285 10.3296 6.30769 10.7326 6.18788C11.1356 6.06263 11.5386 6 11.9416 6C12.5189 6 13.0635 6.08986 13.5754 6.26957C14.0927 6.44929 14.523 6.74064 14.866 7.14363C15.1166 7.42682 15.3044 7.75085 15.4297 8.11573C15.5604 8.47515 15.6257 8.8482 15.6257 9.23485C15.6257 9.75221 15.5141 10.2315 15.2908 10.6726C15.073 11.1137 14.7925 11.5167 14.4494 11.8816C14.2697 12.0722 14.0873 12.2464 13.9021 12.4044C13.717 12.5568 13.5454 12.7066 13.3875 12.8536C13.2296 13.0007 13.0989 13.1613 12.9954 13.3356C12.8483 13.5861 12.7639 13.8121 12.7422 14.0136C12.7204 14.2097 12.7095 14.4738 12.7095 14.806H10.896ZM10.9042 18V16.0231H12.7095V18H10.9042Z",
35
+ fill: color
36
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
37
+ id: "Help_js__clip0_7880_44"
38
+ }, /*#__PURE__*/React.createElement("rect", {
39
+ width: 24,
40
+ height: 24,
41
+ fill: color
42
+ }))));
44
43
  };
45
44
 
46
45
  export default Help;
@@ -1 +1 @@
1
- {"version":3,"sources":["../../generate/icons/Help.js"],"names":["React","Help","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,IAAI,GAAG,SAAPA,IAAO,OAKP;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,mHADJ;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,6PADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,cADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,CADF;AAyBD,CA/BD;;AAgCA,eAAeH,IAAf","sourcesContent":["import React from \"react\";\nconst Help = ({\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=\"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M9.09009 9.00008C9.32519 8.33175 9.78924 7.76819 10.4 7.40921C11.0108 7.05024 11.729 6.91902 12.4273 7.03879C13.1255 7.15857 13.7589 7.52161 14.2152 8.06361C14.6714 8.60561 14.9211 9.2916 14.9201 10.0001C14.9201 12.0001 11.9201 13.0001 11.9201 13.0001\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12 17H12.01\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n};\nexport default Help;\n"],"file":"Help.js"}
1
+ {"version":3,"sources":["../../generate/icons/Help.js"],"names":["React","Help","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,IAAI,GAAG,SAAPA,IAAO,OAKP;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,EAAE,EAAE,EADN;AAEE,IAAA,EAAE,EAAE,EAFN;AAGE,IAAA,CAAC,EAAE,EAHL;AAIE,IAAA,MAAM,EAAEF,KAJV;AAKE,IAAA,WAAW,EAAEC;AALf,IADF,eAQE;AACE,IAAA,CAAC,EAAC,y7CADJ;AAEE,IAAA,IAAI,EAAED;AAFR,IARF,CADF,eAcE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAEA;AAAnC,IADF,CADF,CAdF,CADF;AAsBD,CA5BD;;AA6BA,eAAeF,IAAf","sourcesContent":["import React from \"react\";\nconst Help = ({\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(#Help_js__clip0_7880_44)\">\n <circle\n cx={12}\n cy={12}\n r={10}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M10.896 14.806C10.896 14.4139 10.926 14.0463 10.9859 13.7032C11.0512 13.3601 11.171 13.0334 11.3453 12.7229C11.4923 12.4289 11.6639 12.192 11.8599 12.0123C12.0614 11.8271 12.2793 11.6474 12.5134 11.4731C12.753 11.2934 13.0036 11.0647 13.265 10.7869C13.4828 10.5473 13.6271 10.305 13.6979 10.0599C13.7741 9.81484 13.8123 9.55071 13.8123 9.26753C13.8123 9.06059 13.7878 8.86726 13.7387 8.68754C13.6897 8.50783 13.608 8.35262 13.4937 8.22192C13.3194 8.00408 13.0989 7.8516 12.832 7.76447C12.5652 7.67189 12.2874 7.6256 11.9988 7.6256C11.7374 7.6256 11.4869 7.66099 11.2473 7.73179C11.0131 7.80259 10.817 7.9115 10.6591 8.05854C10.4903 8.20014 10.365 8.37713 10.2833 8.58952C10.2071 8.79646 10.1717 9.02246 10.1771 9.26753H8.38C8.42357 8.75562 8.55427 8.27638 8.7721 7.82982C8.98994 7.38325 9.28402 7.0211 9.65434 6.74336C9.9702 6.49285 10.3296 6.30769 10.7326 6.18788C11.1356 6.06263 11.5386 6 11.9416 6C12.5189 6 13.0635 6.08986 13.5754 6.26957C14.0927 6.44929 14.523 6.74064 14.866 7.14363C15.1166 7.42682 15.3044 7.75085 15.4297 8.11573C15.5604 8.47515 15.6257 8.8482 15.6257 9.23485C15.6257 9.75221 15.5141 10.2315 15.2908 10.6726C15.073 11.1137 14.7925 11.5167 14.4494 11.8816C14.2697 12.0722 14.0873 12.2464 13.9021 12.4044C13.717 12.5568 13.5454 12.7066 13.3875 12.8536C13.2296 13.0007 13.0989 13.1613 12.9954 13.3356C12.8483 13.5861 12.7639 13.8121 12.7422 14.0136C12.7204 14.2097 12.7095 14.4738 12.7095 14.806H10.896ZM10.9042 18V16.0231H12.7095V18H10.9042Z\"\n fill={color}\n />\n </g>\n <defs>\n <clipPath id=\"Help_js__clip0_7880_44\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default Help;\n"],"file":"Help.js"}
@@ -22,37 +22,39 @@ var MyPreferences = function MyPreferences(_ref) {
22
22
  height: size,
23
23
  viewBox: "0 0 24 24",
24
24
  fill: "none"
25
- }, props), /*#__PURE__*/React.createElement("path", {
26
- d: "M16.5675 3C16.6705 3.00002 16.7709 3.03182 16.8552 3.09106C16.9394 3.1503 17.0032 3.2341 17.038 3.331L17.292 4.0385C17.3324 4.14976 17.4106 4.24324 17.513 4.3025L18.2665 4.7375C18.3689 4.79654 18.4888 4.81744 18.605 4.7965L19.345 4.663C19.4464 4.64456 19.5511 4.65791 19.6446 4.70123C19.7382 4.74455 19.816 4.81572 19.8675 4.905L20.2675 5.595C20.3192 5.68404 20.3421 5.78686 20.3332 5.88941C20.3242 5.99196 20.2838 6.08926 20.2175 6.168L19.732 6.742C19.6556 6.83226 19.6136 6.94671 19.6135 7.065V7.935C19.6136 8.05329 19.6556 8.16774 19.732 8.258L20.2175 8.832C20.2838 8.91074 20.3242 9.00804 20.3332 9.11059C20.3421 9.21314 20.3192 9.31596 20.2675 9.405L19.8675 10.095C19.816 10.1842 19.7383 10.2553 19.6448 10.2986C19.5514 10.3419 19.4469 10.3553 19.3455 10.337L18.6055 10.2035C18.4893 10.1826 18.3694 10.2035 18.267 10.2625L17.5135 10.6975C17.4111 10.7568 17.3329 10.8502 17.2925 10.9615L17.0385 11.669C17.0037 11.766 16.9398 11.8498 16.8554 11.9091C16.7711 11.9683 16.6706 12.0001 16.5675 12H15.7675C15.6646 12 15.5641 11.9682 15.4799 11.9089C15.3957 11.8497 15.3318 11.7659 15.297 11.669L15.043 10.9615C15.0027 10.8504 14.9247 10.757 14.8225 10.6975L14.0685 10.2625C13.9662 10.2035 13.8463 10.1826 13.73 10.2035L12.99 10.337C12.8886 10.3554 12.784 10.3421 12.6905 10.2988C12.5969 10.2554 12.5191 10.1843 12.4675 10.095L12.0675 9.405C12.0159 9.31596 11.9929 9.21314 12.0019 9.11059C12.0108 9.00804 12.0512 8.91074 12.1175 8.832L12.603 8.258C12.6795 8.16774 12.7215 8.05329 12.7215 7.935V7.065C12.7215 6.94671 12.6795 6.83226 12.603 6.742L12.1225 6.168C12.0562 6.08926 12.0158 5.99196 12.0069 5.88941C11.9979 5.78686 12.0209 5.68404 12.0725 5.595L12.4725 4.905C12.524 4.81582 12.6018 4.74471 12.6952 4.70139C12.7887 4.65808 12.8932 4.64467 12.9945 4.663L13.7345 4.7965C13.8508 4.81744 13.9707 4.79654 14.073 4.7375L14.827 4.3025C14.9292 4.24305 15.0072 4.14961 15.0475 4.0385L15.3015 3.331C15.3361 3.23482 15.3993 3.15153 15.4826 3.09235C15.5659 3.03316 15.6653 3.00094 15.7675 3H16.5675Z",
25
+ }, props), /*#__PURE__*/React.createElement("g", {
26
+ clipPath: "url(#MyPreferences_js__clip0_7869_32)"
27
+ }, /*#__PURE__*/React.createElement("path", {
28
+ d: "M5 7C5 8.06087 5.42143 9.07828 6.17157 9.82843C6.92172 10.5786 7.93913 11 9 11C10.0609 11 11.0783 10.5786 11.8284 9.82843C12.5786 9.07828 13 8.06087 13 7C13 5.93913 12.5786 4.92172 11.8284 4.17157C11.0783 3.42143 10.0609 3 9 3C7.93913 3 6.92172 3.42143 6.17157 4.17157C5.42143 4.92172 5 5.93913 5 7Z",
27
29
  stroke: color,
28
30
  strokeWidth: strokeWidth,
29
31
  strokeLinecap: "round",
30
32
  strokeLinejoin: "round"
31
33
  }), /*#__PURE__*/React.createElement("path", {
32
- d: "M16.1675 8.875C16.9269 8.875 17.5425 8.25939 17.5425 7.5C17.5425 6.74061 16.9269 6.125 16.1675 6.125C15.4081 6.125 14.7925 6.74061 14.7925 7.5C14.7925 8.25939 15.4081 8.875 16.1675 8.875Z",
34
+ d: "M3 21V19C3 17.9391 3.42143 16.9217 4.17157 16.1716C4.92172 15.4214 5.93913 15 7 15H11",
33
35
  stroke: color,
34
36
  strokeWidth: strokeWidth,
35
37
  strokeLinecap: "round",
36
38
  strokeLinejoin: "round"
37
- }), /*#__PURE__*/React.createElement("rect", {
38
- x: 2,
39
- y: 12,
40
- width: 3,
41
- height: 8,
42
- rx: 1,
43
- stroke: color,
44
- strokeWidth: strokeWidth
45
39
  }), /*#__PURE__*/React.createElement("path", {
46
- d: "M5.5 13L7.86164 12.2128C8.26741 12.0775 8.71177 12.1235 9.08123 12.3391L13.2197 14.7531C13.9242 15.1641 14.157 16.0716 13.7374 16.771V16.771C13.3276 17.454 12.4471 17.6841 11.7556 17.2889L9.5 16",
40
+ d: "M18.9319 13C19.0431 13 19.1515 13.0354 19.2425 13.1012C19.3334 13.167 19.4024 13.2601 19.4399 13.3678L19.7142 14.1539C19.7577 14.2775 19.8422 14.3814 19.9528 14.4472L20.7664 14.9306C20.8769 14.9962 21.0064 15.0194 21.132 14.9961L21.931 14.8478C22.0405 14.8273 22.1535 14.8421 22.2545 14.8903C22.3555 14.9384 22.4395 15.0175 22.4952 15.1167L22.9271 15.8833C22.9829 15.9823 23.0076 16.0965 22.998 16.2105C22.9883 16.3244 22.9447 16.4325 22.8731 16.52L22.3489 17.1578C22.2663 17.2581 22.221 17.3852 22.2209 17.5167V18.4833C22.221 18.6148 22.2663 18.7419 22.3489 18.8422L22.8731 19.48C22.9447 19.5675 22.9883 19.6756 22.998 19.7895C23.0076 19.9035 22.9829 20.0177 22.9271 20.1167L22.4952 20.8833C22.4396 20.9824 22.3556 21.0614 22.2547 21.1096C22.1538 21.1577 22.0409 21.1726 21.9315 21.1522L21.1325 21.0039C21.007 20.9806 20.8775 21.0038 20.767 21.0694L19.9534 21.5528C19.8428 21.6186 19.7583 21.7225 19.7147 21.8461L19.4405 22.6322C19.4029 22.74 19.3338 22.8331 19.2428 22.899C19.1518 22.9648 19.0432 23.0001 18.9319 23H18.0681C17.9569 23 17.8485 22.9646 17.7575 22.8988C17.6666 22.833 17.5976 22.7399 17.5601 22.6322L17.2858 21.8461C17.2423 21.7227 17.158 21.6188 17.0477 21.5528L16.2336 21.0694C16.1231 21.0038 15.9936 20.9806 15.868 21.0039L15.069 21.1522C14.9595 21.1727 14.8465 21.1579 14.7455 21.1097C14.6445 21.0616 14.5605 20.9825 14.5048 20.8833L14.0729 20.1167C14.0171 20.0177 13.9924 19.9035 14.002 19.7895C14.0117 19.6756 14.0553 19.5675 14.1269 19.48L14.6511 18.8422C14.7337 18.7419 14.779 18.6148 14.7791 18.4833V17.5167C14.779 17.3852 14.7337 17.2581 14.6511 17.1578L14.1323 16.52C14.0607 16.4325 14.0171 16.3244 14.0074 16.2105C13.9978 16.0965 14.0225 15.9823 14.0783 15.8833L14.5102 15.1167C14.5658 15.0176 14.6498 14.9386 14.7507 14.8904C14.8516 14.8423 14.9645 14.8274 15.0739 14.8478L15.8729 14.9961C15.9984 15.0194 16.1279 14.9962 16.2384 14.9306L17.0526 14.4472C17.1629 14.3812 17.2471 14.2773 17.2907 14.1539L17.5649 13.3678C17.6022 13.2609 17.6704 13.1684 17.7604 13.1026C17.8504 13.0368 17.9577 13.001 18.0681 13H18.9319Z",
47
41
  stroke: color,
48
42
  strokeWidth: strokeWidth,
49
- strokeLinecap: "round"
43
+ strokeLinecap: "round",
44
+ strokeLinejoin: "round"
50
45
  }), /*#__PURE__*/React.createElement("path", {
51
- d: "M14 17L19.0915 15.825C19.8901 15.6407 20.6979 16.0938 20.9571 16.8714V16.8714C21.25 17.7499 20.7329 18.6918 19.8345 18.9164L12.2597 20.8101C11.7695 20.9326 11.2516 20.8758 10.7996 20.6498L7.28636 18.8932C6.78286 18.6414 6.19998 18.6 5.66595 18.778L5 19",
46
+ d: "M18.5 19.5278C19.32 19.5278 19.9847 18.8438 19.9847 18C19.9847 17.1562 19.32 16.4722 18.5 16.4722C17.68 16.4722 17.0153 17.1562 17.0153 18C17.0153 18.8438 17.68 19.5278 18.5 19.5278Z",
52
47
  stroke: color,
53
48
  strokeWidth: strokeWidth,
54
- strokeLinecap: "round"
55
- }));
49
+ strokeLinecap: "round",
50
+ strokeLinejoin: "round"
51
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
52
+ id: "MyPreferences_js__clip0_7869_32"
53
+ }, /*#__PURE__*/React.createElement("rect", {
54
+ width: 24,
55
+ height: 24,
56
+ fill: color
57
+ }))));
56
58
  };
57
59
 
58
60
  export default MyPreferences;
@@ -1 +1 @@
1
- {"version":3,"sources":["../../generate/icons/MyPreferences.js"],"names":["React","MyPreferences","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,aAAa,GAAG,SAAhBA,aAAgB,OAKhB;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,y8DADJ;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,6LADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAE,CADL;AAEE,IAAA,CAAC,EAAE,EAFL;AAGE,IAAA,KAAK,EAAE,CAHT;AAIE,IAAA,MAAM,EAAE,CAJV;AAKE,IAAA,EAAE,EAAE,CALN;AAME,IAAA,MAAM,EAAED,KANV;AAOE,IAAA,WAAW,EAAEC;AAPf,IAfF,eAwBE;AACE,IAAA,CAAC,EAAC,oMADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAxBF,eA8BE;AACE,IAAA,CAAC,EAAC,8PADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA9BF,CADF;AAuCD,CA7CD;;AA8CA,eAAeH,aAAf","sourcesContent":["import React from \"react\";\nconst MyPreferences = ({\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.5675 3C16.6705 3.00002 16.7709 3.03182 16.8552 3.09106C16.9394 3.1503 17.0032 3.2341 17.038 3.331L17.292 4.0385C17.3324 4.14976 17.4106 4.24324 17.513 4.3025L18.2665 4.7375C18.3689 4.79654 18.4888 4.81744 18.605 4.7965L19.345 4.663C19.4464 4.64456 19.5511 4.65791 19.6446 4.70123C19.7382 4.74455 19.816 4.81572 19.8675 4.905L20.2675 5.595C20.3192 5.68404 20.3421 5.78686 20.3332 5.88941C20.3242 5.99196 20.2838 6.08926 20.2175 6.168L19.732 6.742C19.6556 6.83226 19.6136 6.94671 19.6135 7.065V7.935C19.6136 8.05329 19.6556 8.16774 19.732 8.258L20.2175 8.832C20.2838 8.91074 20.3242 9.00804 20.3332 9.11059C20.3421 9.21314 20.3192 9.31596 20.2675 9.405L19.8675 10.095C19.816 10.1842 19.7383 10.2553 19.6448 10.2986C19.5514 10.3419 19.4469 10.3553 19.3455 10.337L18.6055 10.2035C18.4893 10.1826 18.3694 10.2035 18.267 10.2625L17.5135 10.6975C17.4111 10.7568 17.3329 10.8502 17.2925 10.9615L17.0385 11.669C17.0037 11.766 16.9398 11.8498 16.8554 11.9091C16.7711 11.9683 16.6706 12.0001 16.5675 12H15.7675C15.6646 12 15.5641 11.9682 15.4799 11.9089C15.3957 11.8497 15.3318 11.7659 15.297 11.669L15.043 10.9615C15.0027 10.8504 14.9247 10.757 14.8225 10.6975L14.0685 10.2625C13.9662 10.2035 13.8463 10.1826 13.73 10.2035L12.99 10.337C12.8886 10.3554 12.784 10.3421 12.6905 10.2988C12.5969 10.2554 12.5191 10.1843 12.4675 10.095L12.0675 9.405C12.0159 9.31596 11.9929 9.21314 12.0019 9.11059C12.0108 9.00804 12.0512 8.91074 12.1175 8.832L12.603 8.258C12.6795 8.16774 12.7215 8.05329 12.7215 7.935V7.065C12.7215 6.94671 12.6795 6.83226 12.603 6.742L12.1225 6.168C12.0562 6.08926 12.0158 5.99196 12.0069 5.88941C11.9979 5.78686 12.0209 5.68404 12.0725 5.595L12.4725 4.905C12.524 4.81582 12.6018 4.74471 12.6952 4.70139C12.7887 4.65808 12.8932 4.64467 12.9945 4.663L13.7345 4.7965C13.8508 4.81744 13.9707 4.79654 14.073 4.7375L14.827 4.3025C14.9292 4.24305 15.0072 4.14961 15.0475 4.0385L15.3015 3.331C15.3361 3.23482 15.3993 3.15153 15.4826 3.09235C15.5659 3.03316 15.6653 3.00094 15.7675 3H16.5675Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M16.1675 8.875C16.9269 8.875 17.5425 8.25939 17.5425 7.5C17.5425 6.74061 16.9269 6.125 16.1675 6.125C15.4081 6.125 14.7925 6.74061 14.7925 7.5C14.7925 8.25939 15.4081 8.875 16.1675 8.875Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <rect\n x={2}\n y={12}\n width={3}\n height={8}\n rx={1}\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M5.5 13L7.86164 12.2128C8.26741 12.0775 8.71177 12.1235 9.08123 12.3391L13.2197 14.7531C13.9242 15.1641 14.157 16.0716 13.7374 16.771V16.771C13.3276 17.454 12.4471 17.6841 11.7556 17.2889L9.5 16\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M14 17L19.0915 15.825C19.8901 15.6407 20.6979 16.0938 20.9571 16.8714V16.8714C21.25 17.7499 20.7329 18.6918 19.8345 18.9164L12.2597 20.8101C11.7695 20.9326 11.2516 20.8758 10.7996 20.6498L7.28636 18.8932C6.78286 18.6414 6.19998 18.6 5.66595 18.778L5 19\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default MyPreferences;\n"],"file":"MyPreferences.js"}
1
+ {"version":3,"sources":["../../generate/icons/MyPreferences.js"],"names":["React","MyPreferences","size","color","strokeWidth","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,aAAa,GAAG,SAAhBA,aAAgB,OAKhB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AACE,IAAA,CAAC,EAAC,6SADJ;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,uFADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,8/DADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,wLADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,CADF,eA+BE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AAAM,IAAA,KAAK,EAAE,EAAb;AAAiB,IAAA,MAAM,EAAE,EAAzB;AAA6B,IAAA,IAAI,EAAED;AAAnC,IADF,CADF,CA/BF,CADF;AAuCD,CA7CD;;AA8CA,eAAeF,aAAf","sourcesContent":["import React from \"react\";\nconst MyPreferences = ({\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(#MyPreferences_js__clip0_7869_32)\">\n <path\n d=\"M5 7C5 8.06087 5.42143 9.07828 6.17157 9.82843C6.92172 10.5786 7.93913 11 9 11C10.0609 11 11.0783 10.5786 11.8284 9.82843C12.5786 9.07828 13 8.06087 13 7C13 5.93913 12.5786 4.92172 11.8284 4.17157C11.0783 3.42143 10.0609 3 9 3C7.93913 3 6.92172 3.42143 6.17157 4.17157C5.42143 4.92172 5 5.93913 5 7Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3 21V19C3 17.9391 3.42143 16.9217 4.17157 16.1716C4.92172 15.4214 5.93913 15 7 15H11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M18.9319 13C19.0431 13 19.1515 13.0354 19.2425 13.1012C19.3334 13.167 19.4024 13.2601 19.4399 13.3678L19.7142 14.1539C19.7577 14.2775 19.8422 14.3814 19.9528 14.4472L20.7664 14.9306C20.8769 14.9962 21.0064 15.0194 21.132 14.9961L21.931 14.8478C22.0405 14.8273 22.1535 14.8421 22.2545 14.8903C22.3555 14.9384 22.4395 15.0175 22.4952 15.1167L22.9271 15.8833C22.9829 15.9823 23.0076 16.0965 22.998 16.2105C22.9883 16.3244 22.9447 16.4325 22.8731 16.52L22.3489 17.1578C22.2663 17.2581 22.221 17.3852 22.2209 17.5167V18.4833C22.221 18.6148 22.2663 18.7419 22.3489 18.8422L22.8731 19.48C22.9447 19.5675 22.9883 19.6756 22.998 19.7895C23.0076 19.9035 22.9829 20.0177 22.9271 20.1167L22.4952 20.8833C22.4396 20.9824 22.3556 21.0614 22.2547 21.1096C22.1538 21.1577 22.0409 21.1726 21.9315 21.1522L21.1325 21.0039C21.007 20.9806 20.8775 21.0038 20.767 21.0694L19.9534 21.5528C19.8428 21.6186 19.7583 21.7225 19.7147 21.8461L19.4405 22.6322C19.4029 22.74 19.3338 22.8331 19.2428 22.899C19.1518 22.9648 19.0432 23.0001 18.9319 23H18.0681C17.9569 23 17.8485 22.9646 17.7575 22.8988C17.6666 22.833 17.5976 22.7399 17.5601 22.6322L17.2858 21.8461C17.2423 21.7227 17.158 21.6188 17.0477 21.5528L16.2336 21.0694C16.1231 21.0038 15.9936 20.9806 15.868 21.0039L15.069 21.1522C14.9595 21.1727 14.8465 21.1579 14.7455 21.1097C14.6445 21.0616 14.5605 20.9825 14.5048 20.8833L14.0729 20.1167C14.0171 20.0177 13.9924 19.9035 14.002 19.7895C14.0117 19.6756 14.0553 19.5675 14.1269 19.48L14.6511 18.8422C14.7337 18.7419 14.779 18.6148 14.7791 18.4833V17.5167C14.779 17.3852 14.7337 17.2581 14.6511 17.1578L14.1323 16.52C14.0607 16.4325 14.0171 16.3244 14.0074 16.2105C13.9978 16.0965 14.0225 15.9823 14.0783 15.8833L14.5102 15.1167C14.5658 15.0176 14.6498 14.9386 14.7507 14.8904C14.8516 14.8423 14.9645 14.8274 15.0739 14.8478L15.8729 14.9961C15.9984 15.0194 16.1279 14.9962 16.2384 14.9306L17.0526 14.4472C17.1629 14.3812 17.2471 14.2773 17.2907 14.1539L17.5649 13.3678C17.6022 13.2609 17.6704 13.1684 17.7604 13.1026C17.8504 13.0368 17.9577 13.001 18.0681 13H18.9319Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M18.5 19.5278C19.32 19.5278 19.9847 18.8438 19.9847 18C19.9847 17.1562 19.32 16.4722 18.5 16.4722C17.68 16.4722 17.0153 17.1562 17.0153 18C17.0153 18.8438 17.68 19.5278 18.5 19.5278Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"MyPreferences_js__clip0_7869_32\">\n <rect width={24} height={24} fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default MyPreferences;\n"],"file":"MyPreferences.js"}
package/elements.d.ts CHANGED
@@ -6,6 +6,8 @@ export const Alert: React.FC<IconProps>;
6
6
  export const AndroidMockup: React.FC<IconProps>;
7
7
  export const Arrow: React.FC<IconProps>;
8
8
  export const Avatar: React.FC<IconProps>;
9
+ export const BringToBack: React.FC<IconProps>;
10
+ export const BringToFront: React.FC<IconProps>;
9
11
  export const Browser: React.FC<IconProps>;
10
12
  export const Button: React.FC<IconProps>;
11
13
  export const Calendar: React.FC<IconProps>;
@@ -21,6 +23,8 @@ export const Line: React.FC<IconProps>;
21
23
  export const LineChart: React.FC<IconProps>;
22
24
  export const Link: React.FC<IconProps>;
23
25
  export const List: React.FC<IconProps>;
26
+ export const MoveBackward: React.FC<IconProps>;
27
+ export const MoveForward: React.FC<IconProps>;
24
28
  export const Notes: React.FC<IconProps>;
25
29
  export const Overlay: React.FC<IconProps>;
26
30
  export const PieChart: React.FC<IconProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons",
3
- "version": "1.20.41",
3
+ "version": "1.20.43",
4
4
  "author": "vinay0x",
5
5
  "license": "MIT",
6
6
  "types": "./icons.d.ts",