@teamturing/react-kit 2.19.28 → 2.19.30
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/dist/core/Dialog/index.d.ts +3 -1
- package/dist/index.js +264 -327
- package/esm/core/Dialog/index.js +9 -2
- package/esm/core/Textarea/index.js +2 -2
- package/package.json +2 -2
- package/esm/node_modules/react-textarea-autosize/dist/react-textarea-autosize.esm.js +0 -28
- package/esm/node_modules/react-textarea-autosize/node_modules/@babel/runtime/helpers/esm/extends.js +0 -16
- package/esm/node_modules/react-textarea-autosize/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +0 -14
- package/esm/node_modules/use-composed-ref/dist/use-composed-ref.esm.js +0 -25
package/dist/index.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
var React = require('react');
|
|
4
4
|
var styled = require('styled-components');
|
|
5
5
|
var ReactDOM = require('react-dom');
|
|
6
|
+
var ReactTextareaAutosize = require('react-textarea-autosize');
|
|
6
7
|
|
|
7
8
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
8
9
|
|
|
@@ -27,9 +28,10 @@ function _interopNamespace(e) {
|
|
|
27
28
|
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
28
29
|
var styled__default = /*#__PURE__*/_interopDefault(styled);
|
|
29
30
|
var ReactDOM__namespace = /*#__PURE__*/_interopNamespace(ReactDOM);
|
|
31
|
+
var ReactTextareaAutosize__default = /*#__PURE__*/_interopDefault(ReactTextareaAutosize);
|
|
30
32
|
|
|
31
|
-
function _extends$
|
|
32
|
-
_extends$
|
|
33
|
+
function _extends$1() {
|
|
34
|
+
_extends$1 = Object.assign || function (target) {
|
|
33
35
|
for (var i = 1; i < arguments.length; i++) {
|
|
34
36
|
var source = arguments[i];
|
|
35
37
|
for (var key in source) {
|
|
@@ -40,7 +42,7 @@ function _extends$2() {
|
|
|
40
42
|
}
|
|
41
43
|
return target;
|
|
42
44
|
};
|
|
43
|
-
return _extends$
|
|
45
|
+
return _extends$1.apply(this, arguments);
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
// based on https://github.com/developit/dlv
|
|
@@ -166,7 +168,7 @@ var positiveOrNegative = function positiveOrNegative(scale, value) {
|
|
|
166
168
|
};
|
|
167
169
|
var transforms = ['margin', 'marginTop', 'marginRight', 'marginBottom', 'marginLeft', 'marginX', 'marginY', 'top', 'bottom', 'left', 'right'].reduce(function (acc, curr) {
|
|
168
170
|
var _extends2;
|
|
169
|
-
return _extends$
|
|
171
|
+
return _extends$1({}, acc, (_extends2 = {}, _extends2[curr] = positiveOrNegative, _extends2));
|
|
170
172
|
}, {});
|
|
171
173
|
var responsive = function responsive(styles) {
|
|
172
174
|
return function (theme) {
|
|
@@ -201,7 +203,7 @@ var css = function css(args) {
|
|
|
201
203
|
if (props === void 0) {
|
|
202
204
|
props = {};
|
|
203
205
|
}
|
|
204
|
-
var theme = _extends$
|
|
206
|
+
var theme = _extends$1({}, defaultTheme, {}, props.theme || props);
|
|
205
207
|
var result = {};
|
|
206
208
|
var obj = typeof args === 'function' ? args(theme) : args;
|
|
207
209
|
var styles = responsive(obj)(theme);
|
|
@@ -210,7 +212,7 @@ var css = function css(args) {
|
|
|
210
212
|
var val = typeof x === 'function' ? x(theme) : x;
|
|
211
213
|
if (key === 'variant') {
|
|
212
214
|
var variant = css(get$1(theme, val))(theme);
|
|
213
|
-
result = _extends$
|
|
215
|
+
result = _extends$1({}, result, {}, variant);
|
|
214
216
|
continue;
|
|
215
217
|
}
|
|
216
218
|
if (val && typeof val === 'object') {
|
|
@@ -1063,8 +1065,8 @@ const lineClamp = system({
|
|
|
1063
1065
|
}
|
|
1064
1066
|
});
|
|
1065
1067
|
|
|
1066
|
-
function _extends
|
|
1067
|
-
_extends
|
|
1068
|
+
function _extends() {
|
|
1069
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
|
1068
1070
|
for (var i = 1; i < arguments.length; i++) {
|
|
1069
1071
|
var source = arguments[i];
|
|
1070
1072
|
for (var key in source) {
|
|
@@ -1075,10 +1077,10 @@ function _extends$1() {
|
|
|
1075
1077
|
}
|
|
1076
1078
|
return target;
|
|
1077
1079
|
};
|
|
1078
|
-
return _extends
|
|
1080
|
+
return _extends.apply(this, arguments);
|
|
1079
1081
|
}
|
|
1080
1082
|
|
|
1081
|
-
const SvgAi = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1083
|
+
const SvgAi = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1082
1084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1083
1085
|
width: "1em",
|
|
1084
1086
|
height: "1em",
|
|
@@ -1097,7 +1099,7 @@ const SvgAi = props => /*#__PURE__*/React__namespace.createElement("svg", _exten
|
|
|
1097
1099
|
d: "M19.68 11.933c0-.38.306-.686.685-.686h.076c1.137 0 2.059.921 2.059 2.058v1.122a2.059 2.059 0 0 1-2.059 2.058h-.076a.686.686 0 0 1-.686-.686v-3.866Z"
|
|
1098
1100
|
}));
|
|
1099
1101
|
|
|
1100
|
-
const SvgAiSad = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1102
|
+
const SvgAiSad = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1101
1103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1102
1104
|
width: "1em",
|
|
1103
1105
|
height: "1em",
|
|
@@ -1110,7 +1112,7 @@ const SvgAiSad = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
1110
1112
|
clipRule: "evenodd"
|
|
1111
1113
|
}));
|
|
1112
1114
|
|
|
1113
|
-
const SvgAimPoint = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1115
|
+
const SvgAimPoint = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1114
1116
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1115
1117
|
width: "1em",
|
|
1116
1118
|
height: "1em",
|
|
@@ -1142,7 +1144,7 @@ const SvgAimPoint = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1142
1144
|
d: "M7.188 12c0-.347.039-.693.116-1.031H2.031a1.031 1.031 0 1 0 0 2.062h5.273A4.598 4.598 0 0 1 7.187 12ZM16.813 12c0-.347-.04-.693-.117-1.031h5.273a1.031 1.031 0 1 1 0 2.062h-5.273c.077-.338.117-.684.117-1.031Z"
|
|
1143
1145
|
})));
|
|
1144
1146
|
|
|
1145
|
-
const SvgAlarm = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1147
|
+
const SvgAlarm = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1146
1148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1147
1149
|
width: "1em",
|
|
1148
1150
|
height: "1em",
|
|
@@ -1155,7 +1157,7 @@ const SvgAlarm = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
1155
1157
|
clipRule: "evenodd"
|
|
1156
1158
|
}));
|
|
1157
1159
|
|
|
1158
|
-
const SvgAppleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1160
|
+
const SvgAppleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1159
1161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1160
1162
|
width: "1em",
|
|
1161
1163
|
height: "1em",
|
|
@@ -1169,7 +1171,7 @@ const SvgAppleColor = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
1169
1171
|
d: "M14.514 11.781c-.01-1.139.952-1.685.995-1.71-.54-.774-1.384-.882-1.683-.895-.718-.07-1.401.413-1.764.413s-.926-.401-1.52-.39a2.263 2.263 0 0 0-1.906 1.127c-.813 1.377-.209 3.418.584 4.535.386.547.847 1.161 1.452 1.14.585-.023.805-.37 1.51-.37.706 0 .904.37 1.521.36.628-.013 1.026-.56 1.409-1.107.443-.634.627-1.248.638-1.28-.014-.006-1.223-.46-1.236-1.823ZM13.354 8.436c.322-.38.54-.91.48-1.436-.463.017-1.024.303-1.356.681-.299.338-.56.878-.49 1.394.516.038 1.046-.257 1.366-.639Z"
|
|
1170
1172
|
}));
|
|
1171
1173
|
|
|
1172
|
-
const SvgArrowDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1174
|
+
const SvgArrowDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1173
1175
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1174
1176
|
width: "1em",
|
|
1175
1177
|
height: "1em",
|
|
@@ -1182,7 +1184,7 @@ const SvgArrowDown = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1182
1184
|
clipRule: "evenodd"
|
|
1183
1185
|
}));
|
|
1184
1186
|
|
|
1185
|
-
const SvgArrowLeft = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1187
|
+
const SvgArrowLeft = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1186
1188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1187
1189
|
width: "1em",
|
|
1188
1190
|
height: "1em",
|
|
@@ -1195,7 +1197,7 @@ const SvgArrowLeft = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1195
1197
|
clipRule: "evenodd"
|
|
1196
1198
|
}));
|
|
1197
1199
|
|
|
1198
|
-
const SvgArrowLeftCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1200
|
+
const SvgArrowLeftCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1199
1201
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1200
1202
|
width: "1em",
|
|
1201
1203
|
height: "1em",
|
|
@@ -1206,7 +1208,7 @@ const SvgArrowLeftCircle = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
1206
1208
|
d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1Zm4.5 12H9.9l2.3 2.3c.4.4.4 1 0 1.4-.2.2-.5.3-.7.3-.2 0-.5-.1-.7-.3l-4-4c-.4-.4-.4-1 0-1.4l4-4c.4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4L9.9 11h6.6c.6 0 1 .4 1 1s-.5 1-1 1Z"
|
|
1207
1209
|
}));
|
|
1208
1210
|
|
|
1209
|
-
const SvgArrowLeftLimit = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1211
|
+
const SvgArrowLeftLimit = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1210
1212
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1211
1213
|
width: "1em",
|
|
1212
1214
|
height: "1em",
|
|
@@ -1219,7 +1221,7 @@ const SvgArrowLeftLimit = props => /*#__PURE__*/React__namespace.createElement("
|
|
|
1219
1221
|
clipRule: "evenodd"
|
|
1220
1222
|
}));
|
|
1221
1223
|
|
|
1222
|
-
const SvgArrowLeftRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1224
|
+
const SvgArrowLeftRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1223
1225
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1224
1226
|
width: "1em",
|
|
1225
1227
|
height: "1em",
|
|
@@ -1232,7 +1234,7 @@ const SvgArrowLeftRight = props => /*#__PURE__*/React__namespace.createElement("
|
|
|
1232
1234
|
clipRule: "evenodd"
|
|
1233
1235
|
}));
|
|
1234
1236
|
|
|
1235
|
-
const SvgArrowRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1237
|
+
const SvgArrowRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1236
1238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1237
1239
|
width: "1em",
|
|
1238
1240
|
height: "1em",
|
|
@@ -1245,7 +1247,7 @@ const SvgArrowRight = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
1245
1247
|
clipRule: "evenodd"
|
|
1246
1248
|
}));
|
|
1247
1249
|
|
|
1248
|
-
const SvgArrowRightCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1250
|
+
const SvgArrowRightCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1249
1251
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1250
1252
|
width: "1em",
|
|
1251
1253
|
height: "1em",
|
|
@@ -1256,7 +1258,7 @@ const SvgArrowRightCircle = props => /*#__PURE__*/React__namespace.createElement
|
|
|
1256
1258
|
d: "M1 12c0 6.1 4.9 11 11 11s11-4.9 11-11S18.1 1 12 1 1 5.9 1 12Zm5.5 0c0-.6.4-1 1-1h6.6l-2.3-2.3c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l4 4c.4.4.4 1 0 1.4l-4 4c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4l2.3-2.3H7.5c-.5 0-1-.4-1-1Z"
|
|
1257
1259
|
}));
|
|
1258
1260
|
|
|
1259
|
-
const SvgArrowRightLimit = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1261
|
+
const SvgArrowRightLimit = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1260
1262
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1261
1263
|
width: "1em",
|
|
1262
1264
|
height: "1em",
|
|
@@ -1269,7 +1271,7 @@ const SvgArrowRightLimit = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
1269
1271
|
clipRule: "evenodd"
|
|
1270
1272
|
}));
|
|
1271
1273
|
|
|
1272
|
-
const SvgArrowUp = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1274
|
+
const SvgArrowUp = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1273
1275
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1274
1276
|
width: "1em",
|
|
1275
1277
|
height: "1em",
|
|
@@ -1282,7 +1284,7 @@ const SvgArrowUp = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
1282
1284
|
clipRule: "evenodd"
|
|
1283
1285
|
}));
|
|
1284
1286
|
|
|
1285
|
-
const SvgArrowUpDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1287
|
+
const SvgArrowUpDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1286
1288
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1287
1289
|
width: "1em",
|
|
1288
1290
|
height: "1em",
|
|
@@ -1295,7 +1297,7 @@ const SvgArrowUpDown = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
1295
1297
|
clipRule: "evenodd"
|
|
1296
1298
|
}));
|
|
1297
1299
|
|
|
1298
|
-
const SvgArrowUpLimit = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1300
|
+
const SvgArrowUpLimit = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1299
1301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1300
1302
|
width: "1em",
|
|
1301
1303
|
height: "1em",
|
|
@@ -1308,7 +1310,7 @@ const SvgArrowUpLimit = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
1308
1310
|
clipRule: "evenodd"
|
|
1309
1311
|
}));
|
|
1310
1312
|
|
|
1311
|
-
const SvgBarchart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1313
|
+
const SvgBarchart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1312
1314
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1313
1315
|
width: "1em",
|
|
1314
1316
|
height: "1em",
|
|
@@ -1319,7 +1321,7 @@ const SvgBarchart = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1319
1321
|
d: "M14 2h5c.6 0 1 .4 1 1v18c0 .6-.4 1-1 1h-5c-.6 0-1-.4-1-1V3c0-.6.4-1 1-1ZM5 12h5c.6 0 1 .4 1 1v8c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1v-8c0-.6.4-1 1-1Z"
|
|
1320
1322
|
}));
|
|
1321
1323
|
|
|
1322
|
-
const SvgBookmark = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1324
|
+
const SvgBookmark = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1323
1325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1324
1326
|
width: "1em",
|
|
1325
1327
|
height: "1em",
|
|
@@ -1332,7 +1334,7 @@ const SvgBookmark = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1332
1334
|
clipRule: "evenodd"
|
|
1333
1335
|
}));
|
|
1334
1336
|
|
|
1335
|
-
const SvgBox = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1337
|
+
const SvgBox = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1336
1338
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1337
1339
|
width: "1em",
|
|
1338
1340
|
height: "1em",
|
|
@@ -1352,7 +1354,7 @@ const SvgBox = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
1352
1354
|
d: "M0 0h24v24H0z"
|
|
1353
1355
|
}))));
|
|
1354
1356
|
|
|
1355
|
-
const SvgBusColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1357
|
+
const SvgBusColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1356
1358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1357
1359
|
width: "1em",
|
|
1358
1360
|
height: "1em",
|
|
@@ -1384,7 +1386,7 @@ const SvgBusColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1384
1386
|
d: "M36.796 25.602c0-.844.684-1.528 1.528-1.528h.51v3.056h-.51a1.528 1.528 0 0 1-1.528-1.528Z"
|
|
1385
1387
|
}));
|
|
1386
1388
|
|
|
1387
|
-
const SvgCalendarCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1389
|
+
const SvgCalendarCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1388
1390
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1389
1391
|
width: "1em",
|
|
1390
1392
|
height: "1em",
|
|
@@ -1397,7 +1399,7 @@ const SvgCalendarCheck = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
1397
1399
|
clipRule: "evenodd"
|
|
1398
1400
|
}));
|
|
1399
1401
|
|
|
1400
|
-
const SvgCalendarCheckColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1402
|
+
const SvgCalendarCheckColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1401
1403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1402
1404
|
width: "1em",
|
|
1403
1405
|
height: "1em",
|
|
@@ -1413,7 +1415,7 @@ const SvgCalendarCheckColor = props => /*#__PURE__*/React__namespace.createEleme
|
|
|
1413
1415
|
d: "m11.623 15.999 5.584-5.584a1 1 0 0 0-1.414-1.414l-4.877 4.876-2.709-2.709a1 1 0 0 0-1.414 1.414l3.416 3.417a1 1 0 0 0 1.414 0Z"
|
|
1414
1416
|
}));
|
|
1415
1417
|
|
|
1416
|
-
const SvgCalendarColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1418
|
+
const SvgCalendarColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1417
1419
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1418
1420
|
width: "1em",
|
|
1419
1421
|
height: "1em",
|
|
@@ -1445,7 +1447,7 @@ const SvgCalendarColor = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
1445
1447
|
rx: 1
|
|
1446
1448
|
}));
|
|
1447
1449
|
|
|
1448
|
-
const SvgCamera = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1450
|
+
const SvgCamera = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1449
1451
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1450
1452
|
width: "1em",
|
|
1451
1453
|
height: "1em",
|
|
@@ -1463,7 +1465,7 @@ const SvgCamera = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
1463
1465
|
clipRule: "evenodd"
|
|
1464
1466
|
}));
|
|
1465
1467
|
|
|
1466
|
-
const SvgCard = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1468
|
+
const SvgCard = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1467
1469
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1468
1470
|
width: "1em",
|
|
1469
1471
|
height: "1em",
|
|
@@ -1476,7 +1478,7 @@ const SvgCard = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
1476
1478
|
clipRule: "evenodd"
|
|
1477
1479
|
}));
|
|
1478
1480
|
|
|
1479
|
-
const SvgCardsPercent = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1481
|
+
const SvgCardsPercent = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1480
1482
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1481
1483
|
width: "1em",
|
|
1482
1484
|
height: "1em",
|
|
@@ -1491,7 +1493,7 @@ const SvgCardsPercent = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
1491
1493
|
d: "M22.67 7.89 19.88 20a2.58 2.58 0 0 1-3.07 1.92l-5.56-1.28a2.54 2.54 0 0 1-1.06-.54h4.48a2.55 2.55 0 0 0 2.58-2.56v-13a2.121 2.121 0 0 0-.1-.54l3.61.83a2.56 2.56 0 0 1 1.91 3.06Z"
|
|
1492
1494
|
}));
|
|
1493
1495
|
|
|
1494
|
-
const SvgCardsPercentColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1496
|
+
const SvgCardsPercentColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1495
1497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1496
1498
|
width: "1em",
|
|
1497
1499
|
height: "1em",
|
|
@@ -1510,7 +1512,7 @@ const SvgCardsPercentColor = props => /*#__PURE__*/React__namespace.createElemen
|
|
|
1510
1512
|
clipRule: "evenodd"
|
|
1511
1513
|
}));
|
|
1512
1514
|
|
|
1513
|
-
const SvgCaretDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1515
|
+
const SvgCaretDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1514
1516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1515
1517
|
width: "1em",
|
|
1516
1518
|
height: "1em",
|
|
@@ -1521,7 +1523,7 @@ const SvgCaretDown = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1521
1523
|
d: "M11.294 15.705 5.296 9.708c-.63-.63-.184-1.707.707-1.707H18c.89 0 1.337 1.077.707 1.707l-5.999 5.997a1 1 0 0 1-1.414 0Z"
|
|
1522
1524
|
}));
|
|
1523
1525
|
|
|
1524
|
-
const SvgCaretLeft = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1526
|
+
const SvgCaretLeft = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1525
1527
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1526
1528
|
width: "1em",
|
|
1527
1529
|
height: "1em",
|
|
@@ -1532,7 +1534,7 @@ const SvgCaretLeft = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1532
1534
|
d: "m8.296 11.293 5.997-5.999c.63-.63 1.707-.184 1.707.707v11.997c0 .891-1.077 1.337-1.707.707l-5.997-5.998a1 1 0 0 1 0-1.415Z"
|
|
1533
1535
|
}));
|
|
1534
1536
|
|
|
1535
|
-
const SvgCaretRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1537
|
+
const SvgCaretRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1536
1538
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1537
1539
|
width: "1em",
|
|
1538
1540
|
height: "1em",
|
|
@@ -1543,7 +1545,7 @@ const SvgCaretRight = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
1543
1545
|
d: "M15.707 12.707 9.71 18.705c-.63.63-1.707.184-1.707-.707V6.001c0-.89 1.077-1.337 1.707-.707l5.997 5.999a1 1 0 0 1 0 1.414Z"
|
|
1544
1546
|
}));
|
|
1545
1547
|
|
|
1546
|
-
const SvgCaretUp = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1548
|
+
const SvgCaretUp = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1547
1549
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1548
1550
|
width: "1em",
|
|
1549
1551
|
height: "1em",
|
|
@@ -1554,7 +1556,7 @@ const SvgCaretUp = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
1554
1556
|
d: "m12.708 8.294 5.999 5.997c.63.63.184 1.707-.707 1.707H6.003c-.891 0-1.337-1.077-.707-1.707l5.998-5.997a1 1 0 0 1 1.414 0Z"
|
|
1555
1557
|
}));
|
|
1556
1558
|
|
|
1557
|
-
const SvgCart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1559
|
+
const SvgCart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1558
1560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1559
1561
|
width: "1em",
|
|
1560
1562
|
height: "1em",
|
|
@@ -1567,7 +1569,7 @@ const SvgCart = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
1567
1569
|
clipRule: "evenodd"
|
|
1568
1570
|
}));
|
|
1569
1571
|
|
|
1570
|
-
const SvgChatBubble = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1572
|
+
const SvgChatBubble = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1571
1573
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1572
1574
|
width: "1em",
|
|
1573
1575
|
height: "1em",
|
|
@@ -1580,7 +1582,7 @@ const SvgChatBubble = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
1580
1582
|
clipRule: "evenodd"
|
|
1581
1583
|
}));
|
|
1582
1584
|
|
|
1583
|
-
const SvgChatBubbleBadgeColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1585
|
+
const SvgChatBubbleBadgeColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1584
1586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1585
1587
|
width: "1em",
|
|
1586
1588
|
height: "1em",
|
|
@@ -1608,7 +1610,7 @@ const SvgChatBubbleBadgeColor = props => /*#__PURE__*/React__namespace.createEle
|
|
|
1608
1610
|
d: "M0 .5h64v64H0z"
|
|
1609
1611
|
}))));
|
|
1610
1612
|
|
|
1611
|
-
const SvgChatBubbleCorrect = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1613
|
+
const SvgChatBubbleCorrect = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1612
1614
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1613
1615
|
width: "1em",
|
|
1614
1616
|
height: "1em",
|
|
@@ -1628,7 +1630,7 @@ const SvgChatBubbleCorrect = props => /*#__PURE__*/React__namespace.createElemen
|
|
|
1628
1630
|
d: "M0 0h24v24H0z"
|
|
1629
1631
|
}))));
|
|
1630
1632
|
|
|
1631
|
-
const SvgChatBubbleCorrectColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1633
|
+
const SvgChatBubbleCorrectColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1632
1634
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1633
1635
|
width: "1em",
|
|
1634
1636
|
height: "1em",
|
|
@@ -1646,7 +1648,7 @@ const SvgChatBubbleCorrectColor = props => /*#__PURE__*/React__namespace.createE
|
|
|
1646
1648
|
clipRule: "evenodd"
|
|
1647
1649
|
}));
|
|
1648
1650
|
|
|
1649
|
-
const SvgChatBubbleDots = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1651
|
+
const SvgChatBubbleDots = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1650
1652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1651
1653
|
width: "1em",
|
|
1652
1654
|
height: "1em",
|
|
@@ -1659,7 +1661,7 @@ const SvgChatBubbleDots = props => /*#__PURE__*/React__namespace.createElement("
|
|
|
1659
1661
|
clipRule: "evenodd"
|
|
1660
1662
|
}));
|
|
1661
1663
|
|
|
1662
|
-
const SvgChatBubbleQuestion = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1664
|
+
const SvgChatBubbleQuestion = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1663
1665
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1664
1666
|
width: "1em",
|
|
1665
1667
|
height: "1em",
|
|
@@ -1672,7 +1674,7 @@ const SvgChatBubbleQuestion = props => /*#__PURE__*/React__namespace.createEleme
|
|
|
1672
1674
|
clipRule: "evenodd"
|
|
1673
1675
|
}));
|
|
1674
1676
|
|
|
1675
|
-
const SvgCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1677
|
+
const SvgCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1676
1678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1677
1679
|
width: "1em",
|
|
1678
1680
|
height: "1em",
|
|
@@ -1683,7 +1685,7 @@ const SvgCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
1683
1685
|
d: "M10.6 17.2c-.3 0-.6-.1-.8-.4l-4.6-4.6c-.5-.5-.5-1.2 0-1.7s1.2-.5 1.7 0l3.7 3.7 6.6-6.6c.5-.5 1.2-.5 1.7 0s.5 1.2 0 1.7l-7.4 7.4c-.3.4-.6.5-.9.5Z"
|
|
1684
1686
|
}));
|
|
1685
1687
|
|
|
1686
|
-
const SvgCheckInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1688
|
+
const SvgCheckInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1687
1689
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1688
1690
|
width: "1em",
|
|
1689
1691
|
height: "1em",
|
|
@@ -1696,7 +1698,7 @@ const SvgCheckInCircle = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
1696
1698
|
clipRule: "evenodd"
|
|
1697
1699
|
}));
|
|
1698
1700
|
|
|
1699
|
-
const SvgCheckInCircleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1701
|
+
const SvgCheckInCircleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1700
1702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1701
1703
|
width: "1em",
|
|
1702
1704
|
height: "1em",
|
|
@@ -1712,7 +1714,7 @@ const SvgCheckInCircleColor = props => /*#__PURE__*/React__namespace.createEleme
|
|
|
1712
1714
|
d: "m11.623 15.79 5.584-5.583a.999.999 0 1 0-1.414-1.414l-4.877 4.876-2.709-2.71a1.001 1.001 0 0 0-1.707.708 1 1 0 0 0 .293.707l3.416 3.417a1 1 0 0 0 1.414 0Z"
|
|
1713
1715
|
}));
|
|
1714
1716
|
|
|
1715
|
-
const SvgCheckInCircleLine = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1717
|
+
const SvgCheckInCircleLine = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1716
1718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1717
1719
|
width: "1em",
|
|
1718
1720
|
height: "1em",
|
|
@@ -1728,7 +1730,7 @@ const SvgCheckInCircleLine = props => /*#__PURE__*/React__namespace.createElemen
|
|
|
1728
1730
|
d: "M12 3c5 0 9 4 9 9s-4 9-9 9-9-4-9-9 4-9 9-9Zm0-2C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1Z"
|
|
1729
1731
|
}));
|
|
1730
1732
|
|
|
1731
|
-
const SvgChevronDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1733
|
+
const SvgChevronDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1732
1734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1733
1735
|
width: "1em",
|
|
1734
1736
|
height: "1em",
|
|
@@ -1741,7 +1743,7 @@ const SvgChevronDown = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
1741
1743
|
clipRule: "evenodd"
|
|
1742
1744
|
}));
|
|
1743
1745
|
|
|
1744
|
-
const SvgChevronDownTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1746
|
+
const SvgChevronDownTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1745
1747
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1746
1748
|
width: "1em",
|
|
1747
1749
|
height: "1em",
|
|
@@ -1760,7 +1762,7 @@ const SvgChevronDownTwo = props => /*#__PURE__*/React__namespace.createElement("
|
|
|
1760
1762
|
opacity: 0.6
|
|
1761
1763
|
}));
|
|
1762
1764
|
|
|
1763
|
-
const SvgChevronLeft = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1765
|
+
const SvgChevronLeft = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1764
1766
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1765
1767
|
width: "1em",
|
|
1766
1768
|
height: "1em",
|
|
@@ -1773,7 +1775,7 @@ const SvgChevronLeft = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
1773
1775
|
clipRule: "evenodd"
|
|
1774
1776
|
}));
|
|
1775
1777
|
|
|
1776
|
-
const SvgChevronRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1778
|
+
const SvgChevronRight = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1777
1779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1778
1780
|
width: "1em",
|
|
1779
1781
|
height: "1em",
|
|
@@ -1786,7 +1788,7 @@ const SvgChevronRight = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
1786
1788
|
clipRule: "evenodd"
|
|
1787
1789
|
}));
|
|
1788
1790
|
|
|
1789
|
-
const SvgChevronRightTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1791
|
+
const SvgChevronRightTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1790
1792
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1791
1793
|
width: "1em",
|
|
1792
1794
|
height: "1em",
|
|
@@ -1805,7 +1807,7 @@ const SvgChevronRightTwo = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
1805
1807
|
opacity: 0.6
|
|
1806
1808
|
}));
|
|
1807
1809
|
|
|
1808
|
-
const SvgChevronUp = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1810
|
+
const SvgChevronUp = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1809
1811
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1810
1812
|
width: "1em",
|
|
1811
1813
|
height: "1em",
|
|
@@ -1818,7 +1820,7 @@ const SvgChevronUp = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1818
1820
|
clipRule: "evenodd"
|
|
1819
1821
|
}));
|
|
1820
1822
|
|
|
1821
|
-
const SvgChevronUpTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1823
|
+
const SvgChevronUpTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1822
1824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1823
1825
|
width: "1em",
|
|
1824
1826
|
height: "1em",
|
|
@@ -1837,7 +1839,7 @@ const SvgChevronUpTwo = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
1837
1839
|
opacity: 0.6
|
|
1838
1840
|
}));
|
|
1839
1841
|
|
|
1840
|
-
const SvgCircles = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1842
|
+
const SvgCircles = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1841
1843
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1842
1844
|
width: "1em",
|
|
1843
1845
|
height: "1em",
|
|
@@ -1850,7 +1852,7 @@ const SvgCircles = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
1850
1852
|
clipRule: "evenodd"
|
|
1851
1853
|
}));
|
|
1852
1854
|
|
|
1853
|
-
const SvgClip = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1855
|
+
const SvgClip = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1854
1856
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1855
1857
|
width: "1em",
|
|
1856
1858
|
height: "1em",
|
|
@@ -1860,7 +1862,7 @@ const SvgClip = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
1860
1862
|
d: "M8.4 21.6c-1.9 0-3.9-.7-5.3-2.2-2.9-2.9-2.9-7.7 0-10.7l4.5-4.5c.4-.4 1.1-.4 1.6 0 .4.4.4 1.1 0 1.6l-4.5 4.5c-2.1 2.1-2.1 5.5 0 7.5 2.1 2.1 5.5 2.1 7.5 0L20 10c1.2-1.2 1.2-3.3 0-4.5-1.2-1.2-3.3-1.2-4.5 0l-7.1 7.1c-.4.4-.4 1.1 0 1.5.4.4 1.1.4 1.5 0l4.8-4.8c.4-.4 1.1-.4 1.6 0 .4.4.4 1.1 0 1.6l-4.8 4.8C10.1 17 8 17 6.8 15.7c-1.3-1.3-1.3-3.3 0-4.6L13.9 4c2.1-2.1 5.5-2.1 7.6 0 2.1 2.1 2.1 5.5 0 7.6l-7.8 7.8c-1.4 1.4-3.3 2.2-5.3 2.2Z"
|
|
1861
1863
|
}));
|
|
1862
1864
|
|
|
1863
|
-
const SvgClose = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1865
|
+
const SvgClose = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1864
1866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1865
1867
|
width: "1em",
|
|
1866
1868
|
height: "1em",
|
|
@@ -1873,7 +1875,7 @@ const SvgClose = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
1873
1875
|
clipRule: "evenodd"
|
|
1874
1876
|
}));
|
|
1875
1877
|
|
|
1876
|
-
const SvgCloseInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1878
|
+
const SvgCloseInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1877
1879
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1878
1880
|
width: "1em",
|
|
1879
1881
|
height: "1em",
|
|
@@ -1886,7 +1888,7 @@ const SvgCloseInCircle = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
1886
1888
|
clipRule: "evenodd"
|
|
1887
1889
|
}));
|
|
1888
1890
|
|
|
1889
|
-
const SvgCoin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1891
|
+
const SvgCoin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1890
1892
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1891
1893
|
width: "1em",
|
|
1892
1894
|
height: "1em",
|
|
@@ -1899,7 +1901,7 @@ const SvgCoin = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
1899
1901
|
clipRule: "evenodd"
|
|
1900
1902
|
}));
|
|
1901
1903
|
|
|
1902
|
-
const SvgContact = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1904
|
+
const SvgContact = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1903
1905
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1904
1906
|
width: "1em",
|
|
1905
1907
|
height: "1em",
|
|
@@ -1912,7 +1914,7 @@ const SvgContact = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
1912
1914
|
clipRule: "evenodd"
|
|
1913
1915
|
}));
|
|
1914
1916
|
|
|
1915
|
-
const SvgCopy = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1917
|
+
const SvgCopy = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1916
1918
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1917
1919
|
width: "1em",
|
|
1918
1920
|
height: "1em",
|
|
@@ -1930,7 +1932,7 @@ const SvgCopy = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
1930
1932
|
clipRule: "evenodd"
|
|
1931
1933
|
}));
|
|
1932
1934
|
|
|
1933
|
-
const SvgCorrect = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1935
|
+
const SvgCorrect = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1934
1936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1935
1937
|
width: "1em",
|
|
1936
1938
|
height: "1em",
|
|
@@ -1942,7 +1944,7 @@ const SvgCorrect = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
1942
1944
|
d: "M2.7 12a9.3 9.3 0 1 1 18.6 0 9.3 9.3 0 0 1-18.6 0Z"
|
|
1943
1945
|
}));
|
|
1944
1946
|
|
|
1945
|
-
const SvgCoupon = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1947
|
+
const SvgCoupon = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1946
1948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1947
1949
|
width: "1em",
|
|
1948
1950
|
height: "1em",
|
|
@@ -1955,7 +1957,7 @@ const SvgCoupon = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
1955
1957
|
clipRule: "evenodd"
|
|
1956
1958
|
}));
|
|
1957
1959
|
|
|
1958
|
-
const SvgCrown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1960
|
+
const SvgCrown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1959
1961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1960
1962
|
width: "1em",
|
|
1961
1963
|
height: "1em",
|
|
@@ -1968,7 +1970,7 @@ const SvgCrown = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
1968
1970
|
clipRule: "evenodd"
|
|
1969
1971
|
}));
|
|
1970
1972
|
|
|
1971
|
-
const SvgCurriculum = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
1973
|
+
const SvgCurriculum = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1972
1974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1973
1975
|
width: "1em",
|
|
1974
1976
|
height: "1em",
|
|
@@ -1995,7 +1997,7 @@ const SvgCurriculum = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
1995
1997
|
rx: 3.755
|
|
1996
1998
|
}));
|
|
1997
1999
|
|
|
1998
|
-
const SvgCurriculumColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2000
|
+
const SvgCurriculumColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1999
2001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2000
2002
|
width: "1em",
|
|
2001
2003
|
height: "1em",
|
|
@@ -2029,7 +2031,7 @@ const SvgCurriculumColor = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
2029
2031
|
d: "M0 .5h32v32H0z"
|
|
2030
2032
|
}))));
|
|
2031
2033
|
|
|
2032
|
-
const SvgDelete = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2034
|
+
const SvgDelete = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2033
2035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2034
2036
|
width: "1em",
|
|
2035
2037
|
height: "1em",
|
|
@@ -2042,7 +2044,7 @@ const SvgDelete = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
2042
2044
|
clipRule: "evenodd"
|
|
2043
2045
|
}));
|
|
2044
2046
|
|
|
2045
|
-
const SvgDocument = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2047
|
+
const SvgDocument = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2046
2048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2047
2049
|
width: "1em",
|
|
2048
2050
|
height: "1em",
|
|
@@ -2060,7 +2062,7 @@ const SvgDocument = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2060
2062
|
clipRule: "evenodd"
|
|
2061
2063
|
}));
|
|
2062
2064
|
|
|
2063
|
-
const SvgDots = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2065
|
+
const SvgDots = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2064
2066
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2065
2067
|
width: "1em",
|
|
2066
2068
|
height: "1em",
|
|
@@ -2073,7 +2075,7 @@ const SvgDots = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2073
2075
|
clipRule: "evenodd"
|
|
2074
2076
|
}));
|
|
2075
2077
|
|
|
2076
|
-
const SvgDownload = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2078
|
+
const SvgDownload = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2077
2079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2078
2080
|
width: "1em",
|
|
2079
2081
|
height: "1em",
|
|
@@ -2087,7 +2089,7 @@ const SvgDownload = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2087
2089
|
d: "M21.38 13.09c-.61 0-1.1.49-1.1 1.1v4.21c0 .72-.58 1.3-1.3 1.3H5c-.72 0-1.3-.58-1.3-1.3v-4.21c0-.61-.49-1.1-1.1-1.1-.61 0-1.1.49-1.1 1.1v4.21c0 1.93 1.57 3.5 3.5 3.5h13.98c1.93 0 3.5-1.57 3.5-3.5v-4.21c0-.61-.49-1.1-1.1-1.1Z"
|
|
2088
2090
|
}));
|
|
2089
2091
|
|
|
2090
|
-
const SvgEmoji = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2092
|
+
const SvgEmoji = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2091
2093
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2092
2094
|
width: "1em",
|
|
2093
2095
|
height: "1em",
|
|
@@ -2100,7 +2102,7 @@ const SvgEmoji = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
2100
2102
|
clipRule: "evenodd"
|
|
2101
2103
|
}));
|
|
2102
2104
|
|
|
2103
|
-
const SvgEng = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2105
|
+
const SvgEng = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2104
2106
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2105
2107
|
width: "1em",
|
|
2106
2108
|
height: "1em",
|
|
@@ -2116,7 +2118,7 @@ const SvgEng = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
2116
2118
|
d: "M8.431 17.573c.516 0 .971-.335 1.125-.827l.582-1.866h4.04l.583 1.87a1.172 1.172 0 1 0 2.23-.716l-2.879-8.72a2.06 2.06 0 0 0-3.91-.003l-2.889 8.713a1.178 1.178 0 0 0 1.118 1.549Zm2.293-4.58 1.395-4.465h.077l1.395 4.466h-2.867Z"
|
|
2117
2119
|
}));
|
|
2118
2120
|
|
|
2119
|
-
const SvgEqual = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2121
|
+
const SvgEqual = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2120
2122
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2121
2123
|
width: "1em",
|
|
2122
2124
|
height: "1em",
|
|
@@ -2129,7 +2131,7 @@ const SvgEqual = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
2129
2131
|
clipRule: "evenodd"
|
|
2130
2132
|
}));
|
|
2131
2133
|
|
|
2132
|
-
const SvgEraser = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2134
|
+
const SvgEraser = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2133
2135
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2134
2136
|
width: "1em",
|
|
2135
2137
|
height: "1em",
|
|
@@ -2142,7 +2144,7 @@ const SvgEraser = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
2142
2144
|
clipRule: "evenodd"
|
|
2143
2145
|
}));
|
|
2144
2146
|
|
|
2145
|
-
const SvgExclamationPointInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2147
|
+
const SvgExclamationPointInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2146
2148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2147
2149
|
width: "1em",
|
|
2148
2150
|
height: "1em",
|
|
@@ -2155,7 +2157,7 @@ const SvgExclamationPointInCircle = props => /*#__PURE__*/React__namespace.creat
|
|
|
2155
2157
|
clipRule: "evenodd"
|
|
2156
2158
|
}));
|
|
2157
2159
|
|
|
2158
|
-
const SvgEyeOff = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2160
|
+
const SvgEyeOff = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2159
2161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2160
2162
|
width: "1em",
|
|
2161
2163
|
height: "1em",
|
|
@@ -2166,7 +2168,7 @@ const SvgEyeOff = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
2166
2168
|
d: "M14.779 4.672A11.89 11.89 0 0 0 12 4.324c-4.212 0-8.195 2.261-10.818 6.028a2.905 2.905 0 0 0 0 3.297c.64.919 1.363 1.744 2.148 2.473l11.449-11.45ZM22.819 10.352a14.722 14.722 0 0 0-3.74-3.733l2.569-2.569a1.2 1.2 0 1 0-1.697-1.697L2.352 19.95a1.2 1.2 0 1 0 1.698 1.697l3.044-3.044c1.549.691 3.206 1.073 4.906 1.073 4.213 0 8.196-2.261 10.819-6.028a2.907 2.907 0 0 0 0-3.296Zm-10.82 5.622a3.887 3.887 0 0 1-1.819-.458l5.335-5.335c.287.545.458 1.159.458 1.818a3.978 3.978 0 0 1-3.974 3.975Z"
|
|
2167
2169
|
}));
|
|
2168
2170
|
|
|
2169
|
-
const SvgEyeOn = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2171
|
+
const SvgEyeOn = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2170
2172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2171
2173
|
width: "1em",
|
|
2172
2174
|
height: "1em",
|
|
@@ -2184,7 +2186,7 @@ const SvgEyeOn = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
2184
2186
|
clipRule: "evenodd"
|
|
2185
2187
|
}));
|
|
2186
2188
|
|
|
2187
|
-
const SvgFaceHappy = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2189
|
+
const SvgFaceHappy = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2188
2190
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2189
2191
|
width: "1em",
|
|
2190
2192
|
height: "1em",
|
|
@@ -2197,7 +2199,7 @@ const SvgFaceHappy = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2197
2199
|
clipRule: "evenodd"
|
|
2198
2200
|
}));
|
|
2199
2201
|
|
|
2200
|
-
const SvgFaceSad = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2202
|
+
const SvgFaceSad = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2201
2203
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2202
2204
|
width: "1em",
|
|
2203
2205
|
height: "1em",
|
|
@@ -2210,7 +2212,7 @@ const SvgFaceSad = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
2210
2212
|
clipRule: "evenodd"
|
|
2211
2213
|
}));
|
|
2212
2214
|
|
|
2213
|
-
const SvgFacebook = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2215
|
+
const SvgFacebook = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2214
2216
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2215
2217
|
width: "1em",
|
|
2216
2218
|
height: "1em",
|
|
@@ -2221,7 +2223,7 @@ const SvgFacebook = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2221
2223
|
d: "M17 2.119v3.168c-.301-.02-1.145-.05-2.108 0-1.205.063-1.386 1.026-1.386 1.491v2.486h3.373l-.451 3.541h-2.922V22H9.952v-9.195H7V9.264h2.952c-.01-.736-.024-2.293 0-2.64.03-.436-.12-1.989.994-3.2 1.114-1.212 1.897-1.305 2.952-1.398.843-.075 2.42.03 3.102.093Z"
|
|
2222
2224
|
}));
|
|
2223
2225
|
|
|
2224
|
-
const SvgFacebookColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2226
|
+
const SvgFacebookColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2225
2227
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2226
2228
|
width: "1em",
|
|
2227
2229
|
height: "1em",
|
|
@@ -2237,7 +2239,7 @@ const SvgFacebookColor = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
2237
2239
|
clipRule: "evenodd"
|
|
2238
2240
|
}));
|
|
2239
2241
|
|
|
2240
|
-
const SvgFilter = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2242
|
+
const SvgFilter = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2241
2243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2242
2244
|
width: "1em",
|
|
2243
2245
|
height: "1em",
|
|
@@ -2250,7 +2252,7 @@ const SvgFilter = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
2250
2252
|
clipRule: "evenodd"
|
|
2251
2253
|
}));
|
|
2252
2254
|
|
|
2253
|
-
const SvgFire = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2255
|
+
const SvgFire = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2254
2256
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2255
2257
|
width: "1em",
|
|
2256
2258
|
height: "1em",
|
|
@@ -2261,7 +2263,7 @@ const SvgFire = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2261
2263
|
d: "M10.373 2.847c-.021.287-.22 2.173-1.773 3.754-.144.145-.3.279-.465.4-.227.169-.616.462-1.021.787-.537.431-2.966 2.7-3.104 5.86 0 0-.586 7.212 7.136 8.276 0 0 2.5.531 5.223-1.214.061-.04.123-.078.187-.115.438-.257 2.76-1.767 3.368-5.192 0 0 .433-2.773-.768-4.942-.034-.06-.072-.117-.104-.177-.144-.273-.65-1.176-1.366-1.86a.699.699 0 0 0-.377-.191.565.565 0 0 0-.569.253c-.127.19-.761 1.139-1.045 1.49 0 0-.159.194-.12-.08 0 0 .515-2.576-1.264-5.153 0 0-1.107-1.719-2.807-2.578 0 0-.434-.273-.79-.117 0 0-.248.105-.325.66a1.583 1.583 0 0 0-.016.14Z"
|
|
2262
2264
|
}));
|
|
2263
2265
|
|
|
2264
|
-
const SvgFolder = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2266
|
+
const SvgFolder = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2265
2267
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2266
2268
|
width: "1em",
|
|
2267
2269
|
height: "1em",
|
|
@@ -2274,7 +2276,7 @@ const SvgFolder = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
2274
2276
|
clipRule: "evenodd"
|
|
2275
2277
|
}));
|
|
2276
2278
|
|
|
2277
|
-
const SvgFrame = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2279
|
+
const SvgFrame = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2278
2280
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2279
2281
|
width: "1em",
|
|
2280
2282
|
height: "1em",
|
|
@@ -2287,7 +2289,7 @@ const SvgFrame = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
2287
2289
|
clipRule: "evenodd"
|
|
2288
2290
|
}));
|
|
2289
2291
|
|
|
2290
|
-
const SvgGlasses = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2292
|
+
const SvgGlasses = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2291
2293
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2292
2294
|
width: "1em",
|
|
2293
2295
|
height: "1em",
|
|
@@ -2300,7 +2302,7 @@ const SvgGlasses = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
2300
2302
|
clipRule: "evenodd"
|
|
2301
2303
|
}));
|
|
2302
2304
|
|
|
2303
|
-
const SvgGraph = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2305
|
+
const SvgGraph = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2304
2306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2305
2307
|
width: "1em",
|
|
2306
2308
|
height: "1em",
|
|
@@ -2313,7 +2315,7 @@ const SvgGraph = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
2313
2315
|
clipRule: "evenodd"
|
|
2314
2316
|
}));
|
|
2315
2317
|
|
|
2316
|
-
const SvgGun = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2318
|
+
const SvgGun = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2317
2319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2318
2320
|
width: "1em",
|
|
2319
2321
|
height: "1em",
|
|
@@ -2324,7 +2326,7 @@ const SvgGun = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
2324
2326
|
d: "M23 10.5v-6a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6.25v1.75a3 3 0 0 0 3 3h4.13l.51 3.88a1 1 0 0 0 1 .87h5a1.002 1.002 0 0 0 1-1.13l-1.13-8.37H22a1 1 0 0 0 1-1ZM11.25 14a.76.76 0 0 1-.75-.75V11.5h4.26l.33 2.5h-3.84Z"
|
|
2325
2327
|
}));
|
|
2326
2328
|
|
|
2327
|
-
const SvgGunColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2329
|
+
const SvgGunColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2328
2330
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2329
2331
|
width: "1em",
|
|
2330
2332
|
height: "1em",
|
|
@@ -2338,7 +2340,7 @@ const SvgGunColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2338
2340
|
d: "M19.771 12h-2.68a.3.3 0 0 0-.297.339l.899 6.9a.3.3 0 0 0 .297.261h2.692a.3.3 0 0 0 .298-.34l-.911-6.9a.3.3 0 0 0-.297-.26Z"
|
|
2339
2341
|
}));
|
|
2340
2342
|
|
|
2341
|
-
const SvgHair = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2343
|
+
const SvgHair = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2342
2344
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2343
2345
|
width: "1em",
|
|
2344
2346
|
height: "1em",
|
|
@@ -2351,7 +2353,7 @@ const SvgHair = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2351
2353
|
clipRule: "evenodd"
|
|
2352
2354
|
}));
|
|
2353
2355
|
|
|
2354
|
-
const SvgHeadphone = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2356
|
+
const SvgHeadphone = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2355
2357
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2356
2358
|
width: "1em",
|
|
2357
2359
|
height: "1em",
|
|
@@ -2364,7 +2366,7 @@ const SvgHeadphone = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2364
2366
|
clipRule: "evenodd"
|
|
2365
2367
|
}));
|
|
2366
2368
|
|
|
2367
|
-
const SvgHeart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2369
|
+
const SvgHeart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2368
2370
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2369
2371
|
width: "1em",
|
|
2370
2372
|
height: "1em",
|
|
@@ -2377,7 +2379,7 @@ const SvgHeart = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
2377
2379
|
clipRule: "evenodd"
|
|
2378
2380
|
}));
|
|
2379
2381
|
|
|
2380
|
-
const SvgInfinite = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2382
|
+
const SvgInfinite = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2381
2383
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2382
2384
|
width: "1em",
|
|
2383
2385
|
height: "1em",
|
|
@@ -2388,7 +2390,7 @@ const SvgInfinite = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2388
2390
|
d: "M17.802 6.972a4.393 4.393 0 0 0-3.123-1.136c-2.008.066-3.247 1.335-4.683 2.804l-.008.007-.008-.007C8.545 7.17 7.313 5.902 5.297 5.836a4.374 4.374 0 0 0-3.099 1.136A4.085 4.085 0 0 0 .833 9.997a4.05 4.05 0 0 0 1.35 3.033 4.414 4.414 0 0 0 2.973 1.137h.157C7.32 14.1 8.56 12.83 9.996 11.363v-.008l.008.008c1.435 1.468 2.667 2.737 4.683 2.804h.157a4.379 4.379 0 0 0 2.973-1.137 4.05 4.05 0 0 0 1.35-3.033 4.085 4.085 0 0 0-1.365-3.025Zm-12.56 5.35c-.635.022-1.24-.2-1.694-.613a2.31 2.31 0 0 1 .008-3.416 2.388 2.388 0 0 1 1.6-.62h.086c1.138.037 1.922.782 3.31 2.206.032.037.071.074.103.104l-.008.014.008.008c-.032.037-.071.074-.102.103-1.389 1.432-2.173 2.177-3.311 2.214Zm11.21-.613a2.392 2.392 0 0 1-1.694.613c-1.138-.037-1.922-.782-3.31-2.206-.032-.037-.071-.074-.103-.104l.008-.015h-.008c.032-.036.07-.073.102-.103 1.389-1.424 2.173-2.17 3.31-2.206.62-.008 1.225.2 1.687.62.495.442.761 1.048.761 1.704 0 .65-.266 1.255-.753 1.697Z"
|
|
2389
2391
|
}));
|
|
2390
2392
|
|
|
2391
|
-
const SvgInfoInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2393
|
+
const SvgInfoInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2392
2394
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2393
2395
|
width: "1em",
|
|
2394
2396
|
height: "1em",
|
|
@@ -2401,7 +2403,7 @@ const SvgInfoInCircle = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
2401
2403
|
clipRule: "evenodd"
|
|
2402
2404
|
}));
|
|
2403
2405
|
|
|
2404
|
-
const SvgInstagram = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2406
|
+
const SvgInstagram = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2405
2407
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2406
2408
|
width: "1em",
|
|
2407
2409
|
height: "1em",
|
|
@@ -2414,7 +2416,7 @@ const SvgInstagram = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2414
2416
|
clipRule: "evenodd"
|
|
2415
2417
|
}));
|
|
2416
2418
|
|
|
2417
|
-
const SvgKakaoColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2419
|
+
const SvgKakaoColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2418
2420
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2419
2421
|
width: "1em",
|
|
2420
2422
|
height: "1em",
|
|
@@ -2430,7 +2432,7 @@ const SvgKakaoColor = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
2430
2432
|
clipRule: "evenodd"
|
|
2431
2433
|
}));
|
|
2432
2434
|
|
|
2433
|
-
const SvgKor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2435
|
+
const SvgKor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2434
2436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2435
2437
|
width: "1em",
|
|
2436
2438
|
height: "1em",
|
|
@@ -2446,7 +2448,7 @@ const SvgKor = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
2446
2448
|
d: "M13.902 6.822v10.357a1.021 1.021 0 0 0 2.043 0V12.2h.761a.894.894 0 1 0 0-1.788h-.761v-3.59a1.021 1.021 0 1 0-2.043 0ZM8.022 15.776c3.188-1.833 4.52-4.486 4.762-7.528.054-.68-.502-1.219-1.162-1.219H7.755a.887.887 0 0 0 0 1.775h2.981c-.318 2.232-1.502 3.905-3.644 5.21-.501.305-.677.98-.325 1.475a.958.958 0 0 0 1.255.287Z"
|
|
2447
2449
|
}));
|
|
2448
2450
|
|
|
2449
|
-
const SvgLetter = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2451
|
+
const SvgLetter = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2450
2452
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2451
2453
|
width: "1em",
|
|
2452
2454
|
height: "1em",
|
|
@@ -2459,7 +2461,7 @@ const SvgLetter = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
2459
2461
|
clipRule: "evenodd"
|
|
2460
2462
|
}));
|
|
2461
2463
|
|
|
2462
|
-
const SvgLetterCrownColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2464
|
+
const SvgLetterCrownColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2463
2465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2464
2466
|
width: "1em",
|
|
2465
2467
|
height: "1em",
|
|
@@ -2481,7 +2483,7 @@ const SvgLetterCrownColor = props => /*#__PURE__*/React__namespace.createElement
|
|
|
2481
2483
|
clipRule: "evenodd"
|
|
2482
2484
|
}));
|
|
2483
2485
|
|
|
2484
|
-
const SvgLetterHeartColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2486
|
+
const SvgLetterHeartColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2485
2487
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2486
2488
|
width: "1em",
|
|
2487
2489
|
height: "1em",
|
|
@@ -2503,7 +2505,7 @@ const SvgLetterHeartColor = props => /*#__PURE__*/React__namespace.createElement
|
|
|
2503
2505
|
clipRule: "evenodd"
|
|
2504
2506
|
}));
|
|
2505
2507
|
|
|
2506
|
-
const SvgLineThree = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2508
|
+
const SvgLineThree = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2507
2509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2508
2510
|
width: "1em",
|
|
2509
2511
|
height: "1em",
|
|
@@ -2516,7 +2518,7 @@ const SvgLineThree = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2516
2518
|
clipRule: "evenodd"
|
|
2517
2519
|
}));
|
|
2518
2520
|
|
|
2519
|
-
const SvgLink = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2521
|
+
const SvgLink = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2520
2522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2521
2523
|
width: "1em",
|
|
2522
2524
|
height: "1em",
|
|
@@ -2534,7 +2536,7 @@ const SvgLink = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2534
2536
|
clipRule: "evenodd"
|
|
2535
2537
|
}));
|
|
2536
2538
|
|
|
2537
|
-
const SvgLock = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2539
|
+
const SvgLock = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2538
2540
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2539
2541
|
width: "1em",
|
|
2540
2542
|
height: "1em",
|
|
@@ -2547,7 +2549,7 @@ const SvgLock = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2547
2549
|
clipRule: "evenodd"
|
|
2548
2550
|
}));
|
|
2549
2551
|
|
|
2550
|
-
const SvgLockColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2552
|
+
const SvgLockColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2551
2553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2552
2554
|
width: "1em",
|
|
2553
2555
|
height: "1em",
|
|
@@ -2575,7 +2577,7 @@ const SvgLockColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2575
2577
|
stopColor: "#F14BFF"
|
|
2576
2578
|
}))));
|
|
2577
2579
|
|
|
2578
|
-
const SvgLogoApple = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2580
|
+
const SvgLogoApple = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2579
2581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2580
2582
|
width: "1em",
|
|
2581
2583
|
height: "1em",
|
|
@@ -2588,7 +2590,7 @@ const SvgLogoApple = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2588
2590
|
clipRule: "evenodd"
|
|
2589
2591
|
}));
|
|
2590
2592
|
|
|
2591
|
-
const SvgLogoColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2593
|
+
const SvgLogoColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2592
2594
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2593
2595
|
width: "1em",
|
|
2594
2596
|
height: "1em",
|
|
@@ -2606,7 +2608,7 @@ const SvgLogoColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2606
2608
|
clipRule: "evenodd"
|
|
2607
2609
|
}));
|
|
2608
2610
|
|
|
2609
|
-
const SvgLogoFacebook = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2611
|
+
const SvgLogoFacebook = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2610
2612
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2611
2613
|
width: "1em",
|
|
2612
2614
|
height: "1em",
|
|
@@ -2619,7 +2621,7 @@ const SvgLogoFacebook = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
2619
2621
|
clipRule: "evenodd"
|
|
2620
2622
|
}));
|
|
2621
2623
|
|
|
2622
|
-
const SvgLogoKakao = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2624
|
+
const SvgLogoKakao = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2623
2625
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2624
2626
|
width: "1em",
|
|
2625
2627
|
height: "1em",
|
|
@@ -2632,7 +2634,7 @@ const SvgLogoKakao = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2632
2634
|
clipRule: "evenodd"
|
|
2633
2635
|
}));
|
|
2634
2636
|
|
|
2635
|
-
const SvgLogoNaver = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2637
|
+
const SvgLogoNaver = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2636
2638
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2637
2639
|
width: "1em",
|
|
2638
2640
|
height: "1em",
|
|
@@ -2643,7 +2645,7 @@ const SvgLogoNaver = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2643
2645
|
d: "M14.865 4v8.073L9.163 4H3v16h6.135v-8.073L14.837 20H21V4h-6.135Z"
|
|
2644
2646
|
}));
|
|
2645
2647
|
|
|
2646
|
-
const SvgMaxsize = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2648
|
+
const SvgMaxsize = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2647
2649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2648
2650
|
width: "1em",
|
|
2649
2651
|
height: "1em",
|
|
@@ -2654,7 +2656,7 @@ const SvgMaxsize = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
2654
2656
|
d: "M4.65 8.9h-2.4V5.2c0-1.8 1.4-3.2 3.2-3.2h3.8v2.4h-3.8c-.4 0-.8.4-.8.8v3.7Zm4.5 12.7h-3.7c-1.8 0-3.2-1.4-3.2-3.2v-3.8h2.4v3.8c0 .4.4.8.8.8h3.8v2.4h-.1Zm9.5 0h-3.8v-2.4h3.8c.4 0 .8-.4.8-.8v-3.8h2.4v3.8c0 1.8-1.4 3.2-3.2 3.2Zm3.2-12.7h-2.4V5.2c0-.4-.4-.8-.8-.8h-3.8V2h3.8c1.8 0 3.2 1.4 3.2 3.2v3.7Z"
|
|
2655
2657
|
}));
|
|
2656
2658
|
|
|
2657
|
-
const SvgMinsize = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2659
|
+
const SvgMinsize = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2658
2660
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2659
2661
|
width: "1em",
|
|
2660
2662
|
height: "1em",
|
|
@@ -2667,7 +2669,7 @@ const SvgMinsize = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
2667
2669
|
clipRule: "evenodd"
|
|
2668
2670
|
}));
|
|
2669
2671
|
|
|
2670
|
-
const SvgMinus = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2672
|
+
const SvgMinus = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2671
2673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2672
2674
|
width: "1em",
|
|
2673
2675
|
height: "1em",
|
|
@@ -2680,7 +2682,7 @@ const SvgMinus = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
2680
2682
|
clipRule: "evenodd"
|
|
2681
2683
|
}));
|
|
2682
2684
|
|
|
2683
|
-
const SvgMinusInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2685
|
+
const SvgMinusInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2684
2686
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2685
2687
|
width: "1em",
|
|
2686
2688
|
height: "1em",
|
|
@@ -2693,7 +2695,7 @@ const SvgMinusInCircle = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
2693
2695
|
clipRule: "evenodd"
|
|
2694
2696
|
}));
|
|
2695
2697
|
|
|
2696
|
-
const SvgMoneybag = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2698
|
+
const SvgMoneybag = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2697
2699
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2698
2700
|
width: "1em",
|
|
2699
2701
|
height: "1em",
|
|
@@ -2706,7 +2708,7 @@ const SvgMoneybag = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2706
2708
|
clipRule: "evenodd"
|
|
2707
2709
|
}));
|
|
2708
2710
|
|
|
2709
|
-
const SvgMoneybagColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2711
|
+
const SvgMoneybagColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2710
2712
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2711
2713
|
width: "1em",
|
|
2712
2714
|
height: "1em",
|
|
@@ -2722,7 +2724,7 @@ const SvgMoneybagColor = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
2722
2724
|
d: "M16.1 13.6c.3 0 .6.3.6.6s-.3.6-.6.6h-1.5l-.4 1.4c-.1.2-.3.4-.6.4s-.5-.2-.6-.4l-.8-2.2-.8 2.2c-.1.2-.3.4-.6.4s-.5-.1-.6-.4l-.4-1.4H8.3c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h1.1L9 12.2c-.1-.4.1-.7.4-.8.4-.1.7.1.8.4l.5 2.3.8-2c.1-.2.3-.4.6-.4s.5.2.6.4l.8 2 .7-2.3c.1-.3.5-.5.8-.4.3.1.5.5.4.8l-.4 1.4h1.1Z"
|
|
2723
2725
|
}));
|
|
2724
2726
|
|
|
2725
|
-
const SvgMore = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2727
|
+
const SvgMore = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2726
2728
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2727
2729
|
width: "1em",
|
|
2728
2730
|
height: "1em",
|
|
@@ -2735,7 +2737,7 @@ const SvgMore = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2735
2737
|
clipRule: "evenodd"
|
|
2736
2738
|
}));
|
|
2737
2739
|
|
|
2738
|
-
const SvgMyBubble = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2740
|
+
const SvgMyBubble = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2739
2741
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2740
2742
|
width: "1em",
|
|
2741
2743
|
height: "1em",
|
|
@@ -2748,7 +2750,7 @@ const SvgMyBubble = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2748
2750
|
clipRule: "evenodd"
|
|
2749
2751
|
}));
|
|
2750
2752
|
|
|
2751
|
-
const SvgNaverColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2753
|
+
const SvgNaverColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2752
2754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2753
2755
|
width: "1em",
|
|
2754
2756
|
height: "1em",
|
|
@@ -2762,7 +2764,7 @@ const SvgNaverColor = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
2762
2764
|
d: "M13.305 8.125v3.91l-2.68-3.91H7.73v7.75h2.883v-3.91l2.68 3.91h2.896v-7.75h-2.883Z"
|
|
2763
2765
|
}));
|
|
2764
2766
|
|
|
2765
|
-
const SvgNew = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2767
|
+
const SvgNew = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2766
2768
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2767
2769
|
width: "1em",
|
|
2768
2770
|
height: "1em",
|
|
@@ -2780,7 +2782,7 @@ const SvgNew = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
2780
2782
|
d: "M0 0h24v24H0z"
|
|
2781
2783
|
}))));
|
|
2782
2784
|
|
|
2783
|
-
const SvgNote = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2785
|
+
const SvgNote = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2784
2786
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2785
2787
|
width: "1em",
|
|
2786
2788
|
height: "1em",
|
|
@@ -2793,7 +2795,7 @@ const SvgNote = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2793
2795
|
clipRule: "evenodd"
|
|
2794
2796
|
}));
|
|
2795
2797
|
|
|
2796
|
-
const SvgNoteColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2798
|
+
const SvgNoteColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2797
2799
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2798
2800
|
width: "1em",
|
|
2799
2801
|
height: "1em",
|
|
@@ -2807,7 +2809,7 @@ const SvgNoteColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2807
2809
|
d: "M6 7a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1ZM6 11a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z"
|
|
2808
2810
|
}));
|
|
2809
2811
|
|
|
2810
|
-
const SvgNotePenColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2812
|
+
const SvgNotePenColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2811
2813
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2812
2814
|
width: "1em",
|
|
2813
2815
|
height: "1em",
|
|
@@ -2849,7 +2851,7 @@ const SvgNotePenColor = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
2849
2851
|
clipRule: "evenodd"
|
|
2850
2852
|
}));
|
|
2851
2853
|
|
|
2852
|
-
const SvgNumberFiveFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2854
|
+
const SvgNumberFiveFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2853
2855
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2854
2856
|
width: "1em",
|
|
2855
2857
|
height: "1em",
|
|
@@ -2862,7 +2864,7 @@ const SvgNumberFiveFilled = props => /*#__PURE__*/React__namespace.createElement
|
|
|
2862
2864
|
clipRule: "evenodd"
|
|
2863
2865
|
}));
|
|
2864
2866
|
|
|
2865
|
-
const SvgNumberFiveOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2867
|
+
const SvgNumberFiveOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2866
2868
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2867
2869
|
width: "1em",
|
|
2868
2870
|
height: "1em",
|
|
@@ -2878,7 +2880,7 @@ const SvgNumberFiveOutlined = props => /*#__PURE__*/React__namespace.createEleme
|
|
|
2878
2880
|
d: "M12.11 17.137c2.228 0 3.745-1.429 3.745-3.432 0-1.9-1.353-3.26-3.171-3.254-.869-.007-1.62.349-1.983.834h-.082l.274-2.502h4.402V7.102H9.197l-.533 5.7h1.86c.293-.553.813-.833 1.558-.833 1.04.007 1.784.738 1.777 1.79.007 1.033-.724 1.758-1.75 1.75-.861.008-1.565-.526-1.613-1.298H8.5c.034 1.709 1.545 2.926 3.61 2.926Z"
|
|
2879
2881
|
}));
|
|
2880
2882
|
|
|
2881
|
-
const SvgNumberFourFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2883
|
+
const SvgNumberFourFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2882
2884
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2883
2885
|
width: "1em",
|
|
2884
2886
|
height: "1em",
|
|
@@ -2891,7 +2893,7 @@ const SvgNumberFourFilled = props => /*#__PURE__*/React__namespace.createElement
|
|
|
2891
2893
|
clipRule: "evenodd"
|
|
2892
2894
|
}));
|
|
2893
2895
|
|
|
2894
|
-
const SvgNumberFourOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2896
|
+
const SvgNumberFourOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2895
2897
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2896
2898
|
width: "1em",
|
|
2897
2899
|
height: "1em",
|
|
@@ -2907,7 +2909,7 @@ const SvgNumberFourOutlined = props => /*#__PURE__*/React__namespace.createEleme
|
|
|
2907
2909
|
d: "M8 15.25h4.813V17h1.955v-1.75h1.257v-1.654h-1.257V7.102h-2.584L8 13.623v1.627Zm2.078-1.654v-.082l2.666-4.157h.096v4.239h-2.762Z"
|
|
2908
2910
|
}));
|
|
2909
2911
|
|
|
2910
|
-
const SvgNumberOneFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2912
|
+
const SvgNumberOneFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2911
2913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2912
2914
|
width: "1em",
|
|
2913
2915
|
height: "1em",
|
|
@@ -2920,7 +2922,7 @@ const SvgNumberOneFilled = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
2920
2922
|
clipRule: "evenodd"
|
|
2921
2923
|
}));
|
|
2922
2924
|
|
|
2923
|
-
const SvgNumberOneOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2925
|
+
const SvgNumberOneOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2924
2926
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2925
2927
|
width: "1em",
|
|
2926
2928
|
height: "1em",
|
|
@@ -2936,7 +2938,7 @@ const SvgNumberOneOutlined = props => /*#__PURE__*/React__namespace.createElemen
|
|
|
2936
2938
|
d: "M13.264 7.102h-1.942L8.875 8.66v1.819l2.27-1.422h.054V17h2.065V7.102Z"
|
|
2937
2939
|
}));
|
|
2938
2940
|
|
|
2939
|
-
const SvgNumberThreeFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2941
|
+
const SvgNumberThreeFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2940
2942
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2941
2943
|
width: "1em",
|
|
2942
2944
|
height: "1em",
|
|
@@ -2949,7 +2951,7 @@ const SvgNumberThreeFilled = props => /*#__PURE__*/React__namespace.createElemen
|
|
|
2949
2951
|
clipRule: "evenodd"
|
|
2950
2952
|
}));
|
|
2951
2953
|
|
|
2952
|
-
const SvgNumberThreeOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2954
|
+
const SvgNumberThreeOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2953
2955
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2954
2956
|
width: "1em",
|
|
2955
2957
|
height: "1em",
|
|
@@ -2965,7 +2967,7 @@ const SvgNumberThreeOutlined = props => /*#__PURE__*/React__namespace.createElem
|
|
|
2965
2967
|
d: "M11.773 17.137c2.236 0 3.842-1.217 3.829-2.912.013-1.238-.787-2.12-2.243-2.297v-.082c1.108-.198 1.88-.985 1.873-2.092.007-1.566-1.367-2.79-3.431-2.79-2.03 0-3.562 1.183-3.596 2.886h1.969c.034-.76.752-1.251 1.627-1.245.875-.006 1.456.513 1.449 1.272.007.78-.677 1.313-1.654 1.313h-.916v1.517h.916c1.162.007 1.88.574 1.873 1.38.007.8-.697 1.348-1.682 1.354-.957-.006-1.675-.492-1.709-1.23H8c.041 1.73 1.6 2.926 3.773 2.926Z"
|
|
2966
2968
|
}));
|
|
2967
2969
|
|
|
2968
|
-
const SvgNumberTwoFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2970
|
+
const SvgNumberTwoFilled = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2969
2971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2970
2972
|
width: "1em",
|
|
2971
2973
|
height: "1em",
|
|
@@ -2978,7 +2980,7 @@ const SvgNumberTwoFilled = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
2978
2980
|
clipRule: "evenodd"
|
|
2979
2981
|
}));
|
|
2980
2982
|
|
|
2981
|
-
const SvgNumberTwoOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2983
|
+
const SvgNumberTwoOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2982
2984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2983
2985
|
width: "1em",
|
|
2984
2986
|
height: "1em",
|
|
@@ -2994,7 +2996,7 @@ const SvgNumberTwoOutlined = props => /*#__PURE__*/React__namespace.createElemen
|
|
|
2994
2996
|
d: "M8.396 17.035h7.082V15.34h-4.225v-.055l1.504-1.463c2.037-1.845 2.584-2.768 2.584-3.896C15.341 8.21 13.933 7 11.814 7 9.729 7 8.294 8.237 8.3 10.172h1.955c-.007-.95.602-1.538 1.531-1.531.91-.007 1.573.54 1.573 1.421 0 .787-.5 1.334-1.422 2.215l-3.555 3.268.014 1.49Z"
|
|
2995
2997
|
}));
|
|
2996
2998
|
|
|
2997
|
-
const SvgOut = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
2999
|
+
const SvgOut = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2998
3000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2999
3001
|
width: "1em",
|
|
3000
3002
|
height: "1em",
|
|
@@ -3012,7 +3014,7 @@ const SvgOut = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
3012
3014
|
clipRule: "evenodd"
|
|
3013
3015
|
}));
|
|
3014
3016
|
|
|
3015
|
-
const SvgPalmTreeColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3017
|
+
const SvgPalmTreeColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3016
3018
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3017
3019
|
width: "1em",
|
|
3018
3020
|
height: "1em",
|
|
@@ -3049,7 +3051,7 @@ const SvgPalmTreeColor = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
3049
3051
|
d: "M21.263 18.25c-.782 1.645-2.528 2.45-3.899 1.799-1.37-.652-1.848-2.515-1.066-4.16.783-1.645 2.528-2.45 3.9-1.799 1.37.652 1.848 2.515 1.065 4.16Z"
|
|
3050
3052
|
}));
|
|
3051
3053
|
|
|
3052
|
-
const SvgPaperCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3054
|
+
const SvgPaperCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3053
3055
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3054
3056
|
width: "1em",
|
|
3055
3057
|
height: "1em",
|
|
@@ -3081,7 +3083,7 @@ const SvgPaperCheck = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
3081
3083
|
d: "M15.766 16.327H31.44V32H15.766z"
|
|
3082
3084
|
}))));
|
|
3083
3085
|
|
|
3084
|
-
const SvgPause = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3086
|
+
const SvgPause = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3085
3087
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3086
3088
|
width: "1em",
|
|
3087
3089
|
height: "1em",
|
|
@@ -3094,7 +3096,7 @@ const SvgPause = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
3094
3096
|
clipRule: "evenodd"
|
|
3095
3097
|
}));
|
|
3096
3098
|
|
|
3097
|
-
const SvgPen = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3099
|
+
const SvgPen = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3098
3100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3099
3101
|
width: "1em",
|
|
3100
3102
|
height: "1em",
|
|
@@ -3107,7 +3109,7 @@ const SvgPen = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
3107
3109
|
clipRule: "evenodd"
|
|
3108
3110
|
}));
|
|
3109
3111
|
|
|
3110
|
-
const SvgPercentInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3112
|
+
const SvgPercentInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3111
3113
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3112
3114
|
width: "1em",
|
|
3113
3115
|
height: "1em",
|
|
@@ -3125,7 +3127,7 @@ const SvgPercentInCircle = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
3125
3127
|
clipRule: "evenodd"
|
|
3126
3128
|
}));
|
|
3127
3129
|
|
|
3128
|
-
const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3130
|
+
const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3129
3131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3130
3132
|
width: "1em",
|
|
3131
3133
|
height: "1em",
|
|
@@ -3138,7 +3140,7 @@ const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3138
3140
|
clipRule: "evenodd"
|
|
3139
3141
|
}));
|
|
3140
3142
|
|
|
3141
|
-
const SvgPin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3143
|
+
const SvgPin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3142
3144
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3143
3145
|
width: "1em",
|
|
3144
3146
|
height: "1em",
|
|
@@ -3151,7 +3153,7 @@ const SvgPin = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
3151
3153
|
clipRule: "evenodd"
|
|
3152
3154
|
}));
|
|
3153
3155
|
|
|
3154
|
-
const SvgPinColorRed = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3156
|
+
const SvgPinColorRed = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3155
3157
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3156
3158
|
width: "1em",
|
|
3157
3159
|
height: "1em",
|
|
@@ -3173,7 +3175,7 @@ const SvgPinColorRed = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
3173
3175
|
d: "M0 .5h16v16H0z"
|
|
3174
3176
|
}))));
|
|
3175
3177
|
|
|
3176
|
-
const SvgPlay = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3178
|
+
const SvgPlay = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3177
3179
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3178
3180
|
width: "1em",
|
|
3179
3181
|
height: "1em",
|
|
@@ -3184,7 +3186,7 @@ const SvgPlay = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
3184
3186
|
d: "M18.88 10.037c1.493.872 1.493 3.053 0 3.926l-11.52 6.73C5.867 21.565 4 20.475 4 18.73V5.27c0-1.745 1.867-2.835 3.36-1.963l11.52 6.73Z"
|
|
3185
3187
|
}));
|
|
3186
3188
|
|
|
3187
|
-
const SvgPlug = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3189
|
+
const SvgPlug = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3188
3190
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3189
3191
|
width: "1em",
|
|
3190
3192
|
height: "1em",
|
|
@@ -3213,7 +3215,7 @@ const SvgPlug = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
3213
3215
|
d: "M10.426 11.111h11.951v10.864H10.426z"
|
|
3214
3216
|
}))));
|
|
3215
3217
|
|
|
3216
|
-
const SvgPlugColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3218
|
+
const SvgPlugColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3217
3219
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3218
3220
|
width: "1em",
|
|
3219
3221
|
height: "1em",
|
|
@@ -3245,7 +3247,7 @@ const SvgPlugColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
3245
3247
|
d: "M10.426 11.111h11.951v10.864H10.426z"
|
|
3246
3248
|
}))));
|
|
3247
3249
|
|
|
3248
|
-
const SvgPlus = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3250
|
+
const SvgPlus = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3249
3251
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3250
3252
|
width: "1em",
|
|
3251
3253
|
height: "1em",
|
|
@@ -3258,7 +3260,7 @@ const SvgPlus = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
3258
3260
|
clipRule: "evenodd"
|
|
3259
3261
|
}));
|
|
3260
3262
|
|
|
3261
|
-
const SvgPlusInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3263
|
+
const SvgPlusInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3262
3264
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3263
3265
|
width: "1em",
|
|
3264
3266
|
height: "1em",
|
|
@@ -3271,7 +3273,7 @@ const SvgPlusInCircle = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
3271
3273
|
clipRule: "evenodd"
|
|
3272
3274
|
}));
|
|
3273
3275
|
|
|
3274
|
-
const SvgPointInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3276
|
+
const SvgPointInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3275
3277
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3276
3278
|
width: "1em",
|
|
3277
3279
|
height: "1em",
|
|
@@ -3289,7 +3291,7 @@ const SvgPointInCircle = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
3289
3291
|
clipRule: "evenodd"
|
|
3290
3292
|
}));
|
|
3291
3293
|
|
|
3292
|
-
const SvgPointInCircleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3294
|
+
const SvgPointInCircleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3293
3295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3294
3296
|
width: "1em",
|
|
3295
3297
|
height: "1em",
|
|
@@ -3312,7 +3314,7 @@ const SvgPointInCircleColor = props => /*#__PURE__*/React__namespace.createEleme
|
|
|
3312
3314
|
d: "M0 0h24v24H0z"
|
|
3313
3315
|
}))));
|
|
3314
3316
|
|
|
3315
|
-
const SvgPresent = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3317
|
+
const SvgPresent = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3316
3318
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3317
3319
|
width: "1em",
|
|
3318
3320
|
height: "1em",
|
|
@@ -3328,7 +3330,7 @@ const SvgPresent = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3328
3330
|
clipRule: "evenodd"
|
|
3329
3331
|
}));
|
|
3330
3332
|
|
|
3331
|
-
const SvgPresentColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3333
|
+
const SvgPresentColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3332
3334
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3333
3335
|
width: "1em",
|
|
3334
3336
|
height: "1em",
|
|
@@ -3344,7 +3346,7 @@ const SvgPresentColor = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
3344
3346
|
clipRule: "evenodd"
|
|
3345
3347
|
}));
|
|
3346
3348
|
|
|
3347
|
-
const SvgProblem = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3349
|
+
const SvgProblem = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3348
3350
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3349
3351
|
width: "1em",
|
|
3350
3352
|
height: "1em",
|
|
@@ -3355,7 +3357,7 @@ const SvgProblem = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3355
3357
|
d: "m20.73 2.357-6.89 1.938a1 1 0 0 0-.729.963V20.68a1 1 0 0 0 1.27.963l6.89-1.938a1 1 0 0 0 .729-.962V3.32a1 1 0 0 0-1.27-.963ZM3.27 2.357l6.89 1.938a1 1 0 0 1 .729.963V20.68a1 1 0 0 1-1.27.963l-6.89-1.938A1 1 0 0 1 2 18.743V3.32a1 1 0 0 1 1.27-.963Z"
|
|
3356
3358
|
}));
|
|
3357
3359
|
|
|
3358
|
-
const SvgProfile = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3360
|
+
const SvgProfile = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3359
3361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3360
3362
|
width: "1em",
|
|
3361
3363
|
height: "1em",
|
|
@@ -3368,7 +3370,7 @@ const SvgProfile = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3368
3370
|
clipRule: "evenodd"
|
|
3369
3371
|
}));
|
|
3370
3372
|
|
|
3371
|
-
const SvgProgressGradient = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3373
|
+
const SvgProgressGradient = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3372
3374
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3373
3375
|
width: "1em",
|
|
3374
3376
|
height: "1em",
|
|
@@ -3405,7 +3407,7 @@ const SvgProgressGradient = props => /*#__PURE__*/React__namespace.createElement
|
|
|
3405
3407
|
opacity: 0.72
|
|
3406
3408
|
}));
|
|
3407
3409
|
|
|
3408
|
-
const SvgQuestionMarkInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3410
|
+
const SvgQuestionMarkInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3409
3411
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3410
3412
|
width: "1em",
|
|
3411
3413
|
height: "1em",
|
|
@@ -3418,7 +3420,7 @@ const SvgQuestionMarkInCircle = props => /*#__PURE__*/React__namespace.createEle
|
|
|
3418
3420
|
clipRule: "evenodd"
|
|
3419
3421
|
}));
|
|
3420
3422
|
|
|
3421
|
-
const SvgQuestionMarkInCircleOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3423
|
+
const SvgQuestionMarkInCircleOutlined = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3422
3424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3423
3425
|
width: "1em",
|
|
3424
3426
|
height: "1em",
|
|
@@ -3434,7 +3436,7 @@ const SvgQuestionMarkInCircleOutlined = props => /*#__PURE__*/React__namespace.c
|
|
|
3434
3436
|
d: "M13.652 12.569c.629-.403 1.487-.953 1.774-2.201.224-.974.016-1.927-.586-2.683-.681-.855-1.817-1.385-2.966-1.385A3.578 3.578 0 0 0 8.3 9.874a.9.9 0 1 0 1.8 0c0-.978.796-1.775 1.774-1.775.605 0 1.216.278 1.558.707.261.328.341.718.24 1.16-.117.507-.42.722-.992 1.087l-.002.001c-.72.461-1.704 1.091-1.704 2.695a.9.9 0 1 0 1.8 0c0-.589.225-.763.876-1.179l.002-.001ZM11.041 17.756a1.2 1.2 0 1 0 1.697-1.697 1.2 1.2 0 0 0-1.697 1.697Z"
|
|
3435
3437
|
}));
|
|
3436
3438
|
|
|
3437
|
-
const SvgRaffleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3439
|
+
const SvgRaffleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3438
3440
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3439
3441
|
width: "1em",
|
|
3440
3442
|
height: "1em",
|
|
@@ -3543,7 +3545,7 @@ const SvgRaffleColor = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
3543
3545
|
result: "effect1_innerShadow_12781_25756"
|
|
3544
3546
|
}))));
|
|
3545
3547
|
|
|
3546
|
-
const SvgReceipt = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3548
|
+
const SvgReceipt = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3547
3549
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3548
3550
|
width: "1em",
|
|
3549
3551
|
height: "1em",
|
|
@@ -3556,7 +3558,7 @@ const SvgReceipt = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3556
3558
|
clipRule: "evenodd"
|
|
3557
3559
|
}));
|
|
3558
3560
|
|
|
3559
|
-
const SvgRefresh = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3561
|
+
const SvgRefresh = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3560
3562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3561
3563
|
width: "1em",
|
|
3562
3564
|
height: "1em",
|
|
@@ -3569,7 +3571,7 @@ const SvgRefresh = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3569
3571
|
clipRule: "evenodd"
|
|
3570
3572
|
}));
|
|
3571
3573
|
|
|
3572
|
-
const SvgRepeat = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3574
|
+
const SvgRepeat = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3573
3575
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3574
3576
|
width: "1em",
|
|
3575
3577
|
height: "1em",
|
|
@@ -3580,7 +3582,7 @@ const SvgRepeat = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
3580
3582
|
d: "M4.3 12.37v-1.01c0-2.79 2.27-5.06 5.06-5.06h7.59l-.56.56a1.202 1.202 0 0 0 1.7 1.7l2.61-2.61c.22-.23.35-.53.35-.85 0-.32-.13-.62-.35-.85l-2.61-2.61a1.201 1.201 0 1 0-1.7 1.7l.56.56H9.36c-4.11 0-7.46 3.35-7.46 7.46v1.01c0 .66.54 1.2 1.2 1.2.66 0 1.2-.53 1.2-1.2Zm16.6-1.94c-.66 0-1.2.54-1.2 1.2v1.01c0 2.79-2.27 5.06-5.06 5.06H7.05l.56-.56a1.202 1.202 0 0 0-1.7-1.7L3.3 18.05c-.23.22-.35.53-.35.85 0 .32.13.62.35.85l2.61 2.61a1.204 1.204 0 0 0 1.7 0c.47-.47.47-1.23 0-1.7l-.56-.56h7.59c4.11 0 7.46-3.35 7.46-7.46v-1.01c0-.67-.54-1.2-1.2-1.2Z"
|
|
3581
3583
|
}));
|
|
3582
3584
|
|
|
3583
|
-
const SvgSchool = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3585
|
+
const SvgSchool = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3584
3586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3585
3587
|
width: "1em",
|
|
3586
3588
|
height: "1em",
|
|
@@ -3596,7 +3598,7 @@ const SvgSchool = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
3596
3598
|
clipRule: "evenodd"
|
|
3597
3599
|
}));
|
|
3598
3600
|
|
|
3599
|
-
const SvgSchoolColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3601
|
+
const SvgSchoolColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3600
3602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3601
3603
|
width: "1em",
|
|
3602
3604
|
height: "1em",
|
|
@@ -3619,7 +3621,7 @@ const SvgSchoolColor = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
3619
3621
|
d: "M0 0h32v32H0z"
|
|
3620
3622
|
}))));
|
|
3621
3623
|
|
|
3622
|
-
const SvgSearch = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3624
|
+
const SvgSearch = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3623
3625
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3624
3626
|
width: "1em",
|
|
3625
3627
|
height: "1em",
|
|
@@ -3630,7 +3632,7 @@ const SvgSearch = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
3630
3632
|
d: "m22.049 20.352-4.607-4.607a8.53 8.53 0 0 0 1.736-5.156C19.178 5.853 15.324 2 10.589 2 5.853 2.001 2 5.854 2 10.59c0 4.735 3.853 8.589 8.589 8.589a8.533 8.533 0 0 0 5.156-1.736l4.607 4.607a1.196 1.196 0 0 0 1.697-.001 1.201 1.201 0 0 0 0-1.697ZM4.4 10.59a6.196 6.196 0 0 1 6.189-6.189 6.195 6.195 0 0 1 6.188 6.188 6.195 6.195 0 0 1-6.188 6.188A6.194 6.194 0 0 1 4.4 10.59Z"
|
|
3631
3633
|
}));
|
|
3632
3634
|
|
|
3633
|
-
const SvgSet = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3635
|
+
const SvgSet = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3634
3636
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3635
3637
|
width: "1em",
|
|
3636
3638
|
height: "1em",
|
|
@@ -3646,7 +3648,7 @@ const SvgSet = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
3646
3648
|
clipRule: "evenodd"
|
|
3647
3649
|
}));
|
|
3648
3650
|
|
|
3649
|
-
const SvgSetting = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3651
|
+
const SvgSetting = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3650
3652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3651
3653
|
width: "1em",
|
|
3652
3654
|
height: "1em",
|
|
@@ -3659,7 +3661,7 @@ const SvgSetting = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3659
3661
|
clipRule: "evenodd"
|
|
3660
3662
|
}));
|
|
3661
3663
|
|
|
3662
|
-
const SvgShare = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3664
|
+
const SvgShare = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3663
3665
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3664
3666
|
width: "1em",
|
|
3665
3667
|
height: "1em",
|
|
@@ -3677,7 +3679,7 @@ const SvgShare = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
3677
3679
|
clipRule: "evenodd"
|
|
3678
3680
|
}));
|
|
3679
3681
|
|
|
3680
|
-
const SvgShieldCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3682
|
+
const SvgShieldCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3681
3683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3682
3684
|
width: "1em",
|
|
3683
3685
|
height: "1em",
|
|
@@ -3688,7 +3690,7 @@ const SvgShieldCheck = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
3688
3690
|
d: "M21.1 4.3 12.4.7c-.2-.1-.5-.1-.8 0L2.9 4.3c-.4.1-.6.5-.6.9v8.3c0 3.8 4.8 7.5 9.3 9.8.3.1.6.1.9 0 4.5-2.3 9.3-6 9.3-9.8V5.2c-.1-.4-.3-.8-.7-.9Zm-3.7 5.5-5.8 5.8c-.2.2-.5.3-.7.3-.2 0-.5-.1-.7-.3L6.6 12c-.4-.4-.4-1.1 0-1.5.4-.4 1.1-.4 1.5 0l2.8 2.8 5.1-5c.4-.4 1.1-.4 1.5 0 .4.4.4 1.1-.1 1.5Z"
|
|
3689
3691
|
}));
|
|
3690
3692
|
|
|
3691
|
-
const SvgSiren = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3693
|
+
const SvgSiren = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3692
3694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3693
3695
|
width: "1em",
|
|
3694
3696
|
height: "1em",
|
|
@@ -3701,7 +3703,7 @@ const SvgSiren = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
3701
3703
|
clipRule: "evenodd"
|
|
3702
3704
|
}));
|
|
3703
3705
|
|
|
3704
|
-
const SvgSkipback = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3706
|
+
const SvgSkipback = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3705
3707
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3706
3708
|
width: "1em",
|
|
3707
3709
|
height: "1em",
|
|
@@ -3714,7 +3716,7 @@ const SvgSkipback = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
3714
3716
|
clipRule: "evenodd"
|
|
3715
3717
|
}));
|
|
3716
3718
|
|
|
3717
|
-
const SvgSkipforward = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3719
|
+
const SvgSkipforward = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3718
3720
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3719
3721
|
width: "1em",
|
|
3720
3722
|
height: "1em",
|
|
@@ -3727,7 +3729,7 @@ const SvgSkipforward = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
3727
3729
|
clipRule: "evenodd"
|
|
3728
3730
|
}));
|
|
3729
3731
|
|
|
3730
|
-
const SvgSoundOff = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3732
|
+
const SvgSoundOff = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3731
3733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3732
3734
|
width: "1em",
|
|
3733
3735
|
height: "1em",
|
|
@@ -3738,7 +3740,7 @@ const SvgSoundOff = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
3738
3740
|
d: "M16.894 5.553a1 1 0 0 0-1.788.894l3.026 6.053-3.026 6.053a1 1 0 1 0 1.789.894l2.355-4.71 2.355 4.71a1 1 0 0 0 1.79-.894L20.367 12.5l3.027-6.053a1 1 0 0 0-1.79-.894l-2.355 4.711-2.356-4.711ZM1 16.487V8.693c0-.43.349-.78.78-.78h3.184a.78.78 0 0 0 .55-.227l5.457-5.456a.78.78 0 0 1 1.33.55v19.303a.78.78 0 0 1-1.314.567l-5.475-5.17a.78.78 0 0 0-.535-.213H1.779a.78.78 0 0 1-.779-.78Z"
|
|
3739
3741
|
}));
|
|
3740
3742
|
|
|
3741
|
-
const SvgSoundOn = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3743
|
+
const SvgSoundOn = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3742
3744
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3743
3745
|
width: "1em",
|
|
3744
3746
|
height: "1em",
|
|
@@ -3759,7 +3761,7 @@ const SvgSoundOn = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3759
3761
|
clipRule: "evenodd"
|
|
3760
3762
|
}));
|
|
3761
3763
|
|
|
3762
|
-
const SvgSpeaker = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3764
|
+
const SvgSpeaker = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3763
3765
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3764
3766
|
width: "1em",
|
|
3765
3767
|
height: "1em",
|
|
@@ -3772,7 +3774,7 @@ const SvgSpeaker = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3772
3774
|
clipRule: "evenodd"
|
|
3773
3775
|
}));
|
|
3774
3776
|
|
|
3775
|
-
const SvgStackup = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3777
|
+
const SvgStackup = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3776
3778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3777
3779
|
width: "1em",
|
|
3778
3780
|
height: "1em",
|
|
@@ -3795,7 +3797,7 @@ const SvgStackup = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3795
3797
|
clipRule: "evenodd"
|
|
3796
3798
|
}));
|
|
3797
3799
|
|
|
3798
|
-
const SvgStar = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3800
|
+
const SvgStar = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3799
3801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3800
3802
|
width: "1em",
|
|
3801
3803
|
height: "1em",
|
|
@@ -3808,7 +3810,7 @@ const SvgStar = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
3808
3810
|
clipRule: "evenodd"
|
|
3809
3811
|
}));
|
|
3810
3812
|
|
|
3811
|
-
const SvgStore = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3813
|
+
const SvgStore = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3812
3814
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3813
3815
|
width: "1em",
|
|
3814
3816
|
height: "1em",
|
|
@@ -3819,7 +3821,7 @@ const SvgStore = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
3819
3821
|
clipRule: "evenodd"
|
|
3820
3822
|
}));
|
|
3821
3823
|
|
|
3822
|
-
const SvgSync = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3824
|
+
const SvgSync = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3823
3825
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3824
3826
|
width: "1em",
|
|
3825
3827
|
height: "1em",
|
|
@@ -3832,7 +3834,7 @@ const SvgSync = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
3832
3834
|
clipRule: "evenodd"
|
|
3833
3835
|
}));
|
|
3834
3836
|
|
|
3835
|
-
const SvgTestUploadColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3837
|
+
const SvgTestUploadColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3836
3838
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3837
3839
|
width: "1em",
|
|
3838
3840
|
height: "1em",
|
|
@@ -3854,7 +3856,7 @@ const SvgTestUploadColor = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
3854
3856
|
d: "m12.484 13.449 4.338-3.88a.328.328 0 0 1 .435-.003l4.43 3.88c.228.2.087.575-.216.575h-2.005a.34.34 0 0 0-.333.331c-.158 4.863-3.811 6.125-6.202 6.177-.287.007-.407-.341-.206-.546 2.16-2.194 2.613-4.543 2.478-5.705a.298.298 0 0 0-.304-.257h-2.196a.328.328 0 0 1-.219-.572Z"
|
|
3855
3857
|
}));
|
|
3856
3858
|
|
|
3857
|
-
const SvgThumbdown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3859
|
+
const SvgThumbdown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3858
3860
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3859
3861
|
width: "1em",
|
|
3860
3862
|
height: "1em",
|
|
@@ -3867,7 +3869,7 @@ const SvgThumbdown = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
3867
3869
|
clipRule: "evenodd"
|
|
3868
3870
|
}));
|
|
3869
3871
|
|
|
3870
|
-
const SvgThumbup = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3872
|
+
const SvgThumbup = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3871
3873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3872
3874
|
width: "1em",
|
|
3873
3875
|
height: "1em",
|
|
@@ -3880,7 +3882,7 @@ const SvgThumbup = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3880
3882
|
clipRule: "evenodd"
|
|
3881
3883
|
}));
|
|
3882
3884
|
|
|
3883
|
-
const SvgThunder = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3885
|
+
const SvgThunder = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3884
3886
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3885
3887
|
width: "1em",
|
|
3886
3888
|
height: "1em",
|
|
@@ -3893,7 +3895,7 @@ const SvgThunder = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
3893
3895
|
clipRule: "evenodd"
|
|
3894
3896
|
}));
|
|
3895
3897
|
|
|
3896
|
-
const SvgTicket = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3898
|
+
const SvgTicket = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3897
3899
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3898
3900
|
width: "1em",
|
|
3899
3901
|
height: "1em",
|
|
@@ -3906,7 +3908,7 @@ const SvgTicket = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
3906
3908
|
clipRule: "evenodd"
|
|
3907
3909
|
}));
|
|
3908
3910
|
|
|
3909
|
-
const SvgTicketColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3911
|
+
const SvgTicketColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3910
3912
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3911
3913
|
width: "1em",
|
|
3912
3914
|
height: "1em",
|
|
@@ -3931,7 +3933,7 @@ const SvgTicketColor = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
3931
3933
|
stopColor: "#595959"
|
|
3932
3934
|
}))));
|
|
3933
3935
|
|
|
3934
|
-
const SvgTime = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3936
|
+
const SvgTime = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3935
3937
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3936
3938
|
width: "1em",
|
|
3937
3939
|
height: "1em",
|
|
@@ -3944,7 +3946,7 @@ const SvgTime = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
3944
3946
|
clipRule: "evenodd"
|
|
3945
3947
|
}));
|
|
3946
3948
|
|
|
3947
|
-
const SvgTop = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3949
|
+
const SvgTop = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3948
3950
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3949
3951
|
width: "1em",
|
|
3950
3952
|
height: "1em",
|
|
@@ -3957,7 +3959,7 @@ const SvgTop = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
|
|
|
3957
3959
|
clipRule: "evenodd"
|
|
3958
3960
|
}));
|
|
3959
3961
|
|
|
3960
|
-
const SvgTrash = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3962
|
+
const SvgTrash = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3961
3963
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3962
3964
|
width: "1em",
|
|
3963
3965
|
height: "1em",
|
|
@@ -3970,7 +3972,7 @@ const SvgTrash = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
3970
3972
|
clipRule: "evenodd"
|
|
3971
3973
|
}));
|
|
3972
3974
|
|
|
3973
|
-
const SvgTreasurebox = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3975
|
+
const SvgTreasurebox = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3974
3976
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3975
3977
|
width: "1em",
|
|
3976
3978
|
height: "1em",
|
|
@@ -3988,7 +3990,7 @@ const SvgTreasurebox = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
3988
3990
|
clipRule: "evenodd"
|
|
3989
3991
|
}));
|
|
3990
3992
|
|
|
3991
|
-
const SvgTrophy = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
3993
|
+
const SvgTrophy = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3992
3994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3993
3995
|
width: "1em",
|
|
3994
3996
|
height: "1em",
|
|
@@ -4001,7 +4003,7 @@ const SvgTrophy = props => /*#__PURE__*/React__namespace.createElement("svg", _e
|
|
|
4001
4003
|
clipRule: "evenodd"
|
|
4002
4004
|
}));
|
|
4003
4005
|
|
|
4004
|
-
const SvgUndo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4006
|
+
const SvgUndo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4005
4007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4006
4008
|
width: "1em",
|
|
4007
4009
|
height: "1em",
|
|
@@ -4014,7 +4016,7 @@ const SvgUndo = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
4014
4016
|
clipRule: "evenodd"
|
|
4015
4017
|
}));
|
|
4016
4018
|
|
|
4017
|
-
const SvgUniversity = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4019
|
+
const SvgUniversity = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4018
4020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4019
4021
|
width: "1em",
|
|
4020
4022
|
height: "1em",
|
|
@@ -4036,7 +4038,7 @@ const SvgUniversity = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
4036
4038
|
d: "M21.426 15.401a.92.92 0 1 1-1.841 0 .92.92 0 0 1 1.841 0Z"
|
|
4037
4039
|
}));
|
|
4038
4040
|
|
|
4039
|
-
const SvgUserBlocked = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4041
|
+
const SvgUserBlocked = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4040
4042
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4041
4043
|
width: "1em",
|
|
4042
4044
|
height: "1em",
|
|
@@ -4049,7 +4051,7 @@ const SvgUserBlocked = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
4049
4051
|
clipRule: "evenodd"
|
|
4050
4052
|
}));
|
|
4051
4053
|
|
|
4052
|
-
const SvgUserCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4054
|
+
const SvgUserCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4053
4055
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4054
4056
|
width: "1em",
|
|
4055
4057
|
height: "1em",
|
|
@@ -4062,7 +4064,7 @@ const SvgUserCheck = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
4062
4064
|
clipRule: "evenodd"
|
|
4063
4065
|
}));
|
|
4064
4066
|
|
|
4065
|
-
const SvgUserPlus = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4067
|
+
const SvgUserPlus = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4066
4068
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4067
4069
|
width: "1em",
|
|
4068
4070
|
height: "1em",
|
|
@@ -4075,7 +4077,7 @@ const SvgUserPlus = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
4075
4077
|
clipRule: "evenodd"
|
|
4076
4078
|
}));
|
|
4077
4079
|
|
|
4078
|
-
const SvgUserTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4080
|
+
const SvgUserTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4079
4081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4080
4082
|
width: "1em",
|
|
4081
4083
|
height: "1em",
|
|
@@ -4094,7 +4096,7 @@ const SvgUserTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
4094
4096
|
clipRule: "evenodd"
|
|
4095
4097
|
}));
|
|
4096
4098
|
|
|
4097
|
-
const SvgVideo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4099
|
+
const SvgVideo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4098
4100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4099
4101
|
width: "1em",
|
|
4100
4102
|
height: "1em",
|
|
@@ -4107,7 +4109,7 @@ const SvgVideo = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
4107
4109
|
clipRule: "evenodd"
|
|
4108
4110
|
}));
|
|
4109
4111
|
|
|
4110
|
-
const SvgVideoColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4112
|
+
const SvgVideoColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4111
4113
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4112
4114
|
width: "1em",
|
|
4113
4115
|
height: "1em",
|
|
@@ -4121,7 +4123,7 @@ const SvgVideoColor = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
4121
4123
|
d: "M15.507 11.474c.39.234.39.818 0 1.052l-4.829 2.892c-.39.233-.878-.059-.878-.526V9.108c0-.467.488-.76.878-.526l4.83 2.892Z"
|
|
4122
4124
|
}));
|
|
4123
4125
|
|
|
4124
|
-
const SvgVoteColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4126
|
+
const SvgVoteColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4125
4127
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4126
4128
|
width: "1em",
|
|
4127
4129
|
height: "1em",
|
|
@@ -4141,7 +4143,7 @@ const SvgVoteColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
4141
4143
|
d: "M3.256 3.719A1 1 0 0 1 4.216 3h15.569a1 1 0 0 1 .96.719L22 8H2l1.256-4.281Z"
|
|
4142
4144
|
}));
|
|
4143
4145
|
|
|
4144
|
-
const SvgWarning = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4146
|
+
const SvgWarning = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4145
4147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4146
4148
|
width: "1em",
|
|
4147
4149
|
height: "1em",
|
|
@@ -4154,7 +4156,7 @@ const SvgWarning = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
4154
4156
|
clipRule: "evenodd"
|
|
4155
4157
|
}));
|
|
4156
4158
|
|
|
4157
|
-
const SvgWifi = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4159
|
+
const SvgWifi = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4158
4160
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4159
4161
|
width: "1em",
|
|
4160
4162
|
height: "1em",
|
|
@@ -4177,7 +4179,7 @@ const SvgWifi = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
4177
4179
|
clipRule: "evenodd"
|
|
4178
4180
|
}));
|
|
4179
4181
|
|
|
4180
|
-
const SvgWorkbookColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4182
|
+
const SvgWorkbookColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4181
4183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4182
4184
|
width: "1em",
|
|
4183
4185
|
height: "1em",
|
|
@@ -4202,7 +4204,7 @@ const SvgWorkbookColor = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
4202
4204
|
rx: 1.546
|
|
4203
4205
|
}));
|
|
4204
4206
|
|
|
4205
|
-
const SvgWrong = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4207
|
+
const SvgWrong = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4206
4208
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4207
4209
|
width: "1em",
|
|
4208
4210
|
height: "1em",
|
|
@@ -4218,7 +4220,7 @@ const SvgWrong = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
4218
4220
|
clipRule: "evenodd"
|
|
4219
4221
|
}));
|
|
4220
4222
|
|
|
4221
|
-
const SvgYoutube = props => /*#__PURE__*/React__namespace.createElement("svg", _extends
|
|
4223
|
+
const SvgYoutube = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4222
4224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4223
4225
|
width: "1em",
|
|
4224
4226
|
height: "1em",
|
|
@@ -4456,7 +4458,7 @@ const isNullable = value => value === null || value === undefined;
|
|
|
4456
4458
|
/**
|
|
4457
4459
|
* 아무 행위도 하지 않는 함수입니다.
|
|
4458
4460
|
*/
|
|
4459
|
-
function noop$
|
|
4461
|
+
function noop$2() {}
|
|
4460
4462
|
|
|
4461
4463
|
const scrollIntoView = ({
|
|
4462
4464
|
childrenRef,
|
|
@@ -6998,7 +7000,7 @@ const ActionListItem = ({
|
|
|
6998
7000
|
}) : null : selectionVariant === 'multiple' ? /*#__PURE__*/jsxRuntimeExports.jsx(FakeCheckbox, {
|
|
6999
7001
|
"aria-checked": selected,
|
|
7000
7002
|
checked: selected,
|
|
7001
|
-
onChange: noop$
|
|
7003
|
+
onChange: noop$2,
|
|
7002
7004
|
"aria-disabled": disabled,
|
|
7003
7005
|
disabled: disabled
|
|
7004
7006
|
}) : null
|
|
@@ -7310,7 +7312,7 @@ const BaseActionList = styled__default.default.ul`
|
|
|
7310
7312
|
|
|
7311
7313
|
${sx}
|
|
7312
7314
|
`;
|
|
7313
|
-
var index$
|
|
7315
|
+
var index$a = Object.assign(ActionList, {
|
|
7314
7316
|
Item: ActionListItem,
|
|
7315
7317
|
SectionDivider: ActionListSectionDivider,
|
|
7316
7318
|
SectionHeader: ActionListSectionHeader
|
|
@@ -8505,7 +8507,7 @@ function makeLatestValues(props, context, presenceContext, scrapeMotionValues) {
|
|
|
8505
8507
|
return values;
|
|
8506
8508
|
}
|
|
8507
8509
|
|
|
8508
|
-
const noop$
|
|
8510
|
+
const noop$1 = (any) => any;
|
|
8509
8511
|
|
|
8510
8512
|
class Queue {
|
|
8511
8513
|
constructor() {
|
|
@@ -8667,7 +8669,7 @@ function createRenderBatcher(scheduleNextBatch, allowKeepAlive) {
|
|
|
8667
8669
|
return { schedule, cancel, state, steps };
|
|
8668
8670
|
}
|
|
8669
8671
|
|
|
8670
|
-
const { schedule: frame, cancel: cancelFrame, state: frameData, steps, } = createRenderBatcher(typeof requestAnimationFrame !== "undefined" ? requestAnimationFrame : noop$
|
|
8672
|
+
const { schedule: frame, cancel: cancelFrame, state: frameData, steps, } = createRenderBatcher(typeof requestAnimationFrame !== "undefined" ? requestAnimationFrame : noop$1, true);
|
|
8671
8673
|
|
|
8672
8674
|
const svgMotionConfig = {
|
|
8673
8675
|
useVisualState: makeUseVisualState({
|
|
@@ -8917,9 +8919,9 @@ function fireSyntheticPointerEvent(name, handler) {
|
|
|
8917
8919
|
class PressGesture extends Feature {
|
|
8918
8920
|
constructor() {
|
|
8919
8921
|
super(...arguments);
|
|
8920
|
-
this.removeStartListeners = noop$
|
|
8921
|
-
this.removeEndListeners = noop$
|
|
8922
|
-
this.removeAccessibleListeners = noop$
|
|
8922
|
+
this.removeStartListeners = noop$1;
|
|
8923
|
+
this.removeEndListeners = noop$1;
|
|
8924
|
+
this.removeAccessibleListeners = noop$1;
|
|
8923
8925
|
this.startPointerPress = (startEvent, startInfo) => {
|
|
8924
8926
|
this.removeEndListeners();
|
|
8925
8927
|
if (this.isPressing)
|
|
@@ -9185,8 +9187,8 @@ function resolveVariant(visualElement, definition, custom) {
|
|
|
9185
9187
|
const optimizedAppearDataId = "framerAppearId";
|
|
9186
9188
|
const optimizedAppearDataAttribute = "data-" + camelToDash(optimizedAppearDataId);
|
|
9187
9189
|
|
|
9188
|
-
let warning = noop$
|
|
9189
|
-
let invariant = noop$
|
|
9190
|
+
let warning = noop$1;
|
|
9191
|
+
let invariant = noop$1;
|
|
9190
9192
|
if (process.env.NODE_ENV !== "production") {
|
|
9191
9193
|
warning = (check, message) => {
|
|
9192
9194
|
if (!check && typeof console !== "undefined") {
|
|
@@ -9312,7 +9314,7 @@ function binarySubdivide(x, lowerBound, upperBound, mX1, mX2) {
|
|
|
9312
9314
|
function cubicBezier(mX1, mY1, mX2, mY2) {
|
|
9313
9315
|
// If this is a linear gradient, return linear easing
|
|
9314
9316
|
if (mX1 === mY1 && mX2 === mY2)
|
|
9315
|
-
return noop$
|
|
9317
|
+
return noop$1;
|
|
9316
9318
|
const getTForX = (aX) => binarySubdivide(aX, 0, 1, mX1, mX2);
|
|
9317
9319
|
// If animation is at start/end, return t without easing
|
|
9318
9320
|
return (t) => t === 0 || t === 1 ? t : calcBezier(getTForX(t), mY1, mY2);
|
|
@@ -9345,7 +9347,7 @@ const backInOut = mirrorEasing(backIn);
|
|
|
9345
9347
|
const anticipate = (p) => (p *= 2) < 1 ? 0.5 * backIn(p) : 0.5 * (2 - Math.pow(2, -10 * (p - 1)));
|
|
9346
9348
|
|
|
9347
9349
|
const easingLookup = {
|
|
9348
|
-
linear: noop$
|
|
9350
|
+
linear: noop$1,
|
|
9349
9351
|
easeIn,
|
|
9350
9352
|
easeInOut,
|
|
9351
9353
|
easeOut,
|
|
@@ -9593,7 +9595,7 @@ const cssVarTokeniser = {
|
|
|
9593
9595
|
regex: cssVariableRegex,
|
|
9594
9596
|
countKey: "Vars",
|
|
9595
9597
|
token: "${v}",
|
|
9596
|
-
parse: noop$
|
|
9598
|
+
parse: noop$1,
|
|
9597
9599
|
};
|
|
9598
9600
|
const colorTokeniser = {
|
|
9599
9601
|
regex: colorRegex,
|
|
@@ -9762,7 +9764,7 @@ function createMixers(output, ease, customMixer) {
|
|
|
9762
9764
|
for (let i = 0; i < numMixers; i++) {
|
|
9763
9765
|
let mixer = mixerFactory(output[i], output[i + 1]);
|
|
9764
9766
|
if (ease) {
|
|
9765
|
-
const easingFunction = Array.isArray(ease) ? ease[i] || noop$
|
|
9767
|
+
const easingFunction = Array.isArray(ease) ? ease[i] || noop$1 : ease;
|
|
9766
9768
|
mixer = pipe(easingFunction, mixer);
|
|
9767
9769
|
}
|
|
9768
9770
|
mixers.push(mixer);
|
|
@@ -10653,7 +10655,7 @@ function createAcceleratedAnimation(value, valueName, { onUpdate, onComplete, ..
|
|
|
10653
10655
|
attachTimeline(timeline) {
|
|
10654
10656
|
animation.timeline = timeline;
|
|
10655
10657
|
animation.onfinish = null;
|
|
10656
|
-
return noop$
|
|
10658
|
+
return noop$1;
|
|
10657
10659
|
},
|
|
10658
10660
|
get time() {
|
|
10659
10661
|
return millisecondsToSeconds(animation.currentTime || 0);
|
|
@@ -10723,15 +10725,15 @@ function createInstantAnimation({ keyframes, delay, onUpdate, onComplete, }) {
|
|
|
10723
10725
|
time: 0,
|
|
10724
10726
|
speed: 1,
|
|
10725
10727
|
duration: 0,
|
|
10726
|
-
play: (noop$
|
|
10727
|
-
pause: (noop$
|
|
10728
|
-
stop: (noop$
|
|
10728
|
+
play: (noop$1),
|
|
10729
|
+
pause: (noop$1),
|
|
10730
|
+
stop: (noop$1),
|
|
10729
10731
|
then: (resolve) => {
|
|
10730
10732
|
resolve();
|
|
10731
10733
|
return Promise.resolve();
|
|
10732
10734
|
},
|
|
10733
|
-
cancel: (noop$
|
|
10734
|
-
complete: (noop$
|
|
10735
|
+
cancel: (noop$1),
|
|
10736
|
+
complete: (noop$1),
|
|
10735
10737
|
};
|
|
10736
10738
|
};
|
|
10737
10739
|
return delay
|
|
@@ -13009,8 +13011,8 @@ function getCurrentDirection(offset, lockThreshold = 10) {
|
|
|
13009
13011
|
class DragGesture extends Feature {
|
|
13010
13012
|
constructor(node) {
|
|
13011
13013
|
super(node);
|
|
13012
|
-
this.removeGroupControls = noop$
|
|
13013
|
-
this.removeListeners = noop$
|
|
13014
|
+
this.removeGroupControls = noop$1;
|
|
13015
|
+
this.removeListeners = noop$1;
|
|
13014
13016
|
this.controls = new VisualElementDragControls(node);
|
|
13015
13017
|
}
|
|
13016
13018
|
mount() {
|
|
@@ -13020,7 +13022,7 @@ class DragGesture extends Feature {
|
|
|
13020
13022
|
if (dragControls) {
|
|
13021
13023
|
this.removeGroupControls = dragControls.subscribe(this.controls);
|
|
13022
13024
|
}
|
|
13023
|
-
this.removeListeners = this.controls.addListeners() || noop$
|
|
13025
|
+
this.removeListeners = this.controls.addListeners() || noop$1;
|
|
13024
13026
|
}
|
|
13025
13027
|
unmount() {
|
|
13026
13028
|
this.removeGroupControls();
|
|
@@ -13036,7 +13038,7 @@ const asyncHandler = (handler) => (event, info) => {
|
|
|
13036
13038
|
class PanGesture extends Feature {
|
|
13037
13039
|
constructor() {
|
|
13038
13040
|
super(...arguments);
|
|
13039
|
-
this.removePointerDownListener = noop$
|
|
13041
|
+
this.removePointerDownListener = noop$1;
|
|
13040
13042
|
}
|
|
13041
13043
|
onPointerDown(pointerDownEvent) {
|
|
13042
13044
|
this.session = new PanSession(pointerDownEvent, this.createPanHandlers(), { transformPagePoint: this.node.getTransformPagePoint() });
|
|
@@ -13384,7 +13386,7 @@ function getRadius(values, radiusName) {
|
|
|
13384
13386
|
// )(p)
|
|
13385
13387
|
// }
|
|
13386
13388
|
const easeCrossfadeIn = compress(0, 0.5, circOut);
|
|
13387
|
-
const easeCrossfadeOut = compress(0.5, 0.95, noop$
|
|
13389
|
+
const easeCrossfadeOut = compress(0.5, 0.95, noop$1);
|
|
13388
13390
|
function compress(min, max, easing) {
|
|
13389
13391
|
return (p) => {
|
|
13390
13392
|
// Could replace ifs with clamp
|
|
@@ -15141,7 +15143,7 @@ const userAgentContains = (string) => typeof navigator !== "undefined" &&
|
|
|
15141
15143
|
*/
|
|
15142
15144
|
const roundPoint = userAgentContains("applewebkit/") && !userAgentContains("chrome/")
|
|
15143
15145
|
? Math.round
|
|
15144
|
-
: noop$
|
|
15146
|
+
: noop$1;
|
|
15145
15147
|
function roundAxis(axis) {
|
|
15146
15148
|
// Round to the nearest .5 pixels to support subpixel layouts
|
|
15147
15149
|
axis.min = roundPoint(axis.min);
|
|
@@ -16581,7 +16583,7 @@ const BaseAvatar = styled__default.default(Image)`
|
|
|
16581
16583
|
})}
|
|
16582
16584
|
${sx}
|
|
16583
16585
|
`;
|
|
16584
|
-
var index$
|
|
16586
|
+
var index$9 = /*#__PURE__*/React.forwardRef(Avatar);
|
|
16585
16587
|
|
|
16586
16588
|
const BadgeAttacher = ({
|
|
16587
16589
|
children,
|
|
@@ -16991,7 +16993,7 @@ const BreadcrumbsItemWrapper = styled__default.default.span`
|
|
|
16991
16993
|
}
|
|
16992
16994
|
}
|
|
16993
16995
|
`;
|
|
16994
|
-
var index$
|
|
16996
|
+
var index$8 = Object.assign(Breadcrumbs, {
|
|
16995
16997
|
Item: BreadcrumbsItem
|
|
16996
16998
|
});
|
|
16997
16999
|
|
|
@@ -17937,7 +17939,7 @@ const DatagridWrapper = styled__default.default.div`
|
|
|
17937
17939
|
const BaseDatagrid = styled__default.default.div`
|
|
17938
17940
|
width: inherit;
|
|
17939
17941
|
`;
|
|
17940
|
-
var index$
|
|
17942
|
+
var index$7 = Object.assign(Datagrid, {
|
|
17941
17943
|
Header: DatagridHeader,
|
|
17942
17944
|
Subheader: DatagridSubheader,
|
|
17943
17945
|
Body: DatagridBody,
|
|
@@ -18284,7 +18286,7 @@ function isTabbable(elem, strict = false) {
|
|
|
18284
18286
|
}
|
|
18285
18287
|
|
|
18286
18288
|
let signalSupported = false;
|
|
18287
|
-
function noop
|
|
18289
|
+
function noop() {}
|
|
18288
18290
|
try {
|
|
18289
18291
|
const options = Object.create({}, {
|
|
18290
18292
|
signal: {
|
|
@@ -18293,8 +18295,8 @@ try {
|
|
|
18293
18295
|
}
|
|
18294
18296
|
}
|
|
18295
18297
|
});
|
|
18296
|
-
window.addEventListener('test', noop
|
|
18297
|
-
window.removeEventListener('test', noop
|
|
18298
|
+
window.addEventListener('test', noop, options);
|
|
18299
|
+
window.removeEventListener('test', noop, options);
|
|
18298
18300
|
} catch (e) {}
|
|
18299
18301
|
function featureSupported() {
|
|
18300
18302
|
return signalSupported;
|
|
@@ -19000,6 +19002,7 @@ const Dialog = ({
|
|
|
19000
19002
|
children,
|
|
19001
19003
|
isOpen,
|
|
19002
19004
|
onDismiss,
|
|
19005
|
+
isOutsideClickDismissable = true,
|
|
19003
19006
|
size = 'm',
|
|
19004
19007
|
initialFocusRef,
|
|
19005
19008
|
sx
|
|
@@ -19028,13 +19031,13 @@ const Dialog = ({
|
|
|
19028
19031
|
disabled: !isOpen
|
|
19029
19032
|
});
|
|
19030
19033
|
React.useEffect(() => {
|
|
19031
|
-
if (isOpen) {
|
|
19034
|
+
if (isOpen && isOutsideClickDismissable) {
|
|
19032
19035
|
document.addEventListener('click', handleOutsideClick);
|
|
19033
19036
|
return () => {
|
|
19034
19037
|
document.removeEventListener('click', handleOutsideClick);
|
|
19035
19038
|
};
|
|
19036
19039
|
}
|
|
19037
|
-
}, [isOpen, handleOutsideClick]);
|
|
19040
|
+
}, [isOpen, isOutsideClickDismissable, handleOutsideClick]);
|
|
19038
19041
|
return isOpen ? /*#__PURE__*/jsxRuntimeExports.jsxs(View, {
|
|
19039
19042
|
sx: {
|
|
19040
19043
|
position: 'fixed',
|
|
@@ -19075,6 +19078,12 @@ const Dialog = ({
|
|
|
19075
19078
|
marginX: [0, 0, 'auto'],
|
|
19076
19079
|
marginY: 'auto',
|
|
19077
19080
|
borderRadius: ['none', 'none', 'l']
|
|
19081
|
+
} : size === 'full' ? {
|
|
19082
|
+
height: ['100%', '100%', 'calc(100vh - 40px)'],
|
|
19083
|
+
width: ['100%', '100%', 'calc(100vw - 40px)'],
|
|
19084
|
+
marginX: [0, 0, 'auto'],
|
|
19085
|
+
marginY: 'auto',
|
|
19086
|
+
borderRadius: ['none', 'none', 'l']
|
|
19078
19087
|
} : {}),
|
|
19079
19088
|
...sx
|
|
19080
19089
|
},
|
|
@@ -19119,7 +19128,7 @@ const BaseDialog = styled__default.default.div(() => ({
|
|
|
19119
19128
|
overflow: 'hidden',
|
|
19120
19129
|
margin: 'auto'
|
|
19121
19130
|
}), sx);
|
|
19122
|
-
var index$
|
|
19131
|
+
var index$6 = Object.assign( /*#__PURE__*/React.forwardRef(Dialog), {
|
|
19123
19132
|
UnstyledHeader: UnstyledDialogHeader,
|
|
19124
19133
|
UnstyledBody: UnstyledDialogBody,
|
|
19125
19134
|
UnstyledFooter: UnstyledDialogFooter,
|
|
@@ -20696,7 +20705,7 @@ const computePosition = (reference, floating, options) => {
|
|
|
20696
20705
|
});
|
|
20697
20706
|
};
|
|
20698
20707
|
|
|
20699
|
-
var index$
|
|
20708
|
+
var index$5 = typeof document !== 'undefined' ? React.useLayoutEffect : React.useEffect;
|
|
20700
20709
|
|
|
20701
20710
|
// Fork of `fast-deep-equal` that only does the comparisons we need and compares
|
|
20702
20711
|
// functions
|
|
@@ -20761,7 +20770,7 @@ function roundByDPR(element, value) {
|
|
|
20761
20770
|
|
|
20762
20771
|
function useLatestRef(value) {
|
|
20763
20772
|
const ref = React__namespace.useRef(value);
|
|
20764
|
-
index$
|
|
20773
|
+
index$5(() => {
|
|
20765
20774
|
ref.current = value;
|
|
20766
20775
|
});
|
|
20767
20776
|
return ref;
|
|
@@ -20846,7 +20855,7 @@ function useFloating(options) {
|
|
|
20846
20855
|
}
|
|
20847
20856
|
});
|
|
20848
20857
|
}, [latestMiddleware, placement, strategy, platformRef]);
|
|
20849
|
-
index$
|
|
20858
|
+
index$5(() => {
|
|
20850
20859
|
if (open === false && dataRef.current.isPositioned) {
|
|
20851
20860
|
dataRef.current.isPositioned = false;
|
|
20852
20861
|
setData(data => ({
|
|
@@ -20856,13 +20865,13 @@ function useFloating(options) {
|
|
|
20856
20865
|
}
|
|
20857
20866
|
}, [open]);
|
|
20858
20867
|
const isMountedRef = React__namespace.useRef(false);
|
|
20859
|
-
index$
|
|
20868
|
+
index$5(() => {
|
|
20860
20869
|
isMountedRef.current = true;
|
|
20861
20870
|
return () => {
|
|
20862
20871
|
isMountedRef.current = false;
|
|
20863
20872
|
};
|
|
20864
20873
|
}, []);
|
|
20865
|
-
index$
|
|
20874
|
+
index$5(() => {
|
|
20866
20875
|
if (referenceEl) referenceRef.current = referenceEl;
|
|
20867
20876
|
if (floatingEl) floatingRef.current = floatingEl;
|
|
20868
20877
|
if (referenceEl && floatingEl) {
|
|
@@ -21511,7 +21520,7 @@ const SearchSelectInput = ({
|
|
|
21511
21520
|
id: id,
|
|
21512
21521
|
ref: labelInputRef,
|
|
21513
21522
|
readOnly: true,
|
|
21514
|
-
onChange: noop$
|
|
21523
|
+
onChange: noop$2,
|
|
21515
21524
|
autoComplete: 'off',
|
|
21516
21525
|
tabIndex: -1,
|
|
21517
21526
|
onClick: e => {
|
|
@@ -22749,78 +22758,6 @@ function values(object) {
|
|
|
22749
22758
|
var lodash_toarray = toArray;
|
|
22750
22759
|
var toArray$1 = /*@__PURE__*/getDefaultExportFromCjs(lodash_toarray);
|
|
22751
22760
|
|
|
22752
|
-
function _extends() {
|
|
22753
|
-
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
|
22754
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
22755
|
-
var source = arguments[i];
|
|
22756
|
-
for (var key in source) {
|
|
22757
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
22758
|
-
target[key] = source[key];
|
|
22759
|
-
}
|
|
22760
|
-
}
|
|
22761
|
-
}
|
|
22762
|
-
return target;
|
|
22763
|
-
};
|
|
22764
|
-
return _extends.apply(this, arguments);
|
|
22765
|
-
}
|
|
22766
|
-
|
|
22767
|
-
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
22768
|
-
if (source == null) return {};
|
|
22769
|
-
var target = {};
|
|
22770
|
-
var sourceKeys = Object.keys(source);
|
|
22771
|
-
var key, i;
|
|
22772
|
-
for (i = 0; i < sourceKeys.length; i++) {
|
|
22773
|
-
key = sourceKeys[i];
|
|
22774
|
-
if (excluded.indexOf(key) >= 0) continue;
|
|
22775
|
-
target[key] = source[key];
|
|
22776
|
-
}
|
|
22777
|
-
return target;
|
|
22778
|
-
}
|
|
22779
|
-
|
|
22780
|
-
var updateRef = function updateRef(ref, value) {
|
|
22781
|
-
if (typeof ref === 'function') {
|
|
22782
|
-
ref(value);
|
|
22783
|
-
return;
|
|
22784
|
-
}
|
|
22785
|
-
ref.current = value;
|
|
22786
|
-
};
|
|
22787
|
-
var useComposedRef = function useComposedRef(libRef, userRef) {
|
|
22788
|
-
var prevUserRef = React.useRef();
|
|
22789
|
-
return React.useCallback(function (instance) {
|
|
22790
|
-
libRef.current = instance;
|
|
22791
|
-
if (prevUserRef.current) {
|
|
22792
|
-
updateRef(prevUserRef.current, null);
|
|
22793
|
-
}
|
|
22794
|
-
prevUserRef.current = userRef;
|
|
22795
|
-
if (!userRef) {
|
|
22796
|
-
return;
|
|
22797
|
-
}
|
|
22798
|
-
updateRef(userRef, instance);
|
|
22799
|
-
}, [userRef]);
|
|
22800
|
-
};
|
|
22801
|
-
|
|
22802
|
-
var noop = function noop() {};
|
|
22803
|
-
var _excluded = ["cacheMeasurements", "maxRows", "minRows", "onChange", "onHeightChange"];
|
|
22804
|
-
var TextareaAutosize = function TextareaAutosize(_ref, userRef) {
|
|
22805
|
-
_ref.cacheMeasurements;
|
|
22806
|
-
_ref.maxRows;
|
|
22807
|
-
_ref.minRows;
|
|
22808
|
-
var _ref$onChange = _ref.onChange,
|
|
22809
|
-
onChange = _ref$onChange === void 0 ? noop : _ref$onChange;
|
|
22810
|
-
_ref.onHeightChange;
|
|
22811
|
-
var props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
22812
|
-
props.value !== undefined;
|
|
22813
|
-
var libRef = React__namespace.useRef(null);
|
|
22814
|
-
var ref = useComposedRef(libRef, userRef);
|
|
22815
|
-
React__namespace.useRef(0);
|
|
22816
|
-
React__namespace.useRef();
|
|
22817
|
-
return /*#__PURE__*/React__namespace.createElement("textarea", _extends({}, props, {
|
|
22818
|
-
onChange: onChange,
|
|
22819
|
-
ref: ref
|
|
22820
|
-
}));
|
|
22821
|
-
};
|
|
22822
|
-
var index$5 = /* #__PURE__ */React__namespace.forwardRef(TextareaAutosize);
|
|
22823
|
-
|
|
22824
22761
|
const Textarea = /*#__PURE__*/React.forwardRef(({
|
|
22825
22762
|
validationStatus,
|
|
22826
22763
|
disabled,
|
|
@@ -22847,7 +22784,7 @@ const Textarea = /*#__PURE__*/React.forwardRef(({
|
|
|
22847
22784
|
disabled: disabled,
|
|
22848
22785
|
onClick: focusInput,
|
|
22849
22786
|
validationStatus: validationStatus,
|
|
22850
|
-
children: [/*#__PURE__*/jsxRuntimeExports.jsx(
|
|
22787
|
+
children: [/*#__PURE__*/jsxRuntimeExports.jsx(ReactTextareaAutosize__default.default, {
|
|
22851
22788
|
...props,
|
|
22852
22789
|
ref: e => {
|
|
22853
22790
|
isFunction$1(ref) ? ref(e) : null;
|
|
@@ -23341,9 +23278,9 @@ const Pagination = ({
|
|
|
23341
23278
|
edgePageCount = 1,
|
|
23342
23279
|
type = 'default',
|
|
23343
23280
|
sx,
|
|
23344
|
-
onPageClick = noop$
|
|
23345
|
-
onPreviousClick = noop$
|
|
23346
|
-
onNextClick = noop$
|
|
23281
|
+
onPageClick = noop$2,
|
|
23282
|
+
onPreviousClick = noop$2,
|
|
23283
|
+
onNextClick = noop$2,
|
|
23347
23284
|
renderPage = (page, i) => /*#__PURE__*/jsxRuntimeExports.jsx(PaginationPage, {
|
|
23348
23285
|
type: 'button',
|
|
23349
23286
|
onClick: () => onPageClick(page, i),
|
|
@@ -25419,18 +25356,18 @@ const useOutsideClick = ({
|
|
|
25419
25356
|
});
|
|
25420
25357
|
};
|
|
25421
25358
|
|
|
25422
|
-
exports.ActionList = index$
|
|
25359
|
+
exports.ActionList = index$a;
|
|
25423
25360
|
exports.AnimatePresence = AnimatePresence;
|
|
25424
|
-
exports.Avatar = index$
|
|
25361
|
+
exports.Avatar = index$9;
|
|
25425
25362
|
exports.BadgeAttacher = BadgeAttacher;
|
|
25426
|
-
exports.Breadcrumbs = index$
|
|
25363
|
+
exports.Breadcrumbs = index$8;
|
|
25427
25364
|
exports.Button = Button;
|
|
25428
25365
|
exports.Checkbox = Checkbox$1;
|
|
25429
25366
|
exports.Chip = Chip;
|
|
25430
25367
|
exports.CounterBadge = CounterBadge;
|
|
25431
|
-
exports.Datagrid = index$
|
|
25368
|
+
exports.Datagrid = index$7;
|
|
25432
25369
|
exports.DescriptionList = DescriptionList;
|
|
25433
|
-
exports.Dialog = index$
|
|
25370
|
+
exports.Dialog = index$6;
|
|
25434
25371
|
exports.EmptyState = EmptyState;
|
|
25435
25372
|
exports.EnigmaUI = index;
|
|
25436
25373
|
exports.Flash = Flash;
|