@gympass/yoga-icons 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cjs/flags.js CHANGED
@@ -45,6 +45,12 @@ Object.defineProperty(exports, "FlagMexico", {
45
45
  return _flag_mexico["default"];
46
46
  }
47
47
  });
48
+ Object.defineProperty(exports, "FlagNetherlands", {
49
+ enumerable: true,
50
+ get: function get() {
51
+ return _flag_netherlands["default"];
52
+ }
53
+ });
48
54
  Object.defineProperty(exports, "FlagPortugal", {
49
55
  enumerable: true,
50
56
  get: function get() {
@@ -69,6 +75,12 @@ Object.defineProperty(exports, "FlagUS", {
69
75
  return _flag_us["default"];
70
76
  }
71
77
  });
78
+ Object.defineProperty(exports, "FlagUruguay", {
79
+ enumerable: true,
80
+ get: function get() {
81
+ return _flag_uruguay["default"];
82
+ }
83
+ });
72
84
 
73
85
  var _flag_argentina = _interopRequireDefault(require("./svg/flag_argentina"));
74
86
 
@@ -84,12 +96,16 @@ var _flag_italy = _interopRequireDefault(require("./svg/flag_italy"));
84
96
 
85
97
  var _flag_mexico = _interopRequireDefault(require("./svg/flag_mexico"));
86
98
 
99
+ var _flag_netherlands = _interopRequireDefault(require("./svg/flag_netherlands"));
100
+
87
101
  var _flag_portugal = _interopRequireDefault(require("./svg/flag_portugal"));
88
102
 
89
103
  var _flag_spain = _interopRequireDefault(require("./svg/flag_spain"));
90
104
 
91
105
  var _flag_uk = _interopRequireDefault(require("./svg/flag_uk"));
92
106
 
107
+ var _flag_uruguay = _interopRequireDefault(require("./svg/flag_uruguay"));
108
+
93
109
  var _flag_us = _interopRequireDefault(require("./svg/flag_us"));
94
110
 
95
111
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _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 ? Object.assign.bind() : 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
+ var SvgComponent = 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_32168_262847)"
27
+ }, /*#__PURE__*/React.createElement("path", {
28
+ d: "M5.99976 12C9.31346 12 11.9998 9.31371 11.9998 6C11.9998 2.68629 9.31346 0 5.99976 0C2.68605 0 -0.000244141 2.68629 -0.000244141 6C-0.000244141 9.31371 2.68605 12 5.99976 12Z",
29
+ fill: "#F0F0F0"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M6.00009 0C3.42031 0 1.22105 1.62825 0.373291 3.91305H11.6269C10.7791 1.62825 8.57988 0 6.00009 0V0Z",
32
+ fill: "#A2001D"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M6.00009 12C8.57988 12 10.7791 10.3718 11.6269 8.08698H0.373291C1.22105 10.3718 3.42031 12 6.00009 12Z",
35
+ fill: "#0052B4"
36
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
37
+ id: "clip0_32168_262847"
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"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _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 ? Object.assign.bind() : 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
+ var SvgComponent = 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_32168_262847)"
29
+ }, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
30
+ d: "M5.99976 12C9.31346 12 11.9998 9.31371 11.9998 6C11.9998 2.68629 9.31346 0 5.99976 0C2.68605 0 -0.000244141 2.68629 -0.000244141 6C-0.000244141 9.31371 2.68605 12 5.99976 12Z",
31
+ fill: "#F0F0F0"
32
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
33
+ d: "M6.00009 0C3.42031 0 1.22105 1.62825 0.373291 3.91305H11.6269C10.7791 1.62825 8.57988 0 6.00009 0V0Z",
34
+ fill: "#A2001D"
35
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
36
+ d: "M6.00009 12C8.57988 12 10.7791 10.3718 11.6269 8.08698H0.373291C1.22105 10.3718 3.42031 12 6.00009 12Z",
37
+ fill: "#0052B4"
38
+ })), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
39
+ id: "clip0_32168_262847"
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,58 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _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 ? Object.assign.bind() : 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
+ var SvgComponent = 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_32168_262901)"
27
+ }, /*#__PURE__*/React.createElement("path", {
28
+ d: "M6 11.9999C9.31371 11.9999 12 9.31365 12 5.99994C12 2.68623 9.31371 -6.10352e-05 6 -6.10352e-05C2.68629 -6.10352e-05 0 2.68623 0 5.99994C0 9.31365 2.68629 11.9999 6 11.9999Z",
29
+ fill: "#F0F0F0"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M6 4.43473H11.7933C11.6429 3.87659 11.4142 3.35063 11.1194 2.86951H6V4.43473Z",
32
+ fill: "#338AF3"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M2.26504 10.6956H9.73488C10.2824 10.2595 10.752 9.72974 11.1193 9.13037H0.880615C1.2479 9.72971 1.7175 10.2595 2.26504 10.6956V10.6956Z",
35
+ fill: "#338AF3"
36
+ }), /*#__PURE__*/React.createElement("path", {
37
+ d: "M6 -0.00012207V1.30422H9.73493C8.71001 0.48794 7.41209 -0.00012207 6 -0.00012207V-0.00012207Z",
38
+ fill: "#338AF3"
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ d: "M6 4.43473H11.7933C11.6429 3.87659 11.4142 3.35063 11.1194 2.86951H6V4.43473Z",
41
+ fill: "#338AF3"
42
+ }), /*#__PURE__*/React.createElement("path", {
43
+ d: "M0 6C0 6.54157 0.0721875 7.06615 0.206695 7.56523H11.7933C11.9278 7.06615 12 6.54157 12 6H0Z",
44
+ fill: "#338AF3"
45
+ }), /*#__PURE__*/React.createElement("path", {
46
+ d: "M5.2175 3.5114L4.4847 3.8561L4.87491 4.56579L4.07921 4.41358L3.97838 5.21737L3.42418 4.62618L2.86993 5.21737L2.76912 4.41358L1.97342 4.56574L2.36361 3.85607L1.63086 3.5114L2.36363 3.16675L1.97342 2.45707L2.7691 2.60927L2.86995 1.80548L3.42418 2.39667L3.97841 1.80548L4.07921 2.60927L4.87494 2.45707L4.48473 3.16678L5.2175 3.5114Z",
47
+ fill: "#FFDA44"
48
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
49
+ id: "clip0_32168_262901"
50
+ }, /*#__PURE__*/React.createElement("rect", {
51
+ width: 12,
52
+ height: 12,
53
+ fill: "white"
54
+ }))));
55
+ };
56
+
57
+ var _default = SvgComponent;
58
+ exports["default"] = _default;
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _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 ? Object.assign.bind() : 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
+ var SvgComponent = 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_32168_262901)"
29
+ }, /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
30
+ d: "M6 11.9999C9.31371 11.9999 12 9.31365 12 5.99994C12 2.68623 9.31371 -6.10352e-05 6 -6.10352e-05C2.68629 -6.10352e-05 0 2.68623 0 5.99994C0 9.31365 2.68629 11.9999 6 11.9999Z",
31
+ fill: "#F0F0F0"
32
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
33
+ d: "M6 4.43473H11.7933C11.6429 3.87659 11.4142 3.35063 11.1194 2.86951H6V4.43473Z",
34
+ fill: "#338AF3"
35
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
36
+ d: "M2.26504 10.6956H9.73488C10.2824 10.2595 10.752 9.72974 11.1193 9.13037H0.880615C1.2479 9.72971 1.7175 10.2595 2.26504 10.6956V10.6956Z",
37
+ fill: "#338AF3"
38
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
39
+ d: "M6 -0.00012207V1.30422H9.73493C8.71001 0.48794 7.41209 -0.00012207 6 -0.00012207V-0.00012207Z",
40
+ fill: "#338AF3"
41
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
42
+ d: "M6 4.43473H11.7933C11.6429 3.87659 11.4142 3.35063 11.1194 2.86951H6V4.43473Z",
43
+ fill: "#338AF3"
44
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
45
+ d: "M0 6C0 6.54157 0.0721875 7.06615 0.206695 7.56523H11.7933C11.9278 7.06615 12 6.54157 12 6H0Z",
46
+ fill: "#338AF3"
47
+ }), /*#__PURE__*/React.createElement(_reactNativeSvg.Path, {
48
+ d: "M5.2175 3.5114L4.4847 3.8561L4.87491 4.56579L4.07921 4.41358L3.97838 5.21737L3.42418 4.62618L2.86993 5.21737L2.76912 4.41358L1.97342 4.56574L2.36361 3.85607L1.63086 3.5114L2.36363 3.16675L1.97342 2.45707L2.7691 2.60927L2.86995 1.80548L3.42418 2.39667L3.97841 1.80548L4.07921 2.60927L4.87494 2.45707L4.48473 3.16678L5.2175 3.5114Z",
49
+ fill: "#FFDA44"
50
+ })), /*#__PURE__*/React.createElement(_reactNativeSvg.Defs, null, /*#__PURE__*/React.createElement(_reactNativeSvg.ClipPath, {
51
+ id: "clip0_32168_262901"
52
+ }, /*#__PURE__*/React.createElement(_reactNativeSvg.Rect, {
53
+ width: 12,
54
+ height: 12,
55
+ fill: "white"
56
+ }))));
57
+ };
58
+
59
+ var _default = SvgComponent;
60
+ exports["default"] = _default;
package/esm/flags.js CHANGED
@@ -5,8 +5,10 @@ import FlagGermany from "./svg/flag_germany";
5
5
  import FlagIreland from "./svg/flag_ireland";
6
6
  import FlagItaly from "./svg/flag_italy";
7
7
  import FlagMexico from "./svg/flag_mexico";
8
+ import FlagNetherlands from "./svg/flag_netherlands";
8
9
  import FlagPortugal from "./svg/flag_portugal";
9
10
  import FlagSpain from "./svg/flag_spain";
10
11
  import FlagUK from "./svg/flag_uk";
12
+ import FlagUruguay from "./svg/flag_uruguay";
11
13
  import FlagUS from "./svg/flag_us";
12
- export { FlagArgentina, FlagBrazil, FlagChile, FlagGermany, FlagIreland, FlagItaly, FlagMexico, FlagPortugal, FlagSpain, FlagUK, FlagUS };
14
+ export { FlagArgentina, FlagBrazil, FlagChile, FlagGermany, FlagIreland, FlagItaly, FlagMexico, FlagNetherlands, FlagPortugal, FlagSpain, FlagUK, FlagUruguay, FlagUS };
@@ -0,0 +1,32 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
2
+
3
+ import * as React from "react";
4
+
5
+ var SvgComponent = function SvgComponent(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ width: 12,
8
+ height: 12,
9
+ viewBox: "0 0 12 12",
10
+ fill: "none",
11
+ xmlns: "http://www.w3.org/2000/svg"
12
+ }, props), /*#__PURE__*/React.createElement("g", {
13
+ clipPath: "url(#clip0_32168_262847)"
14
+ }, /*#__PURE__*/React.createElement("path", {
15
+ d: "M5.99976 12C9.31346 12 11.9998 9.31371 11.9998 6C11.9998 2.68629 9.31346 0 5.99976 0C2.68605 0 -0.000244141 2.68629 -0.000244141 6C-0.000244141 9.31371 2.68605 12 5.99976 12Z",
16
+ fill: "#F0F0F0"
17
+ }), /*#__PURE__*/React.createElement("path", {
18
+ d: "M6.00009 0C3.42031 0 1.22105 1.62825 0.373291 3.91305H11.6269C10.7791 1.62825 8.57988 0 6.00009 0V0Z",
19
+ fill: "#A2001D"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M6.00009 12C8.57988 12 10.7791 10.3718 11.6269 8.08698H0.373291C1.22105 10.3718 3.42031 12 6.00009 12Z",
22
+ fill: "#0052B4"
23
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
24
+ id: "clip0_32168_262847"
25
+ }, /*#__PURE__*/React.createElement("rect", {
26
+ width: 12,
27
+ height: 12,
28
+ fill: "white"
29
+ }))));
30
+ };
31
+
32
+ export default SvgComponent;
@@ -0,0 +1,44 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
2
+
3
+ import * as React from "react";
4
+
5
+ var SvgComponent = function SvgComponent(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ width: 12,
8
+ height: 12,
9
+ viewBox: "0 0 12 12",
10
+ fill: "none",
11
+ xmlns: "http://www.w3.org/2000/svg"
12
+ }, props), /*#__PURE__*/React.createElement("g", {
13
+ clipPath: "url(#clip0_32168_262901)"
14
+ }, /*#__PURE__*/React.createElement("path", {
15
+ d: "M6 11.9999C9.31371 11.9999 12 9.31365 12 5.99994C12 2.68623 9.31371 -6.10352e-05 6 -6.10352e-05C2.68629 -6.10352e-05 0 2.68623 0 5.99994C0 9.31365 2.68629 11.9999 6 11.9999Z",
16
+ fill: "#F0F0F0"
17
+ }), /*#__PURE__*/React.createElement("path", {
18
+ d: "M6 4.43473H11.7933C11.6429 3.87659 11.4142 3.35063 11.1194 2.86951H6V4.43473Z",
19
+ fill: "#338AF3"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M2.26504 10.6956H9.73488C10.2824 10.2595 10.752 9.72974 11.1193 9.13037H0.880615C1.2479 9.72971 1.7175 10.2595 2.26504 10.6956V10.6956Z",
22
+ fill: "#338AF3"
23
+ }), /*#__PURE__*/React.createElement("path", {
24
+ d: "M6 -0.00012207V1.30422H9.73493C8.71001 0.48794 7.41209 -0.00012207 6 -0.00012207V-0.00012207Z",
25
+ fill: "#338AF3"
26
+ }), /*#__PURE__*/React.createElement("path", {
27
+ d: "M6 4.43473H11.7933C11.6429 3.87659 11.4142 3.35063 11.1194 2.86951H6V4.43473Z",
28
+ fill: "#338AF3"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ d: "M0 6C0 6.54157 0.0721875 7.06615 0.206695 7.56523H11.7933C11.9278 7.06615 12 6.54157 12 6H0Z",
31
+ fill: "#338AF3"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ d: "M5.2175 3.5114L4.4847 3.8561L4.87491 4.56579L4.07921 4.41358L3.97838 5.21737L3.42418 4.62618L2.86993 5.21737L2.76912 4.41358L1.97342 4.56574L2.36361 3.85607L1.63086 3.5114L2.36363 3.16675L1.97342 2.45707L2.7691 2.60927L2.86995 1.80548L3.42418 2.39667L3.97841 1.80548L4.07921 2.60927L4.87494 2.45707L4.48473 3.16678L5.2175 3.5114Z",
34
+ fill: "#FFDA44"
35
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
36
+ id: "clip0_32168_262901"
37
+ }, /*#__PURE__*/React.createElement("rect", {
38
+ width: 12,
39
+ height: 12,
40
+ fill: "white"
41
+ }))));
42
+ };
43
+
44
+ export default SvgComponent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gympass/yoga-icons",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Yoga icon package",
5
5
  "keywords": [
6
6
  "yoga",
@@ -29,7 +29,7 @@
29
29
  "bugs": {
30
30
  "url": "https://github.com/Gympass/yoga/issues"
31
31
  },
32
- "gitHead": "a56e42732554c6991c4337a3d9eef1a34ce14808",
32
+ "gitHead": "cfacc7b8bb39d02ab4bbbc1b2700c2c9cd330227",
33
33
  "module": "./esm",
34
34
  "private": false
35
35
  }