@semcore/icon 2.24.0 → 2.25.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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
+ ## [2.25.0] - 2022-05-18
6
+
7
+ ### Added
8
+
9
+ - Added icon `GoogleCloud`.
10
+
5
11
  ## [2.24.0] - 2022-05-12
6
12
 
7
13
  ### Added
@@ -0,0 +1,7 @@
1
+
2
+ import React from 'react';
3
+ import { Merge } from '@semcore/core';
4
+ import { IIconProps } from '@semcore/icon';
5
+ declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
6
+ export default _default;
7
+
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
13
+
14
+ var _react = _interopRequireDefault(require("react"));
15
+
16
+ var _core = require("@semcore/core");
17
+
18
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
19
+
20
+ var _excluded = ["width", "height", "viewBox"];
21
+
22
+ function GoogleCloud(_ref, ref) {
23
+ var _ref$width = _ref.width,
24
+ width = _ref$width === void 0 ? '24' : _ref$width,
25
+ _ref$height = _ref.height,
26
+ height = _ref$height === void 0 ? '24' : _ref$height,
27
+ _ref$viewBox = _ref.viewBox,
28
+ viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
29
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
30
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
31
+ ref: ref,
32
+ "data-name": "GoogleCloud",
33
+ "data-group": "l",
34
+ width: width,
35
+ height: height,
36
+ viewBox: viewBox
37
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
38
+ d: "M20.964 8.73404C20.4771 7.01477 19.4994 5.50096 18.1869 4.34375L15.2829 7.21524C16.3421 8.06769 17.0564 9.32233 17.1865 10.7425V11.6842C17.2029 11.6842 17.2181 11.6792 17.2345 11.6792C18.7011 11.6792 20 12.8595 20 14.3097C20 15.7598 18.7017 17 17.2352 17C17.2188 17 17.2036 16.9956 17.1872 16.995V17H12.9764H12V21H17.1865V20.9975C17.2029 20.9975 17.2181 21 17.2345 21C20.9653 21 24 17.9986 24 14.3103C24 11.984 22.7912 9.9331 20.964 8.73404Z",
39
+ fill: "#1976D2",
40
+ shapeRendering: "geometricPrecision"
41
+ }), /*#__PURE__*/_react["default"].createElement("path", {
42
+ d: "M3.02454 8.74065C4.11928 4.85746 7.7286 2 12 2C14.3754 2 16.5398 2.89117 18.1869 4.34378L15.2829 7.21527C14.3861 6.49396 13.2436 6 12 6C10.494 6 9.10114 6.68537 8.1351 7.76069C7.69215 7.67035 7.23345 7.62292 6.76357 7.62292C5.38291 7.62292 4.09669 8.03459 3.02454 8.74065Z",
43
+ fill: "#FF3D00",
44
+ shapeRendering: "geometricPrecision"
45
+ }), /*#__PURE__*/_react["default"].createElement("path", {
46
+ d: "M6.76551 17H6.76425C6.37836 17 5.99098 16.9174 5.66003 16.77L2.70825 19.6492C3.84067 20.4929 5.24278 21 6.76425 21H6.76551H12V17H6.76551Z",
47
+ fill: "#4CAF50",
48
+ shapeRendering: "geometricPrecision"
49
+ }), /*#__PURE__*/_react["default"].createElement("path", {
50
+ d: "M4 14.3115C4 12.8627 5.29895 11.6824 6.76421 11.6824C7.83979 11.6824 8.77137 12.3212 9.19011 13.2399L12.1693 10.2941C10.9307 8.6691 8.97031 7.62305 6.76358 7.62305C3.03789 7.62305 0 10.6207 0 14.3115C0 16.4917 1.068 18.427 2.70821 19.6492L5.66 16.7701C4.73284 16.3592 4 15.3788 4 14.3115Z",
51
+ fill: "#FFC107",
52
+ shapeRendering: "geometricPrecision"
53
+ }));
54
+ }
55
+
56
+ GoogleCloud.displayName = 'GoogleCloud';
57
+
58
+ var _default = (0, _core.createBaseComponent)(GoogleCloud);
59
+
60
+ exports["default"] = _default;
@@ -0,0 +1,7 @@
1
+
2
+ import React from 'react';
3
+ import { Merge } from '@semcore/core';
4
+ import { IIconProps } from '@semcore/icon';
5
+ declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
6
+ export default _default;
7
+
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
13
+
14
+ var _react = _interopRequireDefault(require("react"));
15
+
16
+ var _core = require("@semcore/core");
17
+
18
+ var _icon = _interopRequireDefault(require("@semcore/icon"));
19
+
20
+ var _excluded = ["width", "height", "viewBox"];
21
+
22
+ function GoogleCloud(_ref, ref) {
23
+ var _ref$width = _ref.width,
24
+ width = _ref$width === void 0 ? '16' : _ref$width,
25
+ _ref$height = _ref.height,
26
+ height = _ref$height === void 0 ? '16' : _ref$height,
27
+ _ref$viewBox = _ref.viewBox,
28
+ viewBox = _ref$viewBox === void 0 ? '0 0 16 16' : _ref$viewBox,
29
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
30
+ return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
31
+ ref: ref,
32
+ "data-name": "GoogleCloud",
33
+ "data-group": "m",
34
+ width: width,
35
+ height: height,
36
+ viewBox: viewBox
37
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
38
+ d: "M13.976 5.60741C13.6514 4.43106 12.9996 3.3953 12.1246 2.60352L10.1886 4.56822C10.8947 5.15148 11.3709 6.00992 11.4577 6.98159V7.62595C11.4686 7.62595 11.4787 7.62254 11.4897 7.62254C12.4674 7.62254 13.3333 8.43013 13.3333 9.42231C13.3333 10.4145 12.4678 11.2631 11.4901 11.2631C11.4792 11.2631 11.4691 11.2601 11.4581 11.2597V11.2631H8.65095H8V13.9999H11.4577V13.9982C11.4686 13.9982 11.4787 13.9999 11.4897 13.9999C13.9768 13.9999 16 11.9463 16 9.42274C16 7.83106 15.1941 6.42782 13.976 5.60741Z",
39
+ fill: "#1976D2",
40
+ shapeRendering: "geometricPrecision"
41
+ }), /*#__PURE__*/_react["default"].createElement("path", {
42
+ d: "M2.01636 5.61203C2.74619 2.95511 5.1524 1 7.99999 1C9.58357 1 11.0265 1.60975 12.1246 2.60364L10.1886 4.56835C9.59073 4.07482 8.82904 3.73685 7.99999 3.73685C6.99603 3.73685 6.06743 4.20579 5.4234 4.94154C5.1281 4.87972 4.8223 4.84727 4.50905 4.84727C3.5886 4.84727 2.73113 5.12894 2.01636 5.61203Z",
43
+ fill: "#FF3D00",
44
+ shapeRendering: "geometricPrecision"
45
+ }), /*#__PURE__*/_react["default"].createElement("path", {
46
+ d: "M4.51032 11.2633H4.50948C4.25222 11.2633 3.99396 11.2068 3.77333 11.106L1.80548 13.0759C2.56043 13.6532 3.49516 14.0002 4.50948 14.0002H4.51032H8.00001V11.2633H4.51032Z",
47
+ fill: "#4CAF50",
48
+ shapeRendering: "geometricPrecision"
49
+ }), /*#__PURE__*/_react["default"].createElement("path", {
50
+ d: "M2.66667 9.42351C2.66667 8.43218 3.53263 7.62459 4.50947 7.62459C5.22653 7.62459 5.84758 8.06172 6.12674 8.69027L8.11284 6.67471C7.28716 5.56289 5.98021 4.84717 4.50905 4.84717C2.02526 4.84717 0 6.89819 0 9.42351C0 10.9152 0.712 12.2394 1.80547 13.0756L3.77333 11.1057C3.15523 10.8245 2.66667 10.1538 2.66667 9.42351Z",
51
+ fill: "#FFC107",
52
+ shapeRendering: "geometricPrecision"
53
+ }));
54
+ }
55
+
56
+ GoogleCloud.displayName = 'GoogleCloud';
57
+
58
+ var _default = (0, _core.createBaseComponent)(GoogleCloud);
59
+
60
+ exports["default"] = _default;
package/lib/cjs/Icon.js CHANGED
@@ -46,16 +46,16 @@ var styles = (
46
46
  /*__reshadow_css_start__*/
47
47
  _core.sstyled.insert(
48
48
  /*__inner_css_start__*/
49
- ".___SIcon_1n8nw_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_3mutke)}.___SIcon_1n8nw_gg_.__keyboardFocused_1n8nw_gg_{box-shadow:0 0 0 3px rgba(43, 148, 225, 0.3)}.___SIcon_1n8nw_gg_.__interactive_1n8nw_gg_{cursor:pointer}.___SIcon_1n8nw_gg_.__interactive_1n8nw_gg_:hover{color:var(--color-interactive_3mutke)}"
49
+ ".___SIcon_1ody4_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_1yueufi)}.___SIcon_1ody4_gg_.__keyboardFocused_1ody4_gg_{box-shadow:0 0 0 3px rgba(0, 143, 248, 0.2)}.___SIcon_1ody4_gg_.__interactive_1ody4_gg_{cursor:pointer}.___SIcon_1ody4_gg_.__interactive_1ody4_gg_:hover{color:var(--color-interactive_1yueufi)}"
50
50
  /*__inner_css_end__*/
51
- , "3mutke_gg_")
51
+ , "1yueufi_gg_")
52
52
  /*__reshadow_css_end__*/
53
53
  , {
54
- "__SIcon": "___SIcon_1n8nw_gg_",
55
- "--color": "--color_3mutke",
56
- "_keyboardFocused": "__keyboardFocused_1n8nw_gg_",
57
- "_interactive": "__interactive_1n8nw_gg_",
58
- "--color-interactive": "--color-interactive_3mutke"
54
+ "__SIcon": "___SIcon_1ody4_gg_",
55
+ "--color": "--color_1yueufi",
56
+ "_keyboardFocused": "__keyboardFocused_1ody4_gg_",
57
+ "_interactive": "__interactive_1ody4_gg_",
58
+ "--color-interactive": "--color-interactive_1yueufi"
59
59
  }); // TODO: сделать useIcon?
60
60
 
61
61
  function Icon(props, ref) {
package/lib/cjs/index.js CHANGED
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
 
3
- var _typeof = require("@babel/runtime/helpers/typeof");
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
- var _exportNames = {};
9
8
  Object.defineProperty(exports, "default", {
10
9
  enumerable: true,
11
10
  get: function get() {
@@ -13,21 +12,5 @@ Object.defineProperty(exports, "default", {
13
12
  }
14
13
  });
15
14
 
16
- var _Icon = _interopRequireWildcard(require("./Icon"));
17
-
18
- Object.keys(_Icon).forEach(function (key) {
19
- if (key === "default" || key === "__esModule") return;
20
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
21
- if (key in exports && exports[key] === _Icon[key]) return;
22
- Object.defineProperty(exports, key, {
23
- enumerable: true,
24
- get: function get() {
25
- return _Icon[key];
26
- }
27
- });
28
- });
29
-
30
- 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); }
31
-
32
- 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
+ var _Icon = _interopRequireDefault(require("./Icon"));
33
16
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA;;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA","sourcesContent":["export { default } from './Icon';\nexport * from './Icon';\n"],"file":"index.js"}
1
+ {"version":3,"sources":["../../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA","sourcesContent":["export { default } from './Icon';\n"],"file":"index.js"}
@@ -12,7 +12,7 @@ SIcon {
12
12
  }
13
13
 
14
14
  SIcon[keyboardFocused] {
15
- box-shadow: var(--keyborad-focus);
15
+ box-shadow: var(--keyboard-focus);
16
16
  }
17
17
 
18
18
  SIcon[interactive] {
package/lib/es6/Icon.js CHANGED
@@ -22,16 +22,16 @@ var styles = (
22
22
  /*__reshadow_css_start__*/
23
23
  _sstyled.insert(
24
24
  /*__inner_css_start__*/
25
- ".___SIcon_1n8nw_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_3mutke)}.___SIcon_1n8nw_gg_.__keyboardFocused_1n8nw_gg_{box-shadow:0 0 0 3px rgba(43, 148, 225, 0.3)}.___SIcon_1n8nw_gg_.__interactive_1n8nw_gg_{cursor:pointer}.___SIcon_1n8nw_gg_.__interactive_1n8nw_gg_:hover{color:var(--color-interactive_3mutke)}"
25
+ ".___SIcon_1ody4_gg_{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;shape-rendering:geometricPrecision;box-sizing:content-box;fill:currentColor;flex-shrink:0;outline:none;color:var(--color_1yueufi)}.___SIcon_1ody4_gg_.__keyboardFocused_1ody4_gg_{box-shadow:0 0 0 3px rgba(0, 143, 248, 0.2)}.___SIcon_1ody4_gg_.__interactive_1ody4_gg_{cursor:pointer}.___SIcon_1ody4_gg_.__interactive_1ody4_gg_:hover{color:var(--color-interactive_1yueufi)}"
26
26
  /*__inner_css_end__*/
27
- , "3mutke_gg_")
27
+ , "1yueufi_gg_")
28
28
  /*__reshadow_css_end__*/
29
29
  , {
30
- "__SIcon": "___SIcon_1n8nw_gg_",
31
- "--color": "--color_3mutke",
32
- "_keyboardFocused": "__keyboardFocused_1n8nw_gg_",
33
- "_interactive": "__interactive_1n8nw_gg_",
34
- "--color-interactive": "--color-interactive_3mutke"
30
+ "__SIcon": "___SIcon_1ody4_gg_",
31
+ "--color": "--color_1yueufi",
32
+ "_keyboardFocused": "__keyboardFocused_1ody4_gg_",
33
+ "_interactive": "__interactive_1ody4_gg_",
34
+ "--color-interactive": "--color-interactive_1yueufi"
35
35
  }); // TODO: сделать useIcon?
36
36
 
37
37
  function Icon(props, ref) {
package/lib/es6/index.js CHANGED
@@ -1,3 +1,2 @@
1
1
  export { default } from './Icon';
2
- export * from './Icon';
3
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.js"],"names":["default"],"mappings":"AAAA,SAASA,OAAT,QAAwB,QAAxB;AACA,cAAc,QAAd","sourcesContent":["export { default } from './Icon';\nexport * from './Icon';\n"],"file":"index.js"}
1
+ {"version":3,"sources":["../../src/index.js"],"names":["default"],"mappings":"AAAA,SAASA,OAAT,QAAwB,QAAxB","sourcesContent":["export { default } from './Icon';\n"],"file":"index.js"}
@@ -12,7 +12,7 @@ SIcon {
12
12
  }
13
13
 
14
14
  SIcon[keyboardFocused] {
15
- box-shadow: var(--keyborad-focus);
15
+ box-shadow: var(--keyboard-focus);
16
16
  }
17
17
 
18
18
  SIcon[interactive] {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@semcore/icon",
3
3
  "description": "SEMRush Icon Component",
4
- "version": "2.24.0",
4
+ "version": "2.25.0",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/es6/index.js",
7
7
  "typings": "lib/types/index.d.ts",
package/src/index.js CHANGED
@@ -1,2 +1 @@
1
1
  export { default } from './Icon';
2
- export * from './Icon';
@@ -12,7 +12,7 @@ SIcon {
12
12
  }
13
13
 
14
14
  SIcon[keyboardFocused] {
15
- box-shadow: var(--keyborad-focus);
15
+ box-shadow: var(--keyboard-focus);
16
16
  }
17
17
 
18
18
  SIcon[interactive] {
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.964 8.73404C20.4771 7.01477 19.4994 5.50096 18.1869 4.34375L15.2829 7.21524C16.3421 8.06769 17.0564 9.32233 17.1865 10.7425V11.6842C17.2029 11.6842 17.2181 11.6792 17.2345 11.6792C18.7011 11.6792 20 12.8595 20 14.3097C20 15.7598 18.7017 17 17.2352 17C17.2188 17 17.2036 16.9956 17.1872 16.995V17H12.9764H12V21H17.1865V20.9975C17.2029 20.9975 17.2181 21 17.2345 21C20.9653 21 24 17.9986 24 14.3103C24 11.984 22.7912 9.9331 20.964 8.73404Z" fill="#1976D2"/>
3
+ <path d="M3.02454 8.74065C4.11928 4.85746 7.7286 2 12 2C14.3754 2 16.5398 2.89117 18.1869 4.34378L15.2829 7.21527C14.3861 6.49396 13.2436 6 12 6C10.494 6 9.10114 6.68537 8.1351 7.76069C7.69215 7.67035 7.23345 7.62292 6.76357 7.62292C5.38291 7.62292 4.09669 8.03459 3.02454 8.74065Z" fill="#FF3D00"/>
4
+ <path d="M6.76551 17H6.76425C6.37836 17 5.99098 16.9174 5.66003 16.77L2.70825 19.6492C3.84067 20.4929 5.24278 21 6.76425 21H6.76551H12V17H6.76551Z" fill="#4CAF50"/>
5
+ <path d="M4 14.3115C4 12.8627 5.29895 11.6824 6.76421 11.6824C7.83979 11.6824 8.77137 12.3212 9.19011 13.2399L12.1693 10.2941C10.9307 8.6691 8.97031 7.62305 6.76358 7.62305C3.03789 7.62305 0 10.6207 0 14.3115C0 16.4917 1.068 18.427 2.70821 19.6492L5.66 16.7701C4.73284 16.3592 4 15.3788 4 14.3115Z" fill="#FFC107"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.976 5.60741C13.6514 4.43106 12.9996 3.3953 12.1246 2.60352L10.1886 4.56822C10.8947 5.15148 11.3709 6.00992 11.4577 6.98159V7.62595C11.4686 7.62595 11.4787 7.62254 11.4897 7.62254C12.4674 7.62254 13.3333 8.43013 13.3333 9.42231C13.3333 10.4145 12.4678 11.2631 11.4901 11.2631C11.4792 11.2631 11.4691 11.2601 11.4581 11.2597V11.2631H8.65095H8V13.9999H11.4577V13.9982C11.4686 13.9982 11.4787 13.9999 11.4897 13.9999C13.9768 13.9999 16 11.9463 16 9.42274C16 7.83106 15.1941 6.42782 13.976 5.60741Z" fill="#1976D2"/>
3
+ <path d="M2.01636 5.61203C2.74619 2.95511 5.1524 1 7.99999 1C9.58357 1 11.0265 1.60975 12.1246 2.60364L10.1886 4.56835C9.59073 4.07482 8.82904 3.73685 7.99999 3.73685C6.99603 3.73685 6.06743 4.20579 5.4234 4.94154C5.1281 4.87972 4.8223 4.84727 4.50905 4.84727C3.5886 4.84727 2.73113 5.12894 2.01636 5.61203Z" fill="#FF3D00"/>
4
+ <path d="M4.51032 11.2633H4.50948C4.25222 11.2633 3.99396 11.2068 3.77333 11.106L1.80548 13.0759C2.56043 13.6532 3.49516 14.0002 4.50948 14.0002H4.51032H8.00001V11.2633H4.51032Z" fill="#4CAF50"/>
5
+ <path d="M2.66667 9.42351C2.66667 8.43218 3.53263 7.62459 4.50947 7.62459C5.22653 7.62459 5.84758 8.06172 6.12674 8.69027L8.11284 6.67471C7.28716 5.56289 5.98021 4.84717 4.50905 4.84717C2.02526 4.84717 0 6.89819 0 9.42351C0 10.9152 0.712 12.2394 1.80547 13.0756L3.77333 11.1057C3.15523 10.8245 2.66667 10.1538 2.66667 9.42351Z" fill="#FFC107"/>
6
+ </svg>