@gympass/yoga-icons 1.3.2 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js +194 -90
- package/cjs/svg/external_link.js +38 -0
- package/cjs/svg/external_link.native.js +40 -0
- package/cjs/svg/flag_argentina.js +49 -0
- package/cjs/svg/flag_argentina.native.js +51 -0
- package/cjs/svg/flag_brazil.js +52 -0
- package/cjs/svg/flag_brazil.native.js +54 -0
- package/cjs/svg/flag_chile.js +49 -0
- package/cjs/svg/flag_chile.native.js +51 -0
- package/cjs/svg/flag_germany.js +46 -0
- package/cjs/svg/flag_germany.native.js +48 -0
- package/cjs/svg/flag_ireland.js +46 -0
- package/cjs/svg/flag_ireland.native.js +48 -0
- package/cjs/svg/flag_italy.js +46 -0
- package/cjs/svg/flag_italy.native.js +48 -0
- package/cjs/svg/flag_mexico.js +52 -0
- package/cjs/svg/flag_mexico.native.js +54 -0
- package/cjs/svg/flag_portugal.js +52 -0
- package/cjs/svg/flag_portugal.native.js +54 -0
- package/cjs/svg/flag_spain.js +46 -0
- package/cjs/svg/flag_spain.native.js +48 -0
- package/cjs/svg/flag_uk.js +79 -0
- package/cjs/svg/flag_uk.native.js +81 -0
- package/cjs/svg/flag_us.js +55 -0
- package/cjs/svg/flag_us.native.js +57 -0
- package/cjs/svg/rectangle.js +30 -0
- package/cjs/svg/rectangle.native.js +32 -0
- package/esm/index.js +14 -1
- package/esm/svg/external_link.js +24 -0
- package/esm/svg/flag_argentina.js +35 -0
- package/esm/svg/flag_brazil.js +38 -0
- package/esm/svg/flag_chile.js +35 -0
- package/esm/svg/flag_germany.js +32 -0
- package/esm/svg/flag_ireland.js +32 -0
- package/esm/svg/flag_italy.js +32 -0
- package/esm/svg/flag_mexico.js +38 -0
- package/esm/svg/flag_portugal.js +38 -0
- package/esm/svg/flag_spain.js +32 -0
- package/esm/svg/flag_uk.js +65 -0
- package/esm/svg/flag_us.js +41 -0
- package/esm/svg/rectangle.js +16 -0
- package/package.json +2 -2
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
|
+
|
|
16
|
+
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); }
|
|
17
|
+
|
|
18
|
+
function SvgComponent(props) {
|
|
19
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
20
|
+
width: 12,
|
|
21
|
+
height: 12,
|
|
22
|
+
viewBox: "0 0 12 12",
|
|
23
|
+
fill: "none",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#clip0_23259_161550)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
29
|
+
fill: "#F0F0F0"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M6.0001 0C3.62133 0 1.56596 1.38434 0.595459 3.39131H11.4047C10.4342 1.38434 8.37884 0 6.0001 0V0Z",
|
|
32
|
+
fill: "#338AF3"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M6.0001 12C8.37884 12 10.4342 10.6156 11.4047 8.60864H0.595459C1.56596 10.6156 3.62133 12 6.0001 12Z",
|
|
35
|
+
fill: "#338AF3"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
d: "M7.79343 6.00001L7.06066 6.34471L7.45087 7.05437L6.65516 6.90215L6.55434 7.70596L6.00011 7.11477L5.44586 7.70596L5.34505 6.90215L4.54935 7.05435L4.93954 6.34468L4.20679 6.00001L4.93956 5.65532L4.54935 4.94568L5.34503 5.09788L5.44588 4.29407L6.00011 4.88525L6.55436 4.29407L6.65516 5.09788L7.45089 4.94568L7.06068 5.65534L7.79343 6.00001Z",
|
|
38
|
+
fill: "#FFDA44"
|
|
39
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
40
|
+
id: "clip0_23259_161550"
|
|
41
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
42
|
+
width: 12,
|
|
43
|
+
height: 12,
|
|
44
|
+
fill: "white"
|
|
45
|
+
}))));
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
var _default = SvgComponent;
|
|
49
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
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); }
|
|
19
|
+
|
|
20
|
+
function SvgComponent(props) {
|
|
21
|
+
return /*#__PURE__*/React.createElement(_reactNativeSvg["default"], _extends({
|
|
22
|
+
width: 12,
|
|
23
|
+
height: 12,
|
|
24
|
+
viewBox: "0 0 12 12",
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement(_reactNativeSvg.G, {
|
|
28
|
+
clipPath: "url(#clip0_23259_161550)"
|
|
29
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
30
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
31
|
+
fill: "#F0F0F0"
|
|
32
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
33
|
+
d: "M6.0001 0C3.62133 0 1.56596 1.38434 0.595459 3.39131H11.4047C10.4342 1.38434 8.37884 0 6.0001 0V0Z",
|
|
34
|
+
fill: "#338AF3"
|
|
35
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
36
|
+
d: "M6.0001 12C8.37884 12 10.4342 10.6156 11.4047 8.60864H0.595459C1.56596 10.6156 3.62133 12 6.0001 12Z",
|
|
37
|
+
fill: "#338AF3"
|
|
38
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
39
|
+
d: "M7.79343 6.00001L7.06066 6.34471L7.45087 7.05437L6.65516 6.90215L6.55434 7.70596L6.00011 7.11477L5.44586 7.70596L5.34505 6.90215L4.54935 7.05435L4.93954 6.34468L4.20679 6.00001L4.93956 5.65532L4.54935 4.94568L5.34503 5.09788L5.44588 4.29407L6.00011 4.88525L6.55436 4.29407L6.65516 5.09788L7.45089 4.94568L7.06068 5.65534L7.79343 6.00001Z",
|
|
40
|
+
fill: "#FFDA44"
|
|
41
|
+
})), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
|
|
42
|
+
id: "clip0_23259_161550"
|
|
43
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Rect, {
|
|
44
|
+
width: 12,
|
|
45
|
+
height: 12,
|
|
46
|
+
fill: "white"
|
|
47
|
+
}))));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
var _default = SvgComponent;
|
|
51
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
|
+
|
|
16
|
+
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); }
|
|
17
|
+
|
|
18
|
+
function SvgComponent(props) {
|
|
19
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
20
|
+
width: 12,
|
|
21
|
+
height: 12,
|
|
22
|
+
viewBox: "0 0 12 12",
|
|
23
|
+
fill: "none",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#clip0_23259_161542)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
29
|
+
fill: "#6DA544"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M5.99997 2.34778L10.9565 5.99995L5.99997 9.65212L1.04346 5.99995L5.99997 2.34778Z",
|
|
32
|
+
fill: "#FFDA44"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M6.00003 8.08698C7.15262 8.08698 8.08698 7.15262 8.08698 6.00003C8.08698 4.84744 7.15262 3.91309 6.00003 3.91309C4.84744 3.91309 3.91309 4.84744 3.91309 6.00003C3.91309 7.15262 4.84744 8.08698 6.00003 8.08698Z",
|
|
35
|
+
fill: "#F0F0F0"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
d: "M4.95638 5.86963C4.59347 5.86963 4.24325 5.92482 3.91357 6.02725C3.92818 7.16725 4.85639 8.08703 5.99986 8.08703C6.70693 8.08703 7.33139 7.73507 7.7089 7.19715C7.06304 6.38863 6.06926 5.86963 4.95638 5.86963V5.86963Z",
|
|
38
|
+
fill: "#0052B4"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M8.04808 6.39987C8.0732 6.27041 8.08677 6.13684 8.08677 6.00003C8.08677 4.84742 7.15241 3.91309 5.99983 3.91309C5.13981 3.91309 4.40153 4.43342 4.08203 5.17634C4.36445 5.11782 4.65686 5.087 4.95637 5.087C6.16848 5.08698 7.26503 5.59084 8.04808 6.39987V6.39987Z",
|
|
41
|
+
fill: "#0052B4"
|
|
42
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
43
|
+
id: "clip0_23259_161542"
|
|
44
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
45
|
+
width: 12,
|
|
46
|
+
height: 12,
|
|
47
|
+
fill: "white"
|
|
48
|
+
}))));
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
var _default = SvgComponent;
|
|
52
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
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); }
|
|
19
|
+
|
|
20
|
+
function SvgComponent(props) {
|
|
21
|
+
return /*#__PURE__*/React.createElement(_reactNativeSvg["default"], _extends({
|
|
22
|
+
width: 12,
|
|
23
|
+
height: 12,
|
|
24
|
+
viewBox: "0 0 12 12",
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement(_reactNativeSvg.G, {
|
|
28
|
+
clipPath: "url(#clip0_23259_161542)"
|
|
29
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
30
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
31
|
+
fill: "#6DA544"
|
|
32
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
33
|
+
d: "M5.99997 2.34778L10.9565 5.99995L5.99997 9.65212L1.04346 5.99995L5.99997 2.34778Z",
|
|
34
|
+
fill: "#FFDA44"
|
|
35
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
36
|
+
d: "M6.00003 8.08698C7.15262 8.08698 8.08698 7.15262 8.08698 6.00003C8.08698 4.84744 7.15262 3.91309 6.00003 3.91309C4.84744 3.91309 3.91309 4.84744 3.91309 6.00003C3.91309 7.15262 4.84744 8.08698 6.00003 8.08698Z",
|
|
37
|
+
fill: "#F0F0F0"
|
|
38
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
39
|
+
d: "M4.95638 5.86963C4.59347 5.86963 4.24325 5.92482 3.91357 6.02725C3.92818 7.16725 4.85639 8.08703 5.99986 8.08703C6.70693 8.08703 7.33139 7.73507 7.7089 7.19715C7.06304 6.38863 6.06926 5.86963 4.95638 5.86963V5.86963Z",
|
|
40
|
+
fill: "#0052B4"
|
|
41
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
42
|
+
d: "M8.04808 6.39987C8.0732 6.27041 8.08677 6.13684 8.08677 6.00003C8.08677 4.84742 7.15241 3.91309 5.99983 3.91309C5.13981 3.91309 4.40153 4.43342 4.08203 5.17634C4.36445 5.11782 4.65686 5.087 4.95637 5.087C6.16848 5.08698 7.26503 5.59084 8.04808 6.39987V6.39987Z",
|
|
43
|
+
fill: "#0052B4"
|
|
44
|
+
})), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
|
|
45
|
+
id: "clip0_23259_161542"
|
|
46
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Rect, {
|
|
47
|
+
width: 12,
|
|
48
|
+
height: 12,
|
|
49
|
+
fill: "white"
|
|
50
|
+
}))));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
var _default = SvgComponent;
|
|
54
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
|
+
|
|
16
|
+
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); }
|
|
17
|
+
|
|
18
|
+
function SvgComponent(props) {
|
|
19
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
20
|
+
width: 12,
|
|
21
|
+
height: 12,
|
|
22
|
+
viewBox: "0 0 12 12",
|
|
23
|
+
fill: "none",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#clip0_23259_161534)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M6 12.0001C9.31371 12.0001 12 9.31383 12 6.00012C12 2.68641 9.31371 0.00012207 6 0.00012207C2.68629 0.00012207 0 2.68641 0 6.00012C0 9.31383 2.68629 12.0001 6 12.0001Z",
|
|
29
|
+
fill: "#F0F0F0"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M12 5.99997C12 9.31366 9.31369 12 6 12C2.68631 12 0 9.31366 0 5.99997C0 2.68628 6 5.99997 6 5.99997C6 5.99997 10.5413 5.99997 12 5.99997Z",
|
|
32
|
+
fill: "#D80027"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M0 6.00012C0 2.68643 2.68631 0.00012207 6 0.00012207V6.00012C6 6.00012 2.08695 6.00012 0 6.00012Z",
|
|
35
|
+
fill: "#0052B4"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
d: "M3.57156 2.08691L3.96009 3.28265H5.21734L4.2002 4.02163L4.5887 5.21737L3.57156 4.47836L2.55442 5.21737L2.94292 4.02163L1.92578 3.28265H3.18304L3.57156 2.08691Z",
|
|
38
|
+
fill: "#F0F0F0"
|
|
39
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
40
|
+
id: "clip0_23259_161534"
|
|
41
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
42
|
+
width: 12,
|
|
43
|
+
height: 12,
|
|
44
|
+
fill: "white"
|
|
45
|
+
}))));
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
var _default = SvgComponent;
|
|
49
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
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); }
|
|
19
|
+
|
|
20
|
+
function SvgComponent(props) {
|
|
21
|
+
return /*#__PURE__*/React.createElement(_reactNativeSvg["default"], _extends({
|
|
22
|
+
width: 12,
|
|
23
|
+
height: 12,
|
|
24
|
+
viewBox: "0 0 12 12",
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement(_reactNativeSvg.G, {
|
|
28
|
+
clipPath: "url(#clip0_23259_161534)"
|
|
29
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
30
|
+
d: "M6 12.0001C9.31371 12.0001 12 9.31383 12 6.00012C12 2.68641 9.31371 0.00012207 6 0.00012207C2.68629 0.00012207 0 2.68641 0 6.00012C0 9.31383 2.68629 12.0001 6 12.0001Z",
|
|
31
|
+
fill: "#F0F0F0"
|
|
32
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
33
|
+
d: "M12 5.99997C12 9.31366 9.31369 12 6 12C2.68631 12 0 9.31366 0 5.99997C0 2.68628 6 5.99997 6 5.99997C6 5.99997 10.5413 5.99997 12 5.99997Z",
|
|
34
|
+
fill: "#D80027"
|
|
35
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
36
|
+
d: "M0 6.00012C0 2.68643 2.68631 0.00012207 6 0.00012207V6.00012C6 6.00012 2.08695 6.00012 0 6.00012Z",
|
|
37
|
+
fill: "#0052B4"
|
|
38
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
39
|
+
d: "M3.57156 2.08691L3.96009 3.28265H5.21734L4.2002 4.02163L4.5887 5.21737L3.57156 4.47836L2.55442 5.21737L2.94292 4.02163L1.92578 3.28265H3.18304L3.57156 2.08691Z",
|
|
40
|
+
fill: "#F0F0F0"
|
|
41
|
+
})), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
|
|
42
|
+
id: "clip0_23259_161534"
|
|
43
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Rect, {
|
|
44
|
+
width: 12,
|
|
45
|
+
height: 12,
|
|
46
|
+
fill: "white"
|
|
47
|
+
}))));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
var _default = SvgComponent;
|
|
51
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
|
+
|
|
16
|
+
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); }
|
|
17
|
+
|
|
18
|
+
function SvgComponent(props) {
|
|
19
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
20
|
+
width: 12,
|
|
21
|
+
height: 12,
|
|
22
|
+
viewBox: "0 0 12 12",
|
|
23
|
+
fill: "none",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#clip0_23259_161526)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M0.373291 8.08703C1.22105 10.3718 3.42031 12.0001 6.00009 12.0001C8.57988 12.0001 10.7791 10.3718 11.6269 8.08703L6.00009 7.56531L0.373291 8.08703Z",
|
|
29
|
+
fill: "#FFDA44"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M6.00009 0C3.42031 0 1.22105 1.62825 0.373291 3.91306L6.00009 4.43477L11.6269 3.91303C10.7791 1.62825 8.57988 0 6.00009 0Z",
|
|
32
|
+
fill: "black"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M0.373195 3.91309C0.132023 4.56308 0 5.26611 0 6.00003C0 6.73395 0.132023 7.43698 0.373195 8.08698H11.6268C11.868 7.43698 12 6.73395 12 6.00003C12 5.26611 11.868 4.56308 11.6268 3.91309H0.373195Z",
|
|
35
|
+
fill: "#D80027"
|
|
36
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
37
|
+
id: "clip0_23259_161526"
|
|
38
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
fill: "white"
|
|
42
|
+
}))));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
var _default = SvgComponent;
|
|
46
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
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); }
|
|
19
|
+
|
|
20
|
+
function SvgComponent(props) {
|
|
21
|
+
return /*#__PURE__*/React.createElement(_reactNativeSvg["default"], _extends({
|
|
22
|
+
width: 12,
|
|
23
|
+
height: 12,
|
|
24
|
+
viewBox: "0 0 12 12",
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement(_reactNativeSvg.G, {
|
|
28
|
+
clipPath: "url(#clip0_23259_161526)"
|
|
29
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
30
|
+
d: "M0.373291 8.08703C1.22105 10.3718 3.42031 12.0001 6.00009 12.0001C8.57988 12.0001 10.7791 10.3718 11.6269 8.08703L6.00009 7.56531L0.373291 8.08703Z",
|
|
31
|
+
fill: "#FFDA44"
|
|
32
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
33
|
+
d: "M6.00009 0C3.42031 0 1.22105 1.62825 0.373291 3.91306L6.00009 4.43477L11.6269 3.91303C10.7791 1.62825 8.57988 0 6.00009 0Z",
|
|
34
|
+
fill: "black"
|
|
35
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
36
|
+
d: "M0.373195 3.91309C0.132023 4.56308 0 5.26611 0 6.00003C0 6.73395 0.132023 7.43698 0.373195 8.08698H11.6268C11.868 7.43698 12 6.73395 12 6.00003C12 5.26611 11.868 4.56308 11.6268 3.91309H0.373195Z",
|
|
37
|
+
fill: "#D80027"
|
|
38
|
+
})), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
|
|
39
|
+
id: "clip0_23259_161526"
|
|
40
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Rect, {
|
|
41
|
+
width: 12,
|
|
42
|
+
height: 12,
|
|
43
|
+
fill: "white"
|
|
44
|
+
}))));
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
var _default = SvgComponent;
|
|
48
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
|
+
|
|
16
|
+
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); }
|
|
17
|
+
|
|
18
|
+
function SvgComponent(props) {
|
|
19
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
20
|
+
width: 12,
|
|
21
|
+
height: 12,
|
|
22
|
+
viewBox: "0 0 12 12",
|
|
23
|
+
fill: "none",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#clip0_23259_161518)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
29
|
+
fill: "#F0F0F0"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M12 6.00007C12 3.42031 10.3717 1.22103 8.08691 0.373291V11.6269C10.3717 10.7791 12 8.57988 12 6.00007V6.00007Z",
|
|
32
|
+
fill: "#FF9811"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M0 6.00007C0 8.57989 1.62825 10.7791 3.91305 11.6269V0.373291C1.62825 1.22103 0 3.42031 0 6.00007V6.00007Z",
|
|
35
|
+
fill: "#6DA544"
|
|
36
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
37
|
+
id: "clip0_23259_161518"
|
|
38
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
fill: "white"
|
|
42
|
+
}))));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
var _default = SvgComponent;
|
|
46
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
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); }
|
|
19
|
+
|
|
20
|
+
function SvgComponent(props) {
|
|
21
|
+
return /*#__PURE__*/React.createElement(_reactNativeSvg["default"], _extends({
|
|
22
|
+
width: 12,
|
|
23
|
+
height: 12,
|
|
24
|
+
viewBox: "0 0 12 12",
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement(_reactNativeSvg.G, {
|
|
28
|
+
clipPath: "url(#clip0_23259_161518)"
|
|
29
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
30
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
31
|
+
fill: "#F0F0F0"
|
|
32
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
33
|
+
d: "M12 6.00007C12 3.42031 10.3717 1.22103 8.08691 0.373291V11.6269C10.3717 10.7791 12 8.57988 12 6.00007V6.00007Z",
|
|
34
|
+
fill: "#FF9811"
|
|
35
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
36
|
+
d: "M0 6.00007C0 8.57989 1.62825 10.7791 3.91305 11.6269V0.373291C1.62825 1.22103 0 3.42031 0 6.00007V6.00007Z",
|
|
37
|
+
fill: "#6DA544"
|
|
38
|
+
})), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
|
|
39
|
+
id: "clip0_23259_161518"
|
|
40
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Rect, {
|
|
41
|
+
width: 12,
|
|
42
|
+
height: 12,
|
|
43
|
+
fill: "white"
|
|
44
|
+
}))));
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
var _default = SvgComponent;
|
|
48
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
|
+
|
|
16
|
+
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); }
|
|
17
|
+
|
|
18
|
+
function SvgComponent(props) {
|
|
19
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
20
|
+
width: 12,
|
|
21
|
+
height: 12,
|
|
22
|
+
viewBox: "0 0 12 12",
|
|
23
|
+
fill: "none",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
clipPath: "url(#clip0_23259_161510)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
29
|
+
fill: "#F0F0F0"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M12 5.99997C12 3.42018 10.3717 1.22093 8.08691 0.373169V11.6268C10.3717 10.779 12 8.57976 12 5.99997V5.99997Z",
|
|
32
|
+
fill: "#D80027"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M0 5.99997C0 8.57976 1.62825 10.779 3.91305 11.6268V0.373169C1.62825 1.22093 0 3.42018 0 5.99997Z",
|
|
35
|
+
fill: "#6DA544"
|
|
36
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
37
|
+
id: "clip0_23259_161510"
|
|
38
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
39
|
+
width: 12,
|
|
40
|
+
height: 12,
|
|
41
|
+
fill: "white"
|
|
42
|
+
}))));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
var _default = SvgComponent;
|
|
46
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
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); }
|
|
19
|
+
|
|
20
|
+
function SvgComponent(props) {
|
|
21
|
+
return /*#__PURE__*/React.createElement(_reactNativeSvg["default"], _extends({
|
|
22
|
+
width: 12,
|
|
23
|
+
height: 12,
|
|
24
|
+
viewBox: "0 0 12 12",
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement(_reactNativeSvg.G, {
|
|
28
|
+
clipPath: "url(#clip0_23259_161510)"
|
|
29
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
30
|
+
d: "M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z",
|
|
31
|
+
fill: "#F0F0F0"
|
|
32
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
33
|
+
d: "M12 5.99997C12 3.42018 10.3717 1.22093 8.08691 0.373169V11.6268C10.3717 10.779 12 8.57976 12 5.99997V5.99997Z",
|
|
34
|
+
fill: "#D80027"
|
|
35
|
+
}), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
|
|
36
|
+
d: "M0 5.99997C0 8.57976 1.62825 10.779 3.91305 11.6268V0.373169C1.62825 1.22093 0 3.42018 0 5.99997Z",
|
|
37
|
+
fill: "#6DA544"
|
|
38
|
+
})), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
|
|
39
|
+
id: "clip0_23259_161510"
|
|
40
|
+
}, /*#__PURE__*/React.createElement(_reactNativeSvg.Rect, {
|
|
41
|
+
width: 12,
|
|
42
|
+
height: 12,
|
|
43
|
+
fill: "white"
|
|
44
|
+
}))));
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
var _default = SvgComponent;
|
|
48
|
+
exports["default"] = _default;
|