@terraware/web-components 2.3.62 → 2.3.64
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/components/Icon/Icon.js +2 -3
- package/components/Icon/icons/index.d.ts +1 -1
- package/components/Icon/icons/index.d.ts.map +1 -1
- package/components/Icon/icons/index.js +17 -1
- package/components/svg/BlobbyGrayIconImage.js +2 -2
- package/components/svg/BlobbyGrayIconImport.d.ts +8 -0
- package/components/svg/BlobbyGrayIconImport.d.ts.map +1 -0
- package/components/svg/BlobbyGrayIconImport.js +41 -0
- package/components/svg/BlobbyGrayIconUploadToTheCloud.d.ts.map +1 -1
- package/components/svg/BlobbyGrayIconUploadToTheCloud.js +12 -5
- package/components/svg/BlobbyIconCloudChecked.d.ts +8 -0
- package/components/svg/BlobbyIconCloudChecked.d.ts.map +1 -0
- package/components/svg/BlobbyIconCloudChecked.js +158 -0
- package/components/svg/BlobbyIconExportOrUploadPhoto.d.ts +8 -0
- package/components/svg/BlobbyIconExportOrUploadPhoto.d.ts.map +1 -0
- package/components/svg/BlobbyIconExportOrUploadPhoto.js +158 -0
- package/components/svg/BlobbyIconFolder.d.ts +8 -0
- package/components/svg/BlobbyIconFolder.d.ts.map +1 -0
- package/components/svg/BlobbyIconFolder.js +158 -0
- package/components/svg/BlobbyIconGraphReport.d.ts +8 -0
- package/components/svg/BlobbyIconGraphReport.d.ts.map +1 -0
- package/components/svg/BlobbyIconGraphReport.js +158 -0
- package/components/svg/BlobbyIconHappy.js +41 -41
- package/components/svg/BlobbyIconHeartMonitor.js +33 -33
- package/components/svg/BlobbyIconLeaf.js +42 -42
- package/components/svg/BlobbyIconLibrary.js +41 -41
- package/components/svg/BlobbyIconNursery.js +38 -38
- package/components/svg/BlobbyIconOrganization.d.ts.map +1 -1
- package/components/svg/BlobbyIconOrganization.js +70 -63
- package/components/svg/BlobbyIconPeople.d.ts.map +1 -1
- package/components/svg/BlobbyIconPeople.js +76 -69
- package/components/svg/BlobbyIconSeedBank.js +32 -32
- package/components/svg/BlobbyIconSeedling.d.ts +8 -0
- package/components/svg/BlobbyIconSeedling.d.ts.map +1 -0
- package/components/svg/BlobbyIconSeedling.js +158 -0
- package/components/svg/BlobbyIconSeeds.d.ts +8 -0
- package/components/svg/BlobbyIconSeeds.d.ts.map +1 -0
- package/components/svg/BlobbyIconSeeds.js +158 -0
- package/components/svg/BlobbyIconSite.js +33 -33
- package/components/svg/BlobbyIconSparkles.d.ts +8 -0
- package/components/svg/BlobbyIconSparkles.d.ts.map +1 -0
- package/components/svg/BlobbyIconSparkles.js +158 -0
- package/components/svg/BlobbyIconWrench.js +41 -41
- package/components/svg/Edit.d.ts.map +1 -1
- package/components/svg/Edit.js +77 -70
- package/components/svg/Species2.d.ts.map +1 -1
- package/components/svg/Species2.js +72 -65
- package/components/svg/UploadCloud.d.ts.map +1 -1
- package/components/svg/UploadCloud.js +77 -70
- package/components/svg/index.d.ts +8 -0
- package/components/svg/index.d.ts.map +1 -1
- package/components/svg/index.js +56 -0
- package/package.json +1 -1
@@ -0,0 +1,158 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.default = void 0;
|
9
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
11
|
+
var _excluded = ["title", "titleId"];
|
12
|
+
var SvgBlobbyIconFolder = function SvgBlobbyIconFolder(_ref) {
|
13
|
+
var title = _ref.title,
|
14
|
+
titleId = _ref.titleId,
|
15
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
18
|
+
fill: "none",
|
19
|
+
viewBox: "0 0 200 128",
|
20
|
+
"aria-labelledby": titleId
|
21
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
22
|
+
id: titleId
|
23
|
+
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
24
|
+
clipPath: "url(#blobby-icon-folder_svg__a)"
|
25
|
+
}, /*#__PURE__*/React.createElement("path", {
|
26
|
+
fill: "#E2F6EC",
|
27
|
+
fillRule: "evenodd",
|
28
|
+
d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777Z",
|
29
|
+
clipRule: "evenodd"
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
31
|
+
fill: "url(#blobby-icon-folder_svg__b)",
|
32
|
+
fillOpacity: 0.2,
|
33
|
+
fillRule: "evenodd",
|
34
|
+
d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777Z",
|
35
|
+
clipRule: "evenodd"
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
37
|
+
fill: "url(#blobby-icon-folder_svg__c)",
|
38
|
+
d: "M144.999 66.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
40
|
+
fill: "url(#blobby-icon-folder_svg__d)",
|
41
|
+
d: "M70.999 23.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
42
|
+
}), /*#__PURE__*/React.createElement("path", {
|
43
|
+
fill: "url(#blobby-icon-folder_svg__e)",
|
44
|
+
d: "M64.999 103.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.109-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
45
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
46
|
+
id: "blobby-icon-folder_svg__g",
|
47
|
+
width: 200,
|
48
|
+
height: 128,
|
49
|
+
x: 0,
|
50
|
+
y: 0,
|
51
|
+
maskUnits: "userSpaceOnUse",
|
52
|
+
style: {
|
53
|
+
maskType: 'alpha'
|
54
|
+
}
|
55
|
+
}, /*#__PURE__*/React.createElement("path", {
|
56
|
+
fill: "#E2F6EC",
|
57
|
+
fillRule: "evenodd",
|
58
|
+
d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777Z",
|
59
|
+
clipRule: "evenodd"
|
60
|
+
}), /*#__PURE__*/React.createElement("path", {
|
61
|
+
fill: "url(#blobby-icon-folder_svg__f)",
|
62
|
+
fillOpacity: 0.2,
|
63
|
+
fillRule: "evenodd",
|
64
|
+
d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777Z",
|
65
|
+
clipRule: "evenodd"
|
66
|
+
})), /*#__PURE__*/React.createElement("g", {
|
67
|
+
mask: "url(#blobby-icon-folder_svg__g)"
|
68
|
+
}, /*#__PURE__*/React.createElement("path", {
|
69
|
+
fill: "url(#blobby-icon-folder_svg__h)",
|
70
|
+
d: "M152.602 78.825 124.927 51.15 75.319 83.783 103.537 112l49.065-33.175Z",
|
71
|
+
opacity: 0.25
|
72
|
+
})), /*#__PURE__*/React.createElement("path", {
|
73
|
+
fill: "#EAF3DC",
|
74
|
+
d: "M79.333 42.667c-3.29 0-6 2.71-6 6v30.666c0 3.29 2.71 6 6 6h41.334c3.29 0 6-2.71 6-6v-24c0-3.29-2.71-6-6-6h-20.61l-5.96-4.966a7.332 7.332 0 0 0-4.693-1.7h-10.07Z"
|
75
|
+
}), /*#__PURE__*/React.createElement("path", {
|
76
|
+
fill: "#2C8658",
|
77
|
+
d: "M79.333 42.667c-3.29 0-6 2.71-6 6v30.666c0 3.29 2.71 6 6 6h41.334c3.29 0 6-2.71 6-6v-24c0-3.29-2.71-6-6-6h-20.61l-5.96-4.966a7.332 7.332 0 0 0-4.693-1.7h-10.07Zm0 4h10.07c.781 0 1.534.273 2.133.773l4.672 3.893-4.672 3.894c-.6.5-1.352.773-2.132.773h-12.07v-7.333c0-1.129.87-2 2-2Zm20.724 6.666h20.61c1.128 0 2 .872 2 2v24c0 1.129-.872 2-2 2H79.333c-1.128 0-2-.871-2-2V60h12.07a7.332 7.332 0 0 0 4.693-1.7l5.961-4.967Z"
|
78
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
79
|
+
id: "blobby-icon-folder_svg__b",
|
80
|
+
x1: 134,
|
81
|
+
x2: 81.938,
|
82
|
+
y1: 98.5,
|
83
|
+
y2: 16.32,
|
84
|
+
gradientUnits: "userSpaceOnUse"
|
85
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
86
|
+
stopColor: "#F1F0EC"
|
87
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
88
|
+
offset: 1,
|
89
|
+
stopColor: "#84D6AC"
|
90
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
91
|
+
id: "blobby-icon-folder_svg__c",
|
92
|
+
x1: 135,
|
93
|
+
x2: 145,
|
94
|
+
y1: 59,
|
95
|
+
y2: 74,
|
96
|
+
gradientUnits: "userSpaceOnUse"
|
97
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
98
|
+
stopColor: "#2C8658"
|
99
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
100
|
+
offset: 1,
|
101
|
+
stopColor: "#ACD278"
|
102
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
103
|
+
id: "blobby-icon-folder_svg__d",
|
104
|
+
x1: 61,
|
105
|
+
x2: 71,
|
106
|
+
y1: 16,
|
107
|
+
y2: 31,
|
108
|
+
gradientUnits: "userSpaceOnUse"
|
109
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
110
|
+
stopColor: "#2C8658"
|
111
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
112
|
+
offset: 1,
|
113
|
+
stopColor: "#ACD278"
|
114
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
115
|
+
id: "blobby-icon-folder_svg__e",
|
116
|
+
x1: 55,
|
117
|
+
x2: 65,
|
118
|
+
y1: 96,
|
119
|
+
y2: 111,
|
120
|
+
gradientUnits: "userSpaceOnUse"
|
121
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
122
|
+
stopColor: "#2C8658"
|
123
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
124
|
+
offset: 1,
|
125
|
+
stopColor: "#ACD278"
|
126
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
127
|
+
id: "blobby-icon-folder_svg__f",
|
128
|
+
x1: 134,
|
129
|
+
x2: 81.938,
|
130
|
+
y1: 98.5,
|
131
|
+
y2: 16.32,
|
132
|
+
gradientUnits: "userSpaceOnUse"
|
133
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
134
|
+
stopColor: "#F1F0EC"
|
135
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
136
|
+
offset: 1,
|
137
|
+
stopColor: "#84D6AC"
|
138
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
139
|
+
id: "blobby-icon-folder_svg__h",
|
140
|
+
x1: 98.5,
|
141
|
+
x2: 120.915,
|
142
|
+
y1: 67.991,
|
143
|
+
y2: 101.421,
|
144
|
+
gradientUnits: "userSpaceOnUse"
|
145
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
146
|
+
stopColor: "#2C8658"
|
147
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
148
|
+
offset: 1,
|
149
|
+
stopColor: "#ACD278"
|
150
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
151
|
+
id: "blobby-icon-folder_svg__a"
|
152
|
+
}, /*#__PURE__*/React.createElement("path", {
|
153
|
+
fill: "#fff",
|
154
|
+
d: "M0 0h200v128H0z"
|
155
|
+
}))));
|
156
|
+
};
|
157
|
+
var _default = SvgBlobbyIconFolder;
|
158
|
+
exports.default = _default;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { SVGProps } from 'react';
|
2
|
+
interface SVGRProps {
|
3
|
+
title?: string;
|
4
|
+
titleId?: string;
|
5
|
+
}
|
6
|
+
declare const SvgBlobbyIconGraphReport: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => JSX.Element;
|
7
|
+
export default SvgBlobbyIconGraphReport;
|
8
|
+
//# sourceMappingURL=BlobbyIconGraphReport.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"BlobbyIconGraphReport.d.ts","sourceRoot":"","sources":["../../../src/components/svg/BlobbyIconGraphReport.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACjC,UAAU,SAAS;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AACD,QAAA,MAAM,wBAAwB,iCAAkC,SAAS,aAAa,CAAC,GAAG,SAAS,gBAgGlG,CAAC;AACF,eAAe,wBAAwB,CAAC"}
|
@@ -0,0 +1,158 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.default = void 0;
|
9
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
11
|
+
var _excluded = ["title", "titleId"];
|
12
|
+
var SvgBlobbyIconGraphReport = function SvgBlobbyIconGraphReport(_ref) {
|
13
|
+
var title = _ref.title,
|
14
|
+
titleId = _ref.titleId,
|
15
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
18
|
+
fill: "none",
|
19
|
+
viewBox: "0 0 200 128",
|
20
|
+
"aria-labelledby": titleId
|
21
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
22
|
+
id: titleId
|
23
|
+
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
24
|
+
clipPath: "url(#blobby-icon-graph-report_svg__a)"
|
25
|
+
}, /*#__PURE__*/React.createElement("path", {
|
26
|
+
fill: "#E2F6EC",
|
27
|
+
fillRule: "evenodd",
|
28
|
+
d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112Z",
|
29
|
+
clipRule: "evenodd"
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
31
|
+
fill: "url(#blobby-icon-graph-report_svg__b)",
|
32
|
+
fillOpacity: 0.2,
|
33
|
+
fillRule: "evenodd",
|
34
|
+
d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112Z",
|
35
|
+
clipRule: "evenodd"
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
37
|
+
fill: "url(#blobby-icon-graph-report_svg__c)",
|
38
|
+
d: "M108.999 106.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.109-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
40
|
+
fill: "url(#blobby-icon-graph-report_svg__d)",
|
41
|
+
d: "M142.999 19.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
42
|
+
}), /*#__PURE__*/React.createElement("path", {
|
43
|
+
fill: "url(#blobby-icon-graph-report_svg__e)",
|
44
|
+
d: "M66.999 42.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
45
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
46
|
+
id: "blobby-icon-graph-report_svg__g",
|
47
|
+
width: 200,
|
48
|
+
height: 128,
|
49
|
+
x: 0,
|
50
|
+
y: 0,
|
51
|
+
maskUnits: "userSpaceOnUse",
|
52
|
+
style: {
|
53
|
+
maskType: 'alpha'
|
54
|
+
}
|
55
|
+
}, /*#__PURE__*/React.createElement("path", {
|
56
|
+
fill: "#E2F6EC",
|
57
|
+
fillRule: "evenodd",
|
58
|
+
d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112Z",
|
59
|
+
clipRule: "evenodd"
|
60
|
+
}), /*#__PURE__*/React.createElement("path", {
|
61
|
+
fill: "url(#blobby-icon-graph-report_svg__f)",
|
62
|
+
fillOpacity: 0.2,
|
63
|
+
fillRule: "evenodd",
|
64
|
+
d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112Z",
|
65
|
+
clipRule: "evenodd"
|
66
|
+
})), /*#__PURE__*/React.createElement("g", {
|
67
|
+
mask: "url(#blobby-icon-graph-report_svg__g)"
|
68
|
+
}, /*#__PURE__*/React.createElement("path", {
|
69
|
+
fill: "url(#blobby-icon-graph-report_svg__h)",
|
70
|
+
d: "m158 92.5-38-38-39.61 34.371 38.543 38.542L158 92.5Z",
|
71
|
+
opacity: 0.25
|
72
|
+
})), /*#__PURE__*/React.createElement("path", {
|
73
|
+
fill: "#EAF3DC",
|
74
|
+
d: "M84.667 37.333a6.01 6.01 0 0 0-6 6v41.334c0 3.306 2.693 6 6 6h30.666c3.308 0 6-2.692 6-6v-28c0-.554-.224-1.053-.586-1.414l-17.333-17.334a1.993 1.993 0 0 0-1.414-.586H84.667Z"
|
75
|
+
}), /*#__PURE__*/React.createElement("path", {
|
76
|
+
fill: "#2C8658",
|
77
|
+
d: "M84.667 37.333a6.01 6.01 0 0 0-6 6v41.334c0 3.306 2.693 6 6 6h30.666c3.308 0 6-2.692 6-6v-28c0-.554-.224-1.053-.586-1.414l-17.333-17.334a1.993 1.993 0 0 0-1.414-.586H84.667Zm0 4H100v11.334c0 3.306 2.693 6 6 6h11.333v26c0 1.102-.897 2-2 2H84.667c-1.107 0-2-.894-2-2V43.333c0-1.106.893-2 2-2ZM104 44.161l10.505 10.506H106c-1.107 0-2-.894-2-2V44.16Zm6.667 21.172a2.664 2.664 0 0 0-2.659 2.498l-5.341 5.34-4.008-4.007A2.667 2.667 0 0 0 96 66.667a2.667 2.667 0 0 0-2.659 2.497l-4.177 4.177a2.666 2.666 0 0 0 .17 5.326 2.667 2.667 0 0 0 2.658-2.498L96 72.162l4.008 4.007a2.666 2.666 0 0 0 2.659 2.498 2.667 2.667 0 0 0 2.659-2.498l5.51-5.51a2.667 2.667 0 0 0-.169-5.326Z"
|
78
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
79
|
+
id: "blobby-icon-graph-report_svg__b",
|
80
|
+
x1: 126.5,
|
81
|
+
x2: 50,
|
82
|
+
y1: 104,
|
83
|
+
y2: 27.5,
|
84
|
+
gradientUnits: "userSpaceOnUse"
|
85
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
86
|
+
stopColor: "#F1F0EC"
|
87
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
88
|
+
offset: 1,
|
89
|
+
stopColor: "#84D6AC"
|
90
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
91
|
+
id: "blobby-icon-graph-report_svg__c",
|
92
|
+
x1: 99,
|
93
|
+
x2: 109,
|
94
|
+
y1: 99,
|
95
|
+
y2: 114,
|
96
|
+
gradientUnits: "userSpaceOnUse"
|
97
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
98
|
+
stopColor: "#2C8658"
|
99
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
100
|
+
offset: 1,
|
101
|
+
stopColor: "#ACD278"
|
102
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
103
|
+
id: "blobby-icon-graph-report_svg__d",
|
104
|
+
x1: 133,
|
105
|
+
x2: 143,
|
106
|
+
y1: 12,
|
107
|
+
y2: 27,
|
108
|
+
gradientUnits: "userSpaceOnUse"
|
109
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
110
|
+
stopColor: "#2C8658"
|
111
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
112
|
+
offset: 1,
|
113
|
+
stopColor: "#ACD278"
|
114
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
115
|
+
id: "blobby-icon-graph-report_svg__e",
|
116
|
+
x1: 57,
|
117
|
+
x2: 67,
|
118
|
+
y1: 35,
|
119
|
+
y2: 50,
|
120
|
+
gradientUnits: "userSpaceOnUse"
|
121
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
122
|
+
stopColor: "#2C8658"
|
123
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
124
|
+
offset: 1,
|
125
|
+
stopColor: "#ACD278"
|
126
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
127
|
+
id: "blobby-icon-graph-report_svg__f",
|
128
|
+
x1: 126.5,
|
129
|
+
x2: 50,
|
130
|
+
y1: 104,
|
131
|
+
y2: 27.5,
|
132
|
+
gradientUnits: "userSpaceOnUse"
|
133
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
134
|
+
stopColor: "#F1F0EC"
|
135
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
136
|
+
offset: 1,
|
137
|
+
stopColor: "#84D6AC"
|
138
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
139
|
+
id: "blobby-icon-graph-report_svg__h",
|
140
|
+
x1: 93.831,
|
141
|
+
x2: 135.329,
|
142
|
+
y1: 72.5,
|
143
|
+
y2: 116.904,
|
144
|
+
gradientUnits: "userSpaceOnUse"
|
145
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
146
|
+
stopColor: "#2C8658"
|
147
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
148
|
+
offset: 1,
|
149
|
+
stopColor: "#ACD278"
|
150
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
151
|
+
id: "blobby-icon-graph-report_svg__a"
|
152
|
+
}, /*#__PURE__*/React.createElement("path", {
|
153
|
+
fill: "#fff",
|
154
|
+
d: "M0 0h200v128H0z"
|
155
|
+
}))));
|
156
|
+
};
|
157
|
+
var _default = SvgBlobbyIconGraphReport;
|
158
|
+
exports.default = _default;
|
@@ -23,7 +23,7 @@ var SvgBlobbyIconHappy = function SvgBlobbyIconHappy(_ref) {
|
|
23
23
|
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
24
24
|
clipPath: "url(#blobby-icon-happy_svg__a)"
|
25
25
|
}, /*#__PURE__*/React.createElement("path", {
|
26
|
-
fill: "#
|
26
|
+
fill: "#E2F6EC",
|
27
27
|
fillRule: "evenodd",
|
28
28
|
d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734Z",
|
29
29
|
clipRule: "evenodd"
|
@@ -35,25 +35,25 @@ var SvgBlobbyIconHappy = function SvgBlobbyIconHappy(_ref) {
|
|
35
35
|
clipRule: "evenodd"
|
36
36
|
}), /*#__PURE__*/React.createElement("path", {
|
37
37
|
fill: "url(#blobby-icon-happy_svg__c)",
|
38
|
-
d: "M56.999
|
38
|
+
d: "M56.999 34.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
39
39
|
}), /*#__PURE__*/React.createElement("path", {
|
40
40
|
fill: "url(#blobby-icon-happy_svg__d)",
|
41
|
-
d: "M152.999
|
41
|
+
d: "M152.999 63.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
42
42
|
}), /*#__PURE__*/React.createElement("path", {
|
43
43
|
fill: "url(#blobby-icon-happy_svg__e)",
|
44
|
-
d: "M84.999
|
44
|
+
d: "M84.999 92.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
45
45
|
}), /*#__PURE__*/React.createElement("mask", {
|
46
46
|
id: "blobby-icon-happy_svg__g",
|
47
|
-
width:
|
48
|
-
height:
|
49
|
-
x:
|
50
|
-
y:
|
47
|
+
width: 200,
|
48
|
+
height: 128,
|
49
|
+
x: 0,
|
50
|
+
y: 0,
|
51
51
|
maskUnits: "userSpaceOnUse",
|
52
52
|
style: {
|
53
53
|
maskType: 'alpha'
|
54
54
|
}
|
55
55
|
}, /*#__PURE__*/React.createElement("path", {
|
56
|
-
fill: "#
|
56
|
+
fill: "#E2F6EC",
|
57
57
|
fillRule: "evenodd",
|
58
58
|
d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734Z",
|
59
59
|
clipRule: "evenodd"
|
@@ -70,83 +70,83 @@ var SvgBlobbyIconHappy = function SvgBlobbyIconHappy(_ref) {
|
|
70
70
|
d: "M160.321 86.616 119.614 45.91 82.227 83.856l40.229 40.229 37.865-37.469Z",
|
71
71
|
opacity: 0.25
|
72
72
|
})), /*#__PURE__*/React.createElement("path", {
|
73
|
-
fill: "#
|
73
|
+
fill: "#EAF3DC",
|
74
74
|
d: "M73.333 64c0-14.704 11.963-26.667 26.667-26.667 14.704 0 26.667 11.963 26.667 26.667 0 14.704-11.963 26.667-26.667 26.667-14.704 0-26.667-11.963-26.667-26.667Z"
|
75
75
|
}), /*#__PURE__*/React.createElement("path", {
|
76
|
-
fill: "#
|
76
|
+
fill: "#2C8658",
|
77
77
|
d: "M100 37.333c-14.704 0-26.667 11.963-26.667 26.667 0 14.704 11.963 26.667 26.667 26.667 14.704 0 26.667-11.963 26.667-26.667 0-14.704-11.963-26.667-26.667-26.667Zm0 4c12.542 0 22.667 10.125 22.667 22.667 0 12.542-10.125 22.667-22.667 22.667-12.542 0-22.667-10.125-22.667-22.667 0-12.542 10.125-22.667 22.667-22.667ZM92 54a3.333 3.333 0 1 0 0 6.667A3.333 3.333 0 0 0 92 54Zm16 0a3.333 3.333 0 1 0 0 6.666A3.333 3.333 0 0 0 108 54ZM89.031 69.313a2.001 2.001 0 0 0-1.588 3.257A15.961 15.961 0 0 0 100 78.667c5.076 0 9.631-2.379 12.557-6.097a1.99 1.99 0 0 0 .433-1.481 2.005 2.005 0 0 0-1.453-1.704 2 2 0 0 0-2.123.711 11.927 11.927 0 0 1-9.414 4.57c-3.83 0-7.22-1.781-9.414-4.57a2 2 0 0 0-1.555-.784Z"
|
78
78
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
79
79
|
id: "blobby-icon-happy_svg__b",
|
80
|
-
x1:
|
81
|
-
x2:
|
82
|
-
y1:
|
83
|
-
y2:
|
80
|
+
x1: 133,
|
81
|
+
x2: 49.23,
|
82
|
+
y1: 114,
|
83
|
+
y2: 31.784,
|
84
84
|
gradientUnits: "userSpaceOnUse"
|
85
85
|
}, /*#__PURE__*/React.createElement("stop", {
|
86
|
-
stopColor: "#
|
86
|
+
stopColor: "#F1F0EC"
|
87
87
|
}), /*#__PURE__*/React.createElement("stop", {
|
88
88
|
offset: 1,
|
89
|
-
stopColor: "#
|
89
|
+
stopColor: "#84D6AC"
|
90
90
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
91
91
|
id: "blobby-icon-happy_svg__c",
|
92
92
|
x1: 47,
|
93
93
|
x2: 57,
|
94
|
-
y1:
|
95
|
-
y2:
|
94
|
+
y1: 27,
|
95
|
+
y2: 42,
|
96
96
|
gradientUnits: "userSpaceOnUse"
|
97
97
|
}, /*#__PURE__*/React.createElement("stop", {
|
98
|
-
stopColor: "#
|
98
|
+
stopColor: "#2C8658"
|
99
99
|
}), /*#__PURE__*/React.createElement("stop", {
|
100
100
|
offset: 1,
|
101
|
-
stopColor: "#
|
101
|
+
stopColor: "#ACD278"
|
102
102
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
103
103
|
id: "blobby-icon-happy_svg__d",
|
104
104
|
x1: 143,
|
105
105
|
x2: 153,
|
106
|
-
y1:
|
107
|
-
y2:
|
106
|
+
y1: 56,
|
107
|
+
y2: 71,
|
108
108
|
gradientUnits: "userSpaceOnUse"
|
109
109
|
}, /*#__PURE__*/React.createElement("stop", {
|
110
|
-
stopColor: "#
|
110
|
+
stopColor: "#2C8658"
|
111
111
|
}), /*#__PURE__*/React.createElement("stop", {
|
112
112
|
offset: 1,
|
113
|
-
stopColor: "#
|
113
|
+
stopColor: "#ACD278"
|
114
114
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
115
115
|
id: "blobby-icon-happy_svg__e",
|
116
116
|
x1: 75,
|
117
117
|
x2: 85,
|
118
|
-
y1:
|
119
|
-
y2:
|
118
|
+
y1: 85,
|
119
|
+
y2: 100,
|
120
120
|
gradientUnits: "userSpaceOnUse"
|
121
121
|
}, /*#__PURE__*/React.createElement("stop", {
|
122
|
-
stopColor: "#
|
122
|
+
stopColor: "#2C8658"
|
123
123
|
}), /*#__PURE__*/React.createElement("stop", {
|
124
124
|
offset: 1,
|
125
|
-
stopColor: "#
|
125
|
+
stopColor: "#ACD278"
|
126
126
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
127
127
|
id: "blobby-icon-happy_svg__f",
|
128
|
-
x1:
|
129
|
-
x2:
|
130
|
-
y1:
|
131
|
-
y2:
|
128
|
+
x1: 133,
|
129
|
+
x2: 49.23,
|
130
|
+
y1: 114,
|
131
|
+
y2: 31.784,
|
132
132
|
gradientUnits: "userSpaceOnUse"
|
133
133
|
}, /*#__PURE__*/React.createElement("stop", {
|
134
|
-
stopColor: "#
|
134
|
+
stopColor: "#F1F0EC"
|
135
135
|
}), /*#__PURE__*/React.createElement("stop", {
|
136
136
|
offset: 1,
|
137
|
-
stopColor: "#
|
137
|
+
stopColor: "#84D6AC"
|
138
138
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
139
139
|
id: "blobby-icon-happy_svg__h",
|
140
|
-
x1:
|
141
|
-
x2:
|
142
|
-
y1:
|
143
|
-
y2:
|
140
|
+
x1: 97.5,
|
141
|
+
x2: 143.326,
|
142
|
+
y1: 65.521,
|
143
|
+
y2: 107.483,
|
144
144
|
gradientUnits: "userSpaceOnUse"
|
145
145
|
}, /*#__PURE__*/React.createElement("stop", {
|
146
|
-
stopColor: "#
|
146
|
+
stopColor: "#2C8658"
|
147
147
|
}), /*#__PURE__*/React.createElement("stop", {
|
148
148
|
offset: 1,
|
149
|
-
stopColor: "#
|
149
|
+
stopColor: "#ACD278"
|
150
150
|
})), /*#__PURE__*/React.createElement("clipPath", {
|
151
151
|
id: "blobby-icon-happy_svg__a"
|
152
152
|
}, /*#__PURE__*/React.createElement("path", {
|
@@ -23,7 +23,7 @@ var SvgBlobbyIconHeartMonitor = function SvgBlobbyIconHeartMonitor(_ref) {
|
|
23
23
|
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
24
24
|
clipPath: "url(#blobby-icon-heart-monitor_svg__a)"
|
25
25
|
}, /*#__PURE__*/React.createElement("path", {
|
26
|
-
fill: "#
|
26
|
+
fill: "#E2F6EC",
|
27
27
|
fillRule: "evenodd",
|
28
28
|
d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112Z",
|
29
29
|
clipRule: "evenodd"
|
@@ -35,13 +35,13 @@ var SvgBlobbyIconHeartMonitor = function SvgBlobbyIconHeartMonitor(_ref) {
|
|
35
35
|
clipRule: "evenodd"
|
36
36
|
}), /*#__PURE__*/React.createElement("path", {
|
37
37
|
fill: "url(#blobby-icon-heart-monitor_svg__c)",
|
38
|
-
d: "M146.999
|
38
|
+
d: "M146.999 100.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
39
39
|
}), /*#__PURE__*/React.createElement("path", {
|
40
40
|
fill: "url(#blobby-icon-heart-monitor_svg__d)",
|
41
|
-
d: "M87.999
|
41
|
+
d: "M87.999 25.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
42
42
|
}), /*#__PURE__*/React.createElement("path", {
|
43
43
|
fill: "url(#blobby-icon-heart-monitor_svg__e)",
|
44
|
-
d: "M63.999
|
44
|
+
d: "M63.999 76.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449h.019Z"
|
45
45
|
}), /*#__PURE__*/React.createElement("mask", {
|
46
46
|
id: "blobby-icon-heart-monitor_svg__g",
|
47
47
|
width: 200,
|
@@ -53,7 +53,7 @@ var SvgBlobbyIconHeartMonitor = function SvgBlobbyIconHeartMonitor(_ref) {
|
|
53
53
|
maskType: 'alpha'
|
54
54
|
}
|
55
55
|
}, /*#__PURE__*/React.createElement("path", {
|
56
|
-
fill: "#
|
56
|
+
fill: "#E2F6EC",
|
57
57
|
fillRule: "evenodd",
|
58
58
|
d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112Z",
|
59
59
|
clipRule: "evenodd"
|
@@ -70,83 +70,83 @@ var SvgBlobbyIconHeartMonitor = function SvgBlobbyIconHeartMonitor(_ref) {
|
|
70
70
|
d: "M159.7 77.7 125 43 75.64 85.641 107.5 117.5l52.2-39.8Z",
|
71
71
|
opacity: 0.25
|
72
72
|
})), /*#__PURE__*/React.createElement("path", {
|
73
|
-
fill: "#
|
73
|
+
fill: "#EAF3DC",
|
74
74
|
d: "M73.333 47.333c0-4.026 3.307-7.333 7.334-7.333h38.666c4.027 0 7.334 3.307 7.334 7.333v33.334c0 4.026-3.307 7.333-7.334 7.333H80.667c-4.027 0-7.334-3.307-7.334-7.333V47.333Z"
|
75
75
|
}), /*#__PURE__*/React.createElement("path", {
|
76
|
-
fill: "#
|
76
|
+
fill: "#2C8658",
|
77
77
|
d: "M80.667 40c-4.027 0-7.334 3.307-7.334 7.333v33.334c0 4.026 3.307 7.333 7.334 7.333h38.666c4.027 0 7.334-3.307 7.334-7.333V47.333c0-4.026-3.307-7.333-7.334-7.333H80.667Zm0 4h38.666a3.304 3.304 0 0 1 3.334 3.333v33.334A3.304 3.304 0 0 1 119.333 84H80.667a3.304 3.304 0 0 1-3.334-3.333V68h3.334c.702 0 1.353-.367 1.713-.971l2.024-3.367 3.768 8.484a2.003 2.003 0 0 0 1.82 1.187c.796-.032 1.503-.456 1.828-1.171l4.623-10.172 5.007 14.018a1.996 1.996 0 0 0 1.883 1.325 2 2 0 0 0 1.789-1.104l4.782-9.562h1.432A3.327 3.327 0 0 0 114 68a3.333 3.333 0 1 0-2.664-5.333h-2.669c-.758 0-1.451.426-1.789 1.104l-3.237 6.476-5.092-14.255a1.998 1.998 0 0 0-1.8-1.323 1.974 1.974 0 0 0-1.903 1.17l-4.825 10.617-3.529-7.935a2 2 0 0 0-3.542-.216L79.534 64h-2.2V47.333A3.304 3.304 0 0 1 80.666 44Z"
|
78
78
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
79
79
|
id: "blobby-icon-heart-monitor_svg__b",
|
80
80
|
x1: 126.5,
|
81
|
-
x2:
|
81
|
+
x2: 50,
|
82
82
|
y1: 104,
|
83
|
-
y2:
|
83
|
+
y2: 27.5,
|
84
84
|
gradientUnits: "userSpaceOnUse"
|
85
85
|
}, /*#__PURE__*/React.createElement("stop", {
|
86
|
-
stopColor: "#
|
86
|
+
stopColor: "#F1F0EC"
|
87
87
|
}), /*#__PURE__*/React.createElement("stop", {
|
88
88
|
offset: 1,
|
89
|
-
stopColor: "#
|
89
|
+
stopColor: "#84D6AC"
|
90
90
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
91
91
|
id: "blobby-icon-heart-monitor_svg__c",
|
92
92
|
x1: 137,
|
93
93
|
x2: 147,
|
94
|
-
y1:
|
95
|
-
y2:
|
94
|
+
y1: 93,
|
95
|
+
y2: 108,
|
96
96
|
gradientUnits: "userSpaceOnUse"
|
97
97
|
}, /*#__PURE__*/React.createElement("stop", {
|
98
|
-
stopColor: "#
|
98
|
+
stopColor: "#2C8658"
|
99
99
|
}), /*#__PURE__*/React.createElement("stop", {
|
100
100
|
offset: 1,
|
101
|
-
stopColor: "#
|
101
|
+
stopColor: "#ACD278"
|
102
102
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
103
103
|
id: "blobby-icon-heart-monitor_svg__d",
|
104
104
|
x1: 78,
|
105
105
|
x2: 88,
|
106
|
-
y1:
|
107
|
-
y2:
|
106
|
+
y1: 18,
|
107
|
+
y2: 33,
|
108
108
|
gradientUnits: "userSpaceOnUse"
|
109
109
|
}, /*#__PURE__*/React.createElement("stop", {
|
110
|
-
stopColor: "#
|
110
|
+
stopColor: "#2C8658"
|
111
111
|
}), /*#__PURE__*/React.createElement("stop", {
|
112
112
|
offset: 1,
|
113
|
-
stopColor: "#
|
113
|
+
stopColor: "#ACD278"
|
114
114
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
115
115
|
id: "blobby-icon-heart-monitor_svg__e",
|
116
116
|
x1: 54,
|
117
117
|
x2: 64,
|
118
|
-
y1:
|
119
|
-
y2:
|
118
|
+
y1: 69,
|
119
|
+
y2: 84,
|
120
120
|
gradientUnits: "userSpaceOnUse"
|
121
121
|
}, /*#__PURE__*/React.createElement("stop", {
|
122
|
-
stopColor: "#
|
122
|
+
stopColor: "#2C8658"
|
123
123
|
}), /*#__PURE__*/React.createElement("stop", {
|
124
124
|
offset: 1,
|
125
|
-
stopColor: "#
|
125
|
+
stopColor: "#ACD278"
|
126
126
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
127
127
|
id: "blobby-icon-heart-monitor_svg__f",
|
128
128
|
x1: 126.5,
|
129
|
-
x2:
|
129
|
+
x2: 50,
|
130
130
|
y1: 104,
|
131
|
-
y2:
|
131
|
+
y2: 27.5,
|
132
132
|
gradientUnits: "userSpaceOnUse"
|
133
133
|
}, /*#__PURE__*/React.createElement("stop", {
|
134
|
-
stopColor: "#
|
134
|
+
stopColor: "#F1F0EC"
|
135
135
|
}), /*#__PURE__*/React.createElement("stop", {
|
136
136
|
offset: 1,
|
137
|
-
stopColor: "#
|
137
|
+
stopColor: "#84D6AC"
|
138
138
|
})), /*#__PURE__*/React.createElement("linearGradient", {
|
139
139
|
id: "blobby-icon-heart-monitor_svg__h",
|
140
|
-
x1:
|
141
|
-
x2:
|
142
|
-
y1:
|
143
|
-
y2:
|
140
|
+
x1: 96.5,
|
141
|
+
x2: 130.831,
|
142
|
+
y1: 64.048,
|
143
|
+
y2: 104.17,
|
144
144
|
gradientUnits: "userSpaceOnUse"
|
145
145
|
}, /*#__PURE__*/React.createElement("stop", {
|
146
|
-
stopColor: "#
|
146
|
+
stopColor: "#2C8658"
|
147
147
|
}), /*#__PURE__*/React.createElement("stop", {
|
148
148
|
offset: 1,
|
149
|
-
stopColor: "#
|
149
|
+
stopColor: "#ACD278"
|
150
150
|
})), /*#__PURE__*/React.createElement("clipPath", {
|
151
151
|
id: "blobby-icon-heart-monitor_svg__a"
|
152
152
|
}, /*#__PURE__*/React.createElement("path", {
|