@indico-data/design-system 1.0.39 → 1.0.40
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/.vscode/extensions.json +7 -0
- package/.vscode/settings.json +10 -0
- package/.yarn/releases/yarn-4.0.2.cjs +893 -0
- package/.yarnrc.yml +1 -1
- package/lib/components/Accordion/Accordion.styles.d.ts +2 -2
- package/lib/components/Icon/storyHelpers.d.ts +3 -6
- package/lib/components/ListTable/Header/Header.styles.d.ts +1 -2
- package/lib/components/ListTable/ListTable.styles.d.ts +1 -2
- package/lib/components/Pagination/Pagination.styles.d.ts +1 -2
- package/lib/components/basic-section/Section/Section.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -2
- package/lib/components/buttons/Button/Button.styles.d.ts +1 -2
- package/lib/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
- package/lib/components/buttons/IconButton/IconButton.styles.d.ts +2 -4
- package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -4
- package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
- package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -2
- package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
- package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -2
- package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -2
- package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -4
- package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -2
- package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -2
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -2
- package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +477 -471
- package/lib/index.js.map +1 -1
- package/package.json +8 -8
- package/rollup.config.mjs +2 -0
- package/.husky/pre-commit +0 -4
- package/.yarn/releases/yarn-classic.cjs +0 -179386
package/lib/index.js
CHANGED
|
@@ -6,6 +6,12 @@ require('react-dom/client');
|
|
|
6
6
|
var ReactSelect = require('react-select');
|
|
7
7
|
var reactRouterDom = require('react-router-dom');
|
|
8
8
|
|
|
9
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
10
|
+
|
|
11
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
12
|
+
var styled__default = /*#__PURE__*/_interopDefaultCompat(styled);
|
|
13
|
+
var ReactSelect__default = /*#__PURE__*/_interopDefaultCompat(ReactSelect);
|
|
14
|
+
|
|
9
15
|
// This is used for "micro animations" - general purpose values to give the app a general feel
|
|
10
16
|
// By no means is this the rule for building out custom animations for various parts of the application
|
|
11
17
|
const animation = {
|
|
@@ -7567,16 +7573,16 @@ const MarginPadding = styled.createGlobalStyle `
|
|
|
7567
7573
|
}
|
|
7568
7574
|
`;
|
|
7569
7575
|
|
|
7570
|
-
const GlobalStyles = () => (
|
|
7571
|
-
|
|
7572
|
-
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
7576
|
-
|
|
7577
|
-
|
|
7578
|
-
|
|
7579
|
-
|
|
7576
|
+
const GlobalStyles = () => (React__default.default.createElement(React__default.default.Fragment, null,
|
|
7577
|
+
React__default.default.createElement(UtilityClasses, null),
|
|
7578
|
+
React__default.default.createElement(Buttons, null),
|
|
7579
|
+
React__default.default.createElement(Forms, null),
|
|
7580
|
+
React__default.default.createElement(Layout, null),
|
|
7581
|
+
React__default.default.createElement(Lists, null),
|
|
7582
|
+
React__default.default.createElement(Media, null),
|
|
7583
|
+
React__default.default.createElement(Tables, null),
|
|
7584
|
+
React__default.default.createElement(Typography, null),
|
|
7585
|
+
React__default.default.createElement(MarginPadding, null)));
|
|
7580
7586
|
|
|
7581
7587
|
var faFileLines = {
|
|
7582
7588
|
prefix: 'far',
|
|
@@ -8047,270 +8053,270 @@ const faIcons = {
|
|
|
8047
8053
|
};
|
|
8048
8054
|
function generateSvg(iconDefinition) {
|
|
8049
8055
|
const { icon } = iconDefinition;
|
|
8050
|
-
return (
|
|
8051
|
-
|
|
8056
|
+
return (React__default.default.createElement("svg", { fill: "currentColor", viewBox: `0 0 ${icon[0]} ${icon[1]}` },
|
|
8057
|
+
React__default.default.createElement("path", { d: `${icon[4]}` })));
|
|
8052
8058
|
}
|
|
8053
8059
|
|
|
8054
8060
|
const indicons = {
|
|
8055
|
-
'indico-o-white': (
|
|
8056
|
-
|
|
8057
|
-
account: (
|
|
8058
|
-
|
|
8059
|
-
address: (
|
|
8060
|
-
|
|
8061
|
-
'api-doc': (
|
|
8062
|
-
|
|
8063
|
-
'arrow-dots': (
|
|
8064
|
-
|
|
8065
|
-
'arrow-down': (
|
|
8066
|
-
|
|
8067
|
-
|
|
8068
|
-
'arrow-up-circle': (
|
|
8069
|
-
|
|
8070
|
-
'arrows-cursor': (
|
|
8071
|
-
|
|
8072
|
-
branch: (
|
|
8073
|
-
|
|
8074
|
-
'check-circle': (
|
|
8075
|
-
|
|
8076
|
-
check: (
|
|
8077
|
-
|
|
8078
|
-
checkbox: (
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
'chevron-down': (
|
|
8083
|
-
|
|
8084
|
-
'chevron-left': (
|
|
8085
|
-
|
|
8086
|
-
'chevron-right': (
|
|
8087
|
-
|
|
8088
|
-
'chevron-up': (
|
|
8089
|
-
|
|
8090
|
-
'classification-document': (
|
|
8091
|
-
|
|
8092
|
-
'classification-image': (
|
|
8093
|
-
|
|
8094
|
-
'classification-page': (
|
|
8095
|
-
|
|
8096
|
-
'classify-and-unbundle': (
|
|
8097
|
-
|
|
8098
|
-
clipboard: (
|
|
8099
|
-
|
|
8100
|
-
'coffee-1': (
|
|
8101
|
-
|
|
8102
|
-
'coffee-2': (
|
|
8103
|
-
|
|
8104
|
-
'coffee-fail': (
|
|
8105
|
-
|
|
8106
|
-
coffeecup: (
|
|
8107
|
-
|
|
8108
|
-
coffeesteam: (
|
|
8109
|
-
|
|
8110
|
-
'company-name': (
|
|
8111
|
-
|
|
8112
|
-
'confidence-bar-1': (
|
|
8113
|
-
|
|
8114
|
-
'confidence-bar-2': (
|
|
8115
|
-
|
|
8116
|
-
'confidence-bar-3': (
|
|
8117
|
-
|
|
8118
|
-
'confidence-bar-4': (
|
|
8119
|
-
|
|
8120
|
-
'confidence-bars': (
|
|
8121
|
-
|
|
8122
|
-
configure: (
|
|
8123
|
-
|
|
8124
|
-
crowdlabel: (
|
|
8125
|
-
|
|
8126
|
-
currency: (
|
|
8127
|
-
|
|
8128
|
-
dashboard: (
|
|
8129
|
-
|
|
8130
|
-
'data-and-access': (
|
|
8131
|
-
|
|
8132
|
-
database: (
|
|
8133
|
-
|
|
8134
|
-
date: (
|
|
8135
|
-
|
|
8136
|
-
draggable: (
|
|
8137
|
-
|
|
8138
|
-
droplet: (
|
|
8139
|
-
|
|
8140
|
-
edit: (
|
|
8141
|
-
|
|
8142
|
-
education: (
|
|
8143
|
-
|
|
8144
|
-
ellipsis: (
|
|
8145
|
-
|
|
8146
|
-
'elmos-fire': (
|
|
8147
|
-
|
|
8148
|
-
email: (
|
|
8149
|
-
|
|
8150
|
-
enterprise: (
|
|
8151
|
-
|
|
8152
|
-
extraction: (
|
|
8153
|
-
|
|
8154
|
-
eye: (
|
|
8155
|
-
|
|
8156
|
-
file: (
|
|
8157
|
-
|
|
8158
|
-
fileHappy: (
|
|
8159
|
-
|
|
8160
|
-
filter: (
|
|
8161
|
-
|
|
8162
|
-
'filter-outline': (
|
|
8163
|
-
|
|
8164
|
-
folder: (
|
|
8165
|
-
|
|
8166
|
-
form: (
|
|
8167
|
-
|
|
8168
|
-
gallery: (
|
|
8169
|
-
|
|
8170
|
-
graphiql: (
|
|
8171
|
-
|
|
8172
|
-
happy: (
|
|
8173
|
-
|
|
8174
|
-
'help-solid': (
|
|
8175
|
-
|
|
8176
|
-
help: (
|
|
8177
|
-
|
|
8178
|
-
highlight: (
|
|
8179
|
-
|
|
8180
|
-
'highlight-outline': (
|
|
8181
|
-
|
|
8182
|
-
'indico-logo-white': (
|
|
8183
|
-
|
|
8184
|
-
'indico-o': (
|
|
8185
|
-
|
|
8186
|
-
info: (
|
|
8187
|
-
|
|
8188
|
-
kabob: (
|
|
8189
|
-
|
|
8190
|
-
key: (
|
|
8191
|
-
|
|
8192
|
-
label: (
|
|
8193
|
-
|
|
8194
|
-
'layout-complex': (
|
|
8195
|
-
|
|
8196
|
-
'layout-simple': (
|
|
8197
|
-
|
|
8198
|
-
location: (
|
|
8199
|
-
|
|
8200
|
-
lock: (
|
|
8201
|
-
|
|
8202
|
-
menu: (
|
|
8203
|
-
|
|
8204
|
-
'model-import': (
|
|
8205
|
-
|
|
8206
|
-
'model-starter': (
|
|
8207
|
-
|
|
8208
|
-
moon: (
|
|
8209
|
-
|
|
8210
|
-
moonbow: (
|
|
8211
|
-
|
|
8212
|
-
'no-format': (
|
|
8213
|
-
|
|
8214
|
-
'object-detection': (
|
|
8215
|
-
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
|
-
organizations: (
|
|
8223
|
-
|
|
8224
|
-
output: (
|
|
8225
|
-
|
|
8226
|
-
'page-thumbnail': (
|
|
8227
|
-
|
|
8228
|
-
'pay-as-you-go': (
|
|
8229
|
-
|
|
8230
|
-
person: (
|
|
8231
|
-
|
|
8232
|
-
phone: (
|
|
8233
|
-
|
|
8234
|
-
pin: (
|
|
8235
|
-
|
|
8236
|
-
plus: (
|
|
8237
|
-
|
|
8238
|
-
pointer: (
|
|
8239
|
-
|
|
8240
|
-
popup: (
|
|
8241
|
-
|
|
8242
|
-
price: (
|
|
8243
|
-
|
|
8244
|
-
'radio-button': (
|
|
8245
|
-
|
|
8246
|
-
|
|
8247
|
-
recruiter: (
|
|
8248
|
-
|
|
8249
|
-
regex: (
|
|
8250
|
-
|
|
8251
|
-
reject: (
|
|
8252
|
-
|
|
8253
|
-
repair: (
|
|
8254
|
-
|
|
8255
|
-
research: (
|
|
8256
|
-
|
|
8257
|
-
retrain: (
|
|
8258
|
-
|
|
8259
|
-
sad: (
|
|
8260
|
-
|
|
8261
|
-
search: (
|
|
8262
|
-
|
|
8263
|
-
shrug: (
|
|
8264
|
-
|
|
8265
|
-
signature: (
|
|
8266
|
-
|
|
8267
|
-
|
|
8268
|
-
|
|
8269
|
-
'sort-down': (
|
|
8270
|
-
|
|
8271
|
-
split: (
|
|
8272
|
-
|
|
8273
|
-
'step-forward': (
|
|
8274
|
-
|
|
8275
|
-
sun: (
|
|
8276
|
-
|
|
8277
|
-
surround: (
|
|
8278
|
-
|
|
8279
|
-
'surround-outline': (
|
|
8280
|
-
|
|
8281
|
-
swagger: (
|
|
8282
|
-
|
|
8283
|
-
text: (
|
|
8284
|
-
|
|
8285
|
-
|
|
8286
|
-
'thumbs-down': (
|
|
8287
|
-
|
|
8288
|
-
'thumbs-up': (
|
|
8289
|
-
|
|
8290
|
-
time: (
|
|
8291
|
-
|
|
8292
|
-
trash: (
|
|
8293
|
-
|
|
8294
|
-
unlock: (
|
|
8295
|
-
|
|
8296
|
-
upload: (
|
|
8297
|
-
|
|
8298
|
-
url: (
|
|
8299
|
-
|
|
8300
|
-
user: (
|
|
8301
|
-
|
|
8302
|
-
wand: (
|
|
8303
|
-
|
|
8304
|
-
warning: (
|
|
8305
|
-
|
|
8306
|
-
workflows: (
|
|
8307
|
-
|
|
8308
|
-
'x-close': (
|
|
8309
|
-
|
|
8310
|
-
'zoom-in': (
|
|
8311
|
-
|
|
8312
|
-
'zoom-out': (
|
|
8313
|
-
|
|
8061
|
+
'indico-o-white': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8062
|
+
React__default.default.createElement("path", { d: "M100 50c0 27.6-22.4 50-50 50S0 77.6 0 50 22.4 0 50 0s50 22.4 50 50zM50 19.4c-16.9 0-30.6 13.7-30.6 30.6S33.1 80.6 50 80.6 80.6 66.9 80.6 50 66.9 19.4 50 19.4zm0 21.7c-4.9 0-8.9 4-8.9 8.9s4 8.9 8.9 8.9 8.9-4 8.9-8.9-4-8.9-8.9-8.9z" }))),
|
|
8063
|
+
account: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8064
|
+
React__default.default.createElement("path", { d: "M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 8c23.2 0 42 18.8 42 42 0 9.9-3.4 19-9.2 26.2C75.6 65.8 63.6 59 50 59s-25.6 6.8-32.8 17.2C11.4 69 8 59.9 8 50 8 26.8 26.8 8 50 8zM22.9 82c5.7-9 15.7-15 27.1-15s21.4 6 27.1 15C69.8 88.2 60.3 92 50 92s-19.8-3.8-27.1-10zM50 56c11.6 0 21-9.4 21-21s-9.4-21-21-21-21 9.4-21 21 9.4 21 21 21zm0-34c7.2 0 13 5.8 13 13s-5.8 13-13 13-13-5.8-13-13 5.8-13 13-13z" }))),
|
|
8065
|
+
address: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8066
|
+
React__default.default.createElement("path", { d: "m24 33.7q5.35-4.3 8.1-8.25t2.75-7.5q0-3.05-1.1-5.175t-2.75-3.475-3.55-1.95-3.45-0.6-3.45 0.6-3.55 1.95-2.75 3.475-1.1 5.175q0 3.55 2.75 7.5t8.1 8.25zm0 2.85q-6.65-5-9.9-9.6t-3.25-9q0-3.35 1.2-5.85t3.075-4.2 4.225-2.55 4.65-0.85 4.65 0.85 4.225 2.55 3.075 4.2 1.2 5.85q0 4.4-3.25 9t-9.9 9.6zm0-15.8q1.3 0 2.225-0.925t0.925-2.225-0.925-2.2-2.225-0.9-2.225 0.925-0.925 2.225 0.925 2.2 2.225 0.9zm-13.15 22.75v-2.25h26.3v2.25zm13.15-25.55z" }))),
|
|
8067
|
+
'api-doc': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8068
|
+
React__default.default.createElement("path", { d: "M50 10c22.1 0 40 17.9 40 40S72.1 90 50 90 10 72.1 10 50s17.9-40 40-40m0-10C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm33.3 47.5L69.1 33.3c-1.3-1.3-3.6-1.3-4.9 0-.7.7-1 1.6-1 2.4 0 .8.4 1.8 1 2.4L76 49.9 64.2 61.7c-.7.7-1 1.5-1 2.4 0 .9.4 1.8 1 2.4s1.5 1 2.4 1c.9 0 1.8-.4 2.4-1l14.2-14.2c.7-.7 1-1.5 1-2.4.1-.9-.3-1.8-.9-2.4zM24 49.9l11.8-11.7c1.4-1.4 1.4-3.7 0-5.1-1.3-1.3-3.6-1.3-4.9 0L16.7 47.5c-.7.7-1 1.6-1 2.4s.4 1.8 1 2.4l14.2 14.3c.7.7 1.5 1 2.4 1 .9 0 1.8-.4 2.4-1 .7-.7 1-1.6 1-2.4 0-.9-.4-1.8-1-2.4L24 49.9zM58.7 31c-.4-.8-1.2-1.4-2.2-1.8-1.9-.6-3.8.4-4.3 2.2L41.1 66.5c-.2.9-.2 1.8.2 2.6s1.1 1.4 2 1.7c.4.2.7.2 1.2.2.2 0 .4 0 .7-.1 1.2-.3 2.3-1.2 2.7-2.4l11.4-35c-.1-.9-.1-1.8-.6-2.5z" }))),
|
|
8069
|
+
'arrow-dots': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8070
|
+
React__default.default.createElement("path", { d: "M19 10c0 5-4 9-9 9s-9-4-9-9 4-9 9-9 9 4 9 9zm11-9c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zM30 21c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zM50 41c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zM30 61c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zM10 81c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm20 0c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9z" }))),
|
|
8071
|
+
'arrow-down': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8072
|
+
React__default.default.createElement("path", { d: "M41.4,69.3L41.4,69.3L41.4,69.3z" }),
|
|
8073
|
+
React__default.default.createElement("path", { id: "arrow", d: "M7.4,59l39.8,39.7c1.7,1.7,3.8,1.7,5.5,0L92.6,59c0.8-0.8,0.8-1.9,0-2.7l-2.6-2.6c-0.8-0.8-1.9-0.8-2.7,0\n L53.8,87.1V1.9C53.8,0.8,53,0,51.9,0h-3.7c-1.1,0-1.9,0.9-1.9,1.9v85.1L12.7,53.6c-0.8-0.8-1.9-0.8-2.7,0l-2.6,2.6\n C6.6,57,6.7,58.2,7.4,59z" }))),
|
|
8074
|
+
'arrow-up-circle': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8075
|
+
React__default.default.createElement("path", { d: "M100 50c0 27.6-22.4 50-50 50S0 77.6 0 50 22.4 0 50 0s50 22.4 50 50zm-28.6-6.1L53.3 25.8c-.5-.6-1.5-1.8-3.3-1.8-1.7 0-2.8 1.2-3.4 1.8L28.5 43.9c-1.4 1.4-1.4 3.7 0 5.1 1.4 1.4 3.7 1.4 5.1 0L46 36.6V70c0 2.2 1.8 4 4 4s4-1.8 4-4V36.6L66.3 49c1.4 1.4 3.7 1.4 5.1 0 1.4-1.4 1.4-3.7 0-5.1z" }))),
|
|
8076
|
+
'arrows-cursor': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8077
|
+
React__default.default.createElement("path", { d: "M68.8 83.2L53.3 98.6c-1.8 1.8-4.8 1.8-6.6 0L31.2 83.2c-3-3-.9-8 3.3-8h10V55.5H24.8v10c0 4.2-5 6.3-8 3.3L1.4 53.3c-1.8-1.8-1.8-4.8 0-6.6l15.5-15.5c3-3 8-.9 8 3.3v10h19.7V24.8h-10c-4.2 0-6.3-5-3.3-8L46.7 1.4c1.8-1.8 4.8-1.8 6.6 0l15.5 15.5c3 3 .9 8-3.3 8h-10v19.7h19.7v-10c0-4.2 5-6.3 8-3.3l15.5 15.5c1.8 1.8 1.8 4.8 0 6.6L83.2 68.8c-3 3-8 .9-8-3.3v-10H55.5v19.7h10c4.2 0 6.2 5 3.3 8z" }))),
|
|
8078
|
+
branch: (React__default.default.createElement("svg", { viewBox: "0 0 642 514" },
|
|
8079
|
+
React__default.default.createElement("path", { d: "M385 321H257c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V353c0-17.67-14.33-32-32-32zM193 33c0-17.67-14.33-32-32-32H33C15.33 1 1 15.33 1 33v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C212.98 301.98 233.4 289 257 289h.28L193 176.51V129h224V65H193V33zM609 1H481c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V33c0-17.67-14.33-32-32-32z", fill: "currentColor" }))),
|
|
8080
|
+
'check-circle': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8081
|
+
React__default.default.createElement("path", { d: "M100 50c0 27.6-22.4 50-50 50S0 77.6 0 50 22.4 0 50 0s50 22.4 50 50zM78 30.7c-.7-1-1.9-1.5-3.5-1.5-1.2 0-2.3.5-3.3 1.5C65 37 45.3 56.6 42.4 59.4L28.8 48c-1-.9-2.2-1.3-3.5-1.2-1.3.1-2.5.7-3.3 1.8-.9 1-1.3 2.2-1.2 3.5.1 1.3.7 2.5 1.8 3.3l16.8 14.2c.9.7 2 1.1 3.1 1.1 1.3 0 2.5-.5 3.4-1.4 6.8-6.6 28.7-28.7 32-32 1.8-1.7 1.8-4.6.1-6.6z" }))),
|
|
8082
|
+
check: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8083
|
+
React__default.default.createElement("path", { d: "M96.4 18.5c-1.4-1.6-3.4-2.4-6.3-2.4-2.1 0-4.3 1-6 2.7-10.9 11.1-41.6 41.6-46.7 46.7l-22-18c-1.8-1.6-4.1-2.3-6.4-2.1-2.3.2-4.4 1.3-6 3.1-3.2 3.7-2.8 9.2 1 12.4l27.9 23c1.6 1.3 3.6 2 5.6 2 2.3 0 4.6-.8 6.1-2.5 12-11.8 46.8-46.7 52.6-52.6 3.3-3.2 3.4-8.6.2-12.3z" }))),
|
|
8084
|
+
checkbox: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8085
|
+
React__default.default.createElement("g", { transform: "translate(1 1)" },
|
|
8086
|
+
React__default.default.createElement("path", { display: 'none', d: "m10.3 97.3c-2.8 0-5.1-1-7.1-2.9-1.9-1.9-2.9-4.3-2.9-7.1v-74.5c0-2.8 1-5.2 2.9-7.1s4.3-3 7.1-3h74.5c1.2 0 2.4 0.3 3.7 0.9s2.3 1.2 3 1.9l-7.8 7.8v-0.5h-73.4v74.5h74.5v-42l10.1-10.1v52.1c0 2.8-1 5.1-3 7.1-2 1.9-4.4 2.9-7.1 2.9h-74.5zm35.2-23.4-28-28 5.9-5.9 22.1 22.2 49-49 5.8 5.9-54.8 54.8z" }),
|
|
8087
|
+
React__default.default.createElement("path", { d: "M45.1,74.3L45.1,74.3H45L19.1,48.4l9.7-9.7L45.1,55L90.1,9.9l9.7,9.7L45.1,74.3z M81,51v32.5H13.9V16.4h57L84.5,2.9 c-0.6-0.1-1.2-0.1-1.7-0.1H12.1c-6.6,0-12,5.4-12,12v70.6c0,6.6,5.4,12,12,12h70.6c6.6,0,12-5.4,12-12v-48L81,51z" })))),
|
|
8088
|
+
'chevron-down': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8089
|
+
React__default.default.createElement("path", { d: "M46.1 78.7L1.6 34.2c-2.1-2.1-2.1-5.6 0-7.8l5.2-5.2c2.1-2.1 5.6-2.1 7.8 0L50 56.5l35.4-35.3c2.1-2.1 5.6-2.1 7.8 0l5.2 5.2c2.1 2.1 2.1 5.6 0 7.8L53.9 78.7c-2.2 2.2-5.6 2.2-7.8 0z" }))),
|
|
8090
|
+
'chevron-left': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8091
|
+
React__default.default.createElement("path", { d: "M21.3 46.1L65.8 1.6c2.1-2.1 5.6-2.1 7.8 0l5.2 5.2c2.1 2.1 2.1 5.6 0 7.8L43.5 50l35.3 35.4c2.1 2.1 2.1 5.6 0 7.8l-5.2 5.2c-2.1 2.1-5.6 2.1-7.8 0L21.3 53.9c-2.2-2.2-2.2-5.6 0-7.8z" }))),
|
|
8092
|
+
'chevron-right': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8093
|
+
React__default.default.createElement("path", { d: "M78.7 53.9L34.2 98.4c-2.1 2.1-5.6 2.1-7.8 0l-5.2-5.2c-2.1-2.1-2.1-5.6 0-7.8L56.5 50 21.3 14.6c-2.1-2.1-2.1-5.6 0-7.8l5.2-5.2c2.1-2.1 5.6-2.1 7.8 0l44.5 44.5c2.1 2.2 2.1 5.6-.1 7.8z" }))),
|
|
8094
|
+
'chevron-up': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8095
|
+
React__default.default.createElement("path", { d: "M53.9 21.3l44.5 44.5c2.1 2.1 2.1 5.6 0 7.8l-5.2 5.2c-2.1 2.1-5.6 2.1-7.8 0L50 43.5 14.6 78.7c-2.1 2.1-5.6 2.1-7.8 0l-5.2-5.2c-2.1-2.1-2.1-5.6 0-7.8l44.5-44.5c2.2-2.1 5.6-2.1 7.8.1z" }))),
|
|
8096
|
+
'classification-document': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8097
|
+
React__default.default.createElement("path", { d: "M53.9 21.3l44.5 44.5c2.1 2.1 2.1 5.6 0 7.8l-5.2 5.2c-2.1 2.1-5.6 2.1-7.8 0L50 43.5 14.6 78.7c-2.1 2.1-5.6 2.1-7.8 0l-5.2-5.2c-2.1-2.1-2.1-5.6 0-7.8l44.5-44.5c2.2-2.1 5.6-2.1 7.8.1z" }))),
|
|
8098
|
+
'classification-image': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8099
|
+
React__default.default.createElement("path", { d: "M91,0H9C4,0,0,4,0,9v82c0,5,4,9,9,9h82c5,0,9-4,9-9V9C100,4,96,0,91,0z M90,90H10V10h80V90z M21.2,77.9L40,59l9.5,9.5l11.6-14.6l19.2,24.1H21.2z M29.9,37.6c-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.8-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8c1.9-1.9,4.1-2.8,6.8-2.8c2.7,0,5,0.9,6.8,2.8c1.8,1.9,2.8,4.1,2.8,6.8c0,2.7-0.9,5-2.8,6.8C34.9,36.7,32.6,37.6,29.9,37.6z" }))),
|
|
8100
|
+
'classification-page': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8101
|
+
React__default.default.createElement("path", { d: "M80,32v58H20V10h38v22H80z M62.9,0H19c-5,0-9,4-9,9v82c0,5,4,9,9,9h62c5,0,9-4,9-9V27.1L62.9,0z" }))),
|
|
8102
|
+
'classify-and-unbundle': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8103
|
+
React__default.default.createElement("path", { d: "M10,46V9c0-5,4-9,9-9h43.9L90,27.1V46H80V32H58V10H20v36H10z M80,72v18H20V72H10v19c0,5,4,9,9,9h62c5,0,9-4,9-9V72H80zM36,64h28V54H36V64z M28,54H0v10h28V54z M72,54v10h28V54H72z" }))),
|
|
8104
|
+
clipboard: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8105
|
+
React__default.default.createElement("path", { d: "M10,46V9c0-5,4-9,9-9h43.9L90,27.1V46H80V32H58V10H20v36H10z M80,72v18H20V72H10v19c0,5,4,9,9,9h62c5,0,9-4,9-9V72H80zM36,64h28V54H36V64z M28,54H0v10h28V54z M72,54v10h28V54H72z" }))),
|
|
8106
|
+
'coffee-1': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8107
|
+
React__default.default.createElement("path", { d: "M87.9 43.8h-1.2v-3.3-.2-.2c0-1.9-1.6-3.5-3.5-3.5h-79c-1.5 0-2.8.9-3.3 2.3-.2.5-.4 1-.4 1.6v4.8c0 1.1.1 2.1.1 3.1C1.7 63.7 11 76.8 24.1 83.3c.2 3.4 3 6.1 6.4 6.1h25.9c.3 0 .6 0 .9-.1 2.8-.5 5-2.9 5.2-5.8 7.5-3.6 13.8-9.3 18.1-16.4.3.1.7.2 1.1.2h6.2c6.5 0 11.8-5.3 11.8-11.8-.1-6.4-5.3-11.7-11.8-11.7zm-8.5 1.9c-.2 19.1-15.8 34.6-35 34.6h-1.6c-19.2 0-34.8-15.5-35-34.6v-2h71.7l-.1 2zm8.5 15.2h-4.2c1.3-3.3 2.2-6.9 2.7-10.6h1.5c2.9 0 5.3 2.4 5.3 5.3s-2.4 5.3-5.3 5.3zm-3.7 31.9H2.6c0 3.6 2.9 6.4 6.5 6.4h69.3c3.5 0 6.4-2.9 6.5-6.4h-.7zM45 .7c-1-1-2.6-1-3.5 0-4.6 4.6-4.6 12.1 0 16.7 2.6 2.7 2.6 6.9 0 9.6-1 1-1 2.6 0 3.5s2.6 1 3.5 0c4.6-4.6 4.6-12.1 0-16.7-2.6-2.7-2.6-6.9 0-9.6 1-.9 1-2.5 0-3.5zM29.8 8.3c-1-1-2.6-1-3.5 0-3.6 3.6-3.6 9.3 0 12.9 1.6 1.6 1.6 4.2 0 5.8-1 1-1 2.6 0 3.5 1 1 2.6 1 3.5 0 3.6-3.6 3.6-9.3 0-12.9-1.6-1.6-1.6-4.2 0-5.8 1-1 1-2.6 0-3.5zm30.4 0c-1-1-2.6-1-3.5 0-3.6 3.6-3.6 9.3 0 12.9 1.6 1.6 1.6 4.2 0 5.8-1 1-1 2.6 0 3.5 1 1 2.6 1 3.5 0 3.6-3.6 3.6-9.3 0-12.9-1.6-1.6-1.6-4.2 0-5.8.9-1 .9-2.6 0-3.5z" }))),
|
|
8108
|
+
'coffee-2': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8109
|
+
React__default.default.createElement("path", { d: "M87.9 43.8h-1.2v-3.3-.2-.2c0-1.9-1.6-3.5-3.5-3.5h-79c-1.5 0-2.8.9-3.3 2.3-.2.5-.4 1-.4 1.6v4.8c0 1.1.1 2.1.1 3.1C1.7 63.7 11 76.8 24.1 83.3c.2 3.4 3 6.1 6.4 6.1h25.9c.3 0 .6 0 .9-.1 2.8-.5 5-2.9 5.2-5.8 7.5-3.6 13.8-9.3 18.1-16.4.3.1.7.2 1.1.2h6.2c6.5 0 11.8-5.3 11.8-11.8-.1-6.4-5.3-11.7-11.8-11.7zm-8.5 1.9c-.2 19.1-15.8 34.6-35 34.6h-1.6c-19.2 0-34.8-15.5-35-34.6v-2h71.7l-.1 2zm8.5 15.2h-4.2c1.3-3.3 2.2-6.9 2.7-10.6h1.5c2.9 0 5.3 2.4 5.3 5.3s-2.4 5.3-5.3 5.3zm-3.7 31.9H2.6c0 3.6 2.9 6.4 6.5 6.4h69.3c3.5 0 6.4-2.9 6.5-6.4h-.7zM41.5.7c-1 1-1 2.6 0 3.5 2.6 2.7 2.6 6.9 0 9.6-4.6 4.6-4.6 12.1 0 16.7.9 1 2.5.9 3.5 0s1-2.5 0-3.5c-2.6-2.7-2.6-6.9 0-9.6 4.6-4.6 4.6-12.1 0-16.7-.9-1-2.5-1-3.5 0zm15.2 11.1c1.6 1.6 1.6 4.2 0 5.8-3.6 3.6-3.6 9.3 0 12.9.9 1 2.5 1 3.5 0 1-.9 1-2.5 0-3.5-1.6-1.6-1.6-4.2 0-5.8 3.6-3.6 3.6-9.3 0-12.9-.9-1-2.5-1-3.5 0-1 .9-1 2.5 0 3.5zM26.3 8.3c-.9.9-.9 2.5 0 3.5 1.6 1.6 1.6 4.2 0 5.8-3.6 3.6-3.6 9.3 0 12.9.9 1 2.5 1 3.5 0 1-.9 1-2.5 0-3.5-1.6-1.6-1.6-4.2 0-5.8 3.6-3.6 3.6-9.3 0-12.9-.9-1-2.5-1-3.5 0z" }))),
|
|
8110
|
+
'coffee-fail': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8111
|
+
React__default.default.createElement("path", { d: "M80.5 3l-.7.7-2.1-2-.1-.1-.1-.1c-1.2-1.2-3.2-1.2-4.3 0l-49 49.2c-.9.9-1.2 2.3-.6 3.5.2.4.4.9.7 1.2l3 3c.7.7 1.4 1.2 2 1.9 10.2 8.8 24.1 11.1 36.3 7 2.2 2 5.7 1.9 7.8-.2l.1-.1.1-.1 15.9-16c.2-.2.4-.4.5-.6 1.4-2.1 1.3-4.9-.4-6.8 2.4-6.9 2.8-14.4 1-21.4.2-.1.6-.3.8-.6l3.8-3.9c4-4 4-10.6 0-14.7C91-1 84.5-1 80.5 3zm-4.1 6.5c11.8 12 11.8 31.3-.1 43.2l-1 1c-11.9 12-31.2 12.1-43.2.4l-1.2-1.2L75.2 8.2l1.2 1.3zm14.7 4.1l-2.6 2.6c-1.3-2.9-2.9-5.6-4.9-8.2l.9-.9c1.8-1.8 4.8-1.8 6.6 0 1.8 1.7 1.8 4.7 0 6.5zM14.5 38.4c3.6 0 7.8 1.1 10.3 3.5.3.3 0 .8-.4.7-.9-.2-2-.3-2.8-.3-11.7 0-8.3 10.9-15.3 10.9-1.8 0-4.4-1-4.4-4.7 0-3.9 3.7-10.1 12.6-10.1zm11.2-1.9c.1.3-.3.5-.6.3-1.5-1.4-4.2-3.4-11.9-2.7-3 .3-6.4-2.1-4.7-5.1 2.1-3.7 9.3-2 11.6-.6 3.1 1.9 5.2 5.3 5.6 8.1zm47.5 54.7c-1.8.2-5.9 1.2-2.5 2.8 2.7 1.3-.7 6.1-29.1 6-23.6-.1-33.5-3.5-32.5-6.9.7-2.5 5.4-3.4 12.7-4.5 1.5-.2 3.2-1.4.2-2.6-1.4-.6-2.9-1.5-2.9-2.6 0-3.9 18.7-5.5 41.6-5.5 22.9 0 36.7 3.1 36.7 7 .1 3.2-6.6 4.4-24.2 6.3z" }))),
|
|
8112
|
+
coffeecup: (React__default.default.createElement("svg", { viewBox: "0 0 150 102", fill: "currentColor" },
|
|
8113
|
+
React__default.default.createElement("path", { d: "M132.6 18.8h-1.8v-5-.3-.3c0-2.9-2.4-5.3-5.3-5.3H6c-2.3 0-4.2 1.4-5 3.5-.3.8-.6 1.5-.6 2.4v7.3c0 1.7.2 3.2.2 4.7 1.7 23.1 15.7 42.9 35.5 52.8.3 5.1 4.5 9.2 9.7 9.2H85c.5 0 .9 0 1.4-.2 4.2-.8 7.6-4.4 7.9-8.8 11.3-5.4 20.9-14.1 27.4-24.8.5.2 1.1.3 1.7.3h9.4c9.8 0 17.8-8 17.8-17.8-.3-9.7-8.2-17.7-18-17.7zm-12.9 2.9C119.4 50.5 95.8 74 66.8 74h-2.4c-29 0-52.6-23.4-52.9-52.3v-3h108.4l-.2 3zm12.9 22.9h-6.4c2-5 3.3-10.4 4.1-16h2.3c4.4 0 8 3.6 8 8s-3.6 8-8 8zM127 92.9H3.6c0 5.4 4.4 9.7 9.8 9.7h104.8c5.3 0 9.7-4.4 9.8-9.7h-1z" }))),
|
|
8114
|
+
coffeesteam: (React__default.default.createElement("svg", { viewBox: "0 0 150 76", fill: "currentColor" },
|
|
8115
|
+
React__default.default.createElement("path", { d: "M66.1 1.6c-1.3 2.6-1.3 5.7 0 8.2l3.8 7.5c2.3 4.6 2.3 10.1 0 14.7l-3.8 7.5c-1.3 2.6-1.3 5.7 0 8.2l3.8 7.5c2.3 4.6 2.3 10.1 0 14.7l-3 5.9h-7.7c.2-.5.4-1.1.7-1.6l3.8-7.5c1.3-2.6 1.3-5.7 0-8.2L59.9 51c-2.3-4.6-2.3-10.1 0-14.7l3.8-7.5c1.3-2.6 1.3-5.7 0-8.2l-3.8-7.5C57.8 9 57.6 4.2 59.2 0h7.7l-.8 1.6zM83.9 0h-7.7c-1.6 4.2-1.4 9 .7 13.1l3.8 7.5c1.3 2.6 1.3 5.7 0 8.2l-3.8 7.5c-2.3 4.6-2.3 10.1 0 14.7l3.8 7.5c1.3 2.6 1.3 5.7 0 8.2l-3.8 7.5c-.3.5-.5 1.1-.7 1.6h7.7l3-5.9c2.3-4.6 2.3-10.1 0-14.7l-3.8-7.5c-1.3-2.6-1.3-5.7 0-8.2l3.8-7.5c2.3-4.6 2.3-10.1 0-14.7l-3.8-7.5c-1.3-2.6-1.3-5.7 0-8.2l.8-1.6zm-34 0h-7.7c-1.6 4.2-1.4 9 .7 13.1l3.8 7.5c1.3 2.6 1.3 5.7 0 8.2l-3.8 7.5c-2.3 4.6-2.3 10.1 0 14.7l3.8 7.5c1.3 2.6 1.3 5.7 0 8.2l-3.8 7.5c-.3.5-.5 1.1-.7 1.6h7.7l3-5.9c2.3-4.6 2.3-10.1 0-14.7l-3.8-7.5c-1.3-2.6-1.3-5.7 0-8.2l3.8-7.5c2.3-4.6 2.3-10.1 0-14.7l-3.8-7.5c-1.3-2.6-1.3-5.7 0-8.2l.8-1.6z" }))),
|
|
8116
|
+
'company-name': (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8117
|
+
React__default.default.createElement("path", { d: "m8.05 41.15v-26.9h10.7v-5.75l5.25-5 5.25 5v13.95h10.7v18.7zm2.25-2.25h5.95v-5.95h-5.95zm0-8.25h5.95v-5.95h-5.95zm0-8.2h5.95v-5.95h-5.95zm10.7 16.45h6v-5.95h-6zm0-8.25h6v-5.95h-6zm0-8.2h6v-5.95h-6zm0-8.2h6v-5.95h-6zm10.75 24.65h5.95v-5.95h-5.95zm0-8.25h5.95v-5.95h-5.95z" }))),
|
|
8118
|
+
'confidence-bar-1': (React__default.default.createElement("svg", { viewBox: "0 0 28 100", fill: "currentColor" },
|
|
8119
|
+
React__default.default.createElement("path", { d: "M0 67v33h16V56.3z" }))),
|
|
8120
|
+
'confidence-bar-2': (React__default.default.createElement("svg", { viewBox: "0 0 28 100", fill: "currentColor" },
|
|
8121
|
+
React__default.default.createElement("path", { d: "M0 48.2V100h16V37.5z" }))),
|
|
8122
|
+
'confidence-bar-3': (React__default.default.createElement("svg", { viewBox: "0 0 28 100", fill: "currentColor" },
|
|
8123
|
+
React__default.default.createElement("path", { d: "M0 29.5V100h16V18.8z" }))),
|
|
8124
|
+
'confidence-bar-4': (React__default.default.createElement("svg", { viewBox: "0 0 28 100", fill: "currentColor" },
|
|
8125
|
+
React__default.default.createElement("path", { d: "M16 0v100H0V10.7z" }))),
|
|
8126
|
+
'confidence-bars': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8127
|
+
React__default.default.createElement("path", { d: "M100 0v100H84V10.7L100 0zM0 67v33h16V56.3L0 67zm28-18.8V100h16V37.5L28 48.2zm28-18.7V100h16V18.8L56 29.5z" }))),
|
|
8128
|
+
configure: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8129
|
+
React__default.default.createElement("path", { d: "M96.9 75H31.2v-3.1c0-1.7-1.4-3.1-3.1-3.1h-6.2c-1.7 0-3.1 1.4-3.1 3.1V75H3.1C1.4 75 0 76.4 0 78.1v6.2c0 1.7 1.4 3.1 3.1 3.1h15.6v3.1c0 1.7 1.4 3.1 3.1 3.1H28c1.7 0 3.1-1.4 3.1-3.1v-3.1h65.6c1.7 0 3.1-1.4 3.1-3.1v-6.2c.2-1.7-1.2-3.1-2.9-3.1zm0-31.2H81.2v-3.1c0-1.7-1.4-3.1-3.1-3.1h-6.2c-1.7 0-3.1 1.4-3.1 3.1v3.1H3.1c-1.7 0-3.1 1.4-3.1 3.1v6.2c0 1.7 1.4 3.1 3.1 3.1h65.6v3.1c0 1.7 1.4 3.1 3.1 3.1H78c1.7 0 3.1-1.4 3.1-3.1v-3.1h15.6c1.7 0 3.1-1.4 3.1-3.1v-6.2c.2-1.7-1.2-3.1-2.9-3.1zm0-31.3H56.2V9.4c0-1.7-1.4-3.1-3.1-3.1h-6.2c-1.7 0-3.1 1.4-3.1 3.1v3.1H3.1c-1.7 0-3.1 1.4-3.1 3.1v6.2C0 23.6 1.4 25 3.1 25h40.6v3.1c0 1.7 1.4 3.1 3.1 3.1H53c1.7 0 3.1-1.4 3.1-3.1V25h40.6c1.7 0 3.1-1.4 3.1-3.1v-6.2c.2-1.8-1.2-3.2-2.9-3.2z" }))),
|
|
8130
|
+
crowdlabel: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8131
|
+
React__default.default.createElement("path", { d: "M55 .2C78.6 2.6 97.4 21.4 99.8 45H89.7C87.4 26.9 73.1 12.6 55 10.3V.2zM10.3 45C12.6 26.9 26.9 12.6 45 10.3V.2C21.4 2.6 2.6 21.4.2 45h10.1zm79.4 10C87.4 73.1 73.1 87.4 55 89.7v10.1C78.6 97.4 97.4 78.6 99.8 55H89.7zM45 89.7C26.9 87.4 12.6 73.1 10.3 55H.2C2.6 78.6 21.4 97.4 45 99.8V89.7zM71 45H55V29c0-2.8-2.2-5-5-5s-5 2.2-5 5v16H29c-2.8 0-5 2.2-5 5s2.2 5 5 5h16v16c0 2.8 2.2 5 5 5s5-2.2 5-5V55h16c2.8 0 5-2.2 5-5s-2.3-5-5-5z" }))),
|
|
8132
|
+
currency: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8133
|
+
React__default.default.createElement("path", { d: "m26.75 26.15q-2.1 0-3.55-1.45t-1.45-3.55 1.45-3.55 3.55-1.45 3.55 1.45 1.45 3.55-1.45 3.55-3.55 1.45zm-14.65 6.95q-1.15 0-2-0.875t-0.85-2.025v-18.1q0-1.15 0.85-2t2-0.85h29.3q1.2 0 2.05 0.85t0.85 2v18.1q0 1.15-0.85 2.025t-2.05 0.875zm3.75-2.3h21.85q0-1.8 1.275-3.075t3.075-1.275v-10.6q-1.8 0-3.075-1.275t-1.275-3.075h-21.85q0 1.8-1.275 3.075t-3.075 1.275v10.6q1.8 0 3.075 1.275t1.275 3.075zm22.5 7.8h-31.75q-1.2 0-2.05-0.85t-0.85-2v-20.55h2.25v20.55q0 0.2 0.2 0.4t0.45 0.2h31.75zm-26.25-7.8h-0.6t0-0.175 0-0.425v-18.1q0-0.25 0-0.425t0-0.175h0.6q-0.25 0-0.425 0.175t-0.175 0.425v18.1q0 0.25 0.175 0.425t0.425 0.175z" }))),
|
|
8134
|
+
dashboard: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8135
|
+
React__default.default.createElement("path", { d: "M99.8 56.9c0 13.7-5.5 26.1-14.4 35.1 0 0-1 1-2.2 1-.7 0-1.5-.3-2.1-.9l-7.4-7.4c-1.2-1.1-1.2-3 0-4.2 1.1-1.2 3-1.2 4.2 0l2.4 2.4c5.4-6.3 8.9-14.3 9.5-23.1H86c-1.7 0-3-1.3-3-3s1.3-3 3-3h3.7c-.3-5-1.7-9.7-3.8-14 2.4-2.9 4.8-5.8 7-8.5 4.4 7.4 7 16.1 6.9 25.6zM22.1 80.7L19.8 83c-5.4-6.3-9-14.3-9.6-23h3.7c1.7 0 3-1.3 3-3s-1.3-3-3-3h-3.8c.6-8.8 4.1-16.8 9.5-23.1l2.4 2.4c.6.6 1.4.9 2.1.9.7 0 1.5-.3 2.1-.9 1.2-1.2 1.2-3.1 0-4.2l-2.4-2.4c6.3-5.4 14.3-9 23-9.6v3.7c0 1.7 1.3 3 3 3s3-1.3 3-3V17c4.8.3 9.4 1.6 13.6 3.4 2.8-2.4 5.6-4.8 8.3-7.1C67.4 9.2 59 6.8 50 6.8c-27.6 0-50 22.4-50 50 0 13.7 5.5 26.1 14.4 35.1.7.7 1.7 1.3 2.4 1.3s1.5-.3 2.1-.9l7.4-7.4c1.2-1.2 1.2-3.1 0-4.2-1.2-1.2-3.1-1.2-4.2 0zm63.7-60.4c-.9-.9-2.3-1.1-3.4-.4l-.1.1c-9.7 8.3-23.4 20-29.9 25.3-.7-.2-1.6-.3-2.4-.3-6.6 0-12 5.4-12 12s5.4 12 12 12 12-5.4 12-12c0-1.1-.2-2.1-.4-3.1 5.3-6.7 16.5-20.4 24.6-30.2.7-1 .6-2.4-.4-3.4z" }))),
|
|
8136
|
+
'data-and-access': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8137
|
+
React__default.default.createElement("path", { d: "M90.8 51H49V10.1c-1-.1-2-.1-3-.1C21.1 10 1 30.1 1 55s20.1 45 45 45 45-20.1 45-45c0-1.3-.1-2.7-.2-4zM46 90c-19.3 0-35-15.7-35-35 0-16.9 12-31 28-34.3V61h41.5C77.6 77.4 63.3 90 46 90zM57 .1V43h42.9C98.9 19.7 80.3 1.1 57 .1zM67 33V12.1c9.7 3.5 17.3 11.2 20.9 20.9H67z" }))),
|
|
8138
|
+
database: (React__default.default.createElement("svg", { viewBox: "0 0 448 512", fill: "currentColor" },
|
|
8139
|
+
React__default.default.createElement("path", { d: "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z" }))),
|
|
8140
|
+
date: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8141
|
+
React__default.default.createElement("path", { d: "m24 28.15q-0.75 0-1.25-0.525t-0.5-1.225q0-0.75 0.5-1.275t1.25-0.525 1.25 0.525 0.5 1.275q0 0.7-0.5 1.225t-1.25 0.525zm-8 0q-0.75 0-1.25-0.525t-0.5-1.225q0-0.75 0.5-1.275t1.25-0.525 1.25 0.525 0.5 1.275q0 0.7-0.5 1.225t-1.25 0.525zm16 0q-0.75 0-1.25-0.525t-0.5-1.225q0-0.75 0.5-1.275t1.25-0.525 1.25 0.525 0.5 1.275q0 0.7-0.5 1.225t-1.25 0.525zm-8 7.85q-0.75 0-1.25-0.525t-0.5-1.225q0-0.75 0.5-1.275t1.25-0.525 1.25 0.525 0.5 1.275q0 0.7-0.5 1.225t-1.25 0.525zm-8 0q-0.75 0-1.25-0.525t-0.5-1.225q0-0.75 0.5-1.275t1.25-0.525 1.25 0.525 0.5 1.275q0 0.7-0.5 1.225t-1.25 0.525zm16 0q-0.75 0-1.25-0.525t-0.5-1.225q0-0.75 0.5-1.275t1.25-0.525 1.25 0.525 0.5 1.275q0 0.7-0.5 1.225t-1.25 0.525zm-22.1 7q-1.2 0-2.05-0.85t-0.85-2.05v-28.95q0-1.15 0.85-2.025t2.05-0.875h3.7v-3.5h2.5v3.5h15.9v-3.5h2.45v3.5h3.65q1.2 0 2.05 0.875t0.85 2.025v28.95q0 1.2-0.85 2.05t-2.05 0.85zm0-2.25h28.2q0.25 0 0.45-0.2t0.2-0.45v-19.85h-29.5v19.85q0 0.25 0.2 0.45t0.45 0.2zm-0.65-22.75h29.5v-6.85q0-0.25-0.2-0.425t-0.45-0.175h-28.2q-0.25 0-0.45 0.175t-0.2 0.425zm0 0v-6.85q0-0.25 0-0.425t0-0.175 0 0.175 0 0.425v6.85z" }))),
|
|
8142
|
+
draggable: (React__default.default.createElement("svg", { viewBox: "0 0 322 514", fill: "currentColor" },
|
|
8143
|
+
React__default.default.createElement("path", { d: "m88 352c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40h-48c-22.09 0-40-17.9-40-40v-48c0-22.1 17.91-40 40-40h48zm192 0c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40h-48c-22.1 0-40-17.9-40-40v-48c0-22.1 17.9-40 40-40h48zm-240-32c-22.09 0-40-17.9-40-40v-48c0-22.1 17.91-40 40-40h48c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40h-48zm240-128c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40h-48c-22.1 0-40-17.9-40-40v-48c0-22.1 17.9-40 40-40h48zm-240-32c-22.09 0-40-17.9-40-40v-48c0-22.09 17.91-40 40-40h48c22.1 0 40 17.91 40 40v48c0 22.1-17.9 40-40 40h-48zm240-128c22.1 0 40 17.91 40 40v48c0 22.1-17.9 40-40 40h-48c-22.1 0-40-17.9-40-40v-48c0-22.09 17.9-40 40-40h48z" }))),
|
|
8144
|
+
droplet: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8145
|
+
React__default.default.createElement("path", { d: "M53.5 1.9C52.7.7 51.4 0 50 0s-2.7.7-3.5 1.9c-3.1 4.8-30.1 47.6-30.1 64.6C16.5 85 31.5 100 50 100s33.5-15 33.5-33.5c0-17-27-59.8-30-64.6zm-3.4 83.9c-2.3 0-4.1-1.8-4.1-4.1s1.8-4.1 4.1-4.1c6.5 0 11.8-5.3 11.8-11.8 0-2.3 1.8-4.1 4.1-4.1s4.1 1.8 4.1 4.1c0 11-9 20-20 20z" }))),
|
|
8146
|
+
edit: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8147
|
+
React__default.default.createElement("path", { d: "M68 12.2l8.8-8.8C79.9.3 84.8.3 88 3.3l8.7 8.7c3 3 3 8-.1 11.2L87.8 32 68 12.2zM32.5 87.3l49.7-49.7-19.8-19.8-49.7 49.7 19.8 19.8zM7.1 73.1c-.5.5-.9 1.2-1.1 2L1.1 95.7c-.4 2 1.3 3.6 3.2 3.2l20.8-5.1c.8-.2 1.4-.5 2-1.1l-20-19.6z" }))),
|
|
8148
|
+
education: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8149
|
+
React__default.default.createElement("path", { d: "M50.9 57.2c-.6 0-1.2-.1-1.9-.3l-28.6-9.5c-.5 1.3-.8 3.1-.8 5.6 1.9 1.1 3.7 3.3 3.7 7 0 2.3-1.1 3.9-2.1 5 4.2 4.9 15.9 8.5 29.7 8.5 17.4 0 31.4-5.6 31.4-12.5V47.1L52.7 57c-.6.1-1.2.2-1.8.2zm47.8-24.8L51.5 16.7c-.4-.1-.8-.1-1.2 0L3.1 32.4c-.8.3-1.3 1-1.3 1.9 0 .8.5 1.6 1.3 1.9l10.8 3.6c-2.5 2.9-3.9 7-4.5 13.6-1.7.8-2.9 2.5-2.9 4.5 0 2.1 1.2 3.8 3 4.6C8 75.8 0 80.3 0 81.4c0 .6 6.2 3.9 7.7 3.9 2.3 0 7.7-3.9 7.7-12.2 0-4.9-.4-8.6-.9-11.3 1.3-.9 2.1-2.3 2.1-4 0-1.8-1-3.4-2.5-4.3.8-10.9 4.2-12.7 12.4-16.1.8-.3 2.4-.9 3.3-1.3 1.6-.7 3.1-1.2 4.4-1.8 4.5-1.8 8.3-3.2 11.2-4.3 3.2-1.1 4.6-1.5 4.6-1.6 1.2-.4 2.6.2 3 1.5.4 1.2-.2 2.6-1.5 3-.1 0-5.6 1.6-20 7.5-.9.4-1.8.7-2.6 1.1-1.7.7-3.1 1.2-4.3 1.8l25.6 8.5c.2.1.4.1.6.1.2 0 .4 0 .6-.1l47.1-15.7c.8-.3 1.3-1 1.3-1.9.2-.7-.3-1.5-1.1-1.8z" }))),
|
|
8150
|
+
ellipsis: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8151
|
+
React__default.default.createElement("path", { d: "M64.5 50c0 8-6.5 14.5-14.5 14.5S35.5 58 35.5 50 42 35.5 50 35.5 64.5 42 64.5 50zm21-14.5C77.5 35.5 71 42 71 50s6.5 14.5 14.5 14.5S100 58 100 50s-6.5-14.5-14.5-14.5zm-71 0C6.5 35.5 0 42 0 50s6.5 14.5 14.5 14.5S29 58 29 50s-6.5-14.5-14.5-14.5z" }))),
|
|
8152
|
+
'elmos-fire': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8153
|
+
React__default.default.createElement("path", { d: "M62.1 38.3l-7.7 16.1L46 46l16.1-7.7m12.8-12.8l-33.4 16-16 33.4 33.4-16 16-33.4zM50 10c22.1 0 40 17.9 40 40S72.1 90 50 90 10 72.1 10 50s17.9-40 40-40m0-10C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0z" }))),
|
|
8154
|
+
email: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8155
|
+
React__default.default.createElement("path", { d: "M0 25.6V21c0-3.9 3.2-7 7-7h86c3.8 0 7 3.1 7 7v4.6L52.8 46.2c-1.8.8-3.8.8-5.6 0L0 25.6zm52.8 31.7c-1.8.8-3.9.8-5.7 0L0 36.7V79c0 3.8 3.2 7 7 7h86c3.8 0 7-3.2 7-7V36.7L52.8 57.3z" }))),
|
|
8156
|
+
enterprise: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8157
|
+
React__default.default.createElement("path", { d: "M59 25H40c-.8 0-2-1-2-2s1-2 2-2h19c1 0 2 1 2 2s-1 2-2 2zm0 10H40c-.8 0-2-1-2-2s1-2 2-2h19c1 0 2 1 2 2s-1 2-2 2zm0 10H40c-.8 0-2-1-2-2s1-2 2-2h19c1 0 2 1 2 2s-1 2-2 2zm0 10H40c-.8 0-2-1-2-2s1-2 2-2h19c1 0 2 1 2 2s-1 2-2 2zm0 10H40c-.8 0-2-1-2-2s1-2 2-2h19c1 0 2 1 2 2s-1 2-2 2zm0 10H40c-.8 0-2-1-2-2s1-2 2-2h19c1 0 2 1 2 2s-1 2-2 2zm41 22.5c0 1.5-1 2.5-3 2.5H3c-2 0-3-1-3-2.5S1 95 3 95h4V38c0-1 1-2 2-2h5v-6c0-1 1-2 2-2h9V10c0-1 1-2 2-2h8V2c0-1 1-2 2-2h26c1 0 2 1 2 2v6h8c1 0 2 1 2 2v18h9c1 0 2 1 2 2v6h5c1 0 2 1 2 2v57h4c2 0 3 1 3 2.5zM75 38h7v-6h-7v6zM39 10h22V4H39v6zM19 38h6v-6h-6v6zm6 57V41H13v54h12zm45 0V13H30v82h40zm18 0V41H75v54h13z" }))),
|
|
8158
|
+
extraction: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8159
|
+
React__default.default.createElement("path", { d: "M66.7 26.7c0-1.1-.4-2.2-1.2-2.9l-17-17c-.8-.8-1.8-1.2-3-1.2h-1.1v22.2h22.2v-1.1zM99.1 59L82.5 42.3c-1.8-1.8-4.8-.5-4.8 2v11.3h-11v11.1h11.1V78c0 2.5 3 3.7 4.8 2l16.6-16.8c1.1-1.2 1.1-3-.1-4.2zm-65.8 4.9v-5.6c0-1.5 1.3-2.8 2.8-2.8h30.6V33.3H43.1c-2.3 0-4.2-1.9-4.2-4.2V5.6H4.2C1.9 5.6 0 7.4 0 9.7v80.6c0 2.3 1.9 4.2 4.2 4.2h58.3c2.3 0 4.2-1.9 4.2-4.2V66.7H36.1c-1.5 0-2.8-1.3-2.8-2.8z" }))),
|
|
8160
|
+
eye: (React__default.default.createElement("svg", { viewBox: "0 0 18 12", fill: "currentColor" },
|
|
8161
|
+
React__default.default.createElement("path", { d: "M17.891 5.544C16.197 2.237 12.841 0 9 0 5.158 0 1.802 2.239.109 5.544a1.01 1.01 0 0 0 0 .912C1.803 9.763 5.159 12 9 12c3.842 0 7.197-2.239 8.891-5.544a1.01 1.01 0 0 0 0-.912zM9 10.5a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9zM9 3a2.978 2.978 0 0 0-.791.118 1.495 1.495 0 0 1-2.09 2.091A2.993 2.993 0 1 0 9 3z" }))),
|
|
8162
|
+
file: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8163
|
+
React__default.default.createElement("path", { d: "M56.2 26.6V0h-39c-2.6 0-4.7 2.1-4.7 4.7v90.6c0 2.6 2.1 4.7 4.7 4.7h65.6c2.6 0 4.7-2.1 4.7-4.7v-64H60.9c-2.5 0-4.7-2.2-4.7-4.7zm31.3-2.8V25h-25V0h1.2c1.2 0 2.4.5 3.3 1.4l19.1 19.1c.9.9 1.4 2.1 1.4 3.3z" }))),
|
|
8164
|
+
fileHappy: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8165
|
+
React__default.default.createElement("path", { d: "M56.2,26.6V0h-39c-2.6,0-4.7,2.1-4.7,4.7v90.6c0,2.6,2.1,4.7,4.7,4.7h65.6c2.6,0,4.7-2.1,4.7-4.7v-64H60.9 C58.4,31.3,56.2,29.1,56.2,26.6z M31.3,51.5c-2,0-3.7-1.6-3.7-3.7c0-2,1.6-3.7,3.7-3.7c2,0,3.7,1.6,3.7,3.7S33.3,51.5,31.3,51.5z M68.7,44.2c2,0,3.7,1.6,3.7,3.7c0,2-1.6,3.7-3.7,3.7c-2,0-3.7-1.6-3.7-3.7S66.7,44.2,68.7,44.2z M61.4,63.6c0,6.2-5,11.2-11.2,11.2 S39,69.8,39,63.6l0,0H61.4z M87.5,23.8V25h-25V0h1.2c1.2,0,2.4,0.5,3.3,1.4l19.1,19.1C87,21.4,87.5,22.6,87.5,23.8z" }))),
|
|
8166
|
+
filter: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8167
|
+
React__default.default.createElement("path", { d: "M95.3 0H4.7C.5 0-1.6 5.1 1.4 8l36.1 36.1v40.2c0 1.5.7 3 2 3.8L55.1 99c3.1 2.2 7.4 0 7.4-3.8V44.1L98.6 8c3-2.9.9-8-3.3-8z" }))),
|
|
8168
|
+
'filter-outline': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8169
|
+
React__default.default.createElement("path", { d: "M93.7,0H6.3C0.7,0-2.1,6.7,1.8,10.7l35.7,35.7v36.5v0c0,1.8,0.8,3.5,2.1,4.7\n l12.5,10.9c4,3.5,10.4,0.7,10.4-4.7V46.3l35.7-35.7C102.1,6.7,99.3,0,93.7,0L93.7,0z M56.3,43.8v50L43.8,82.8V43.8L6.2,6.2h87.5\n L56.3,43.8z" }))),
|
|
8170
|
+
folder: (React__default.default.createElement("svg", { viewBox: "0 0 514 514", fill: "currentColor" },
|
|
8171
|
+
React__default.default.createElement("path", { d: "M465 129H273l-64-64H49C22.49 65 1 86.49 1 113v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V177c0-26.51-21.49-48-48-48z" }))),
|
|
8172
|
+
form: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8173
|
+
React__default.default.createElement("path", { d: "M81,0H19c-5,0-9,4-9,9v82c0,5,4,9,9,9h62c5,0,9-4,9-9V9C90,4,86,0,81,0z M80,90H20V10h60V90z M74,26H26v-6h48V26z M74,38H26v-6h48V38z M74,49.7H26v-6h48V49.7z M74,79.8H56v-6h18V79.8z M74,67.8H56v-6h18V67.8z M34.2,80l14.1-14.1L44,61.8l-9.9,10L30,67.7l-4,4.1L34.2,80z" }))),
|
|
8174
|
+
gallery: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8175
|
+
React__default.default.createElement("path", { d: "M5.9 46H40c3.3 0 6-2.7 6-6V5.9c0-2.5-2.3-4.4-4.8-3.9C21.5 5.9 5.9 21.5 1.9 41.2c-.5 2.5 1.4 4.8 4 4.8zM36 13.9V36H13.9C18 26 26 18 36 13.9zM62 56c-3.3 0-6 2.7-6 6v34.2c0 2.5 2.3 4.4 4.8 3.9 19.8-4 35.4-19.6 39.3-39.3.5-2.5-1.4-4.8-3.9-4.8H62zm4 32.1V66h22.1C84 76 76 84 66 88.1zM40 56H5.9c-2.5 0-4.4 2.3-3.9 4.8 4 19.8 19.6 35.4 39.3 39.3 2.5.5 4.8-1.4 4.8-3.9V62c-.1-3.3-2.8-6-6.1-6zM13.9 66H36v22.1C26 84 18 76 13.9 66zM62 46h34.2c2.5 0 4.4-2.3 3.9-4.8-4-19.8-19.6-35.4-39.3-39.3-2.5-.5-4.8 1.4-4.8 4V40c0 3.3 2.7 6 6 6zm26.1-10H66V13.9C76 18 84 26 88.1 36z" }))),
|
|
8176
|
+
graphiql: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8177
|
+
React__default.default.createElement("path", { d: "M90,62.8c-0.8-0.4-1.5-0.7-2.3-0.9V38.1c0.8-0.2,1.6-0.5,2.4-0.9c4.3-2.5,5.7-7.9,3.3-12.2c-2.5-4.3-7.9-5.7-12.2-3.3 c-0.8,0.4-1.4,1-2,1.6L58.5,11.5c0.2-0.8,0.4-1.7,0.4-2.5C58.9,4,54.9,0,50,0s-8.9,4-8.9,8.9c0,0.9,0.1,1.7,0.4,2.5L20.9,23.3 c-0.6-0.6-1.2-1.1-2-1.6c-4.3-2.5-9.7-1-12.2,3.3c-2.5,4.3-1,9.7,3.3,12.2c0.8,0.4,1.6,0.7,2.4,0.9v23.8c-0.8,0.2-1.6,0.5-2.3,0.9 C5.7,65.3,4.3,70.7,6.7,75s7.9,5.7,12.2,3.3c0.8-0.4,1.4-1,2-1.6l20.6,11.9c-0.2,0.8-0.4,1.6-0.4,2.5c0,4.9,4,8.9,8.9,8.9 s8.9-4,8.9-8.9c0-1-0.2-1.9-0.5-2.8l20.4-11.8c0.6,0.7,1.4,1.3,2.2,1.8c4.3,2.5,9.7,1,12.2-3.3C95.8,70.7,94.3,65.3,90,62.8z M23.1,68.4c-0.2-0.8-0.5-1.6-0.9-2.3c-0.4-0.8-1-1.4-1.6-2l26.9-46.6c0.8,0.2,1.6,0.4,2.5,0.4c0.9,0,1.7-0.1,2.5-0.4l26.9,46.6 c-0.6,0.6-1.1,1.2-1.6,2c-0.4,0.8-0.7,1.5-0.9,2.3H23.1z M77,27c-0.6,2.2-0.4,4.7,0.8,6.9c1.3,2.2,3.3,3.6,5.6,4.2v23.8 c-0.1,0-0.2,0.1-0.3,0.1L56.2,15.4c0.1-0.1,0.2-0.2,0.2-0.2L77,27z M43.6,15.1c0.1,0.1,0.2,0.2,0.3,0.3L16.9,62 c-0.1,0-0.2-0.1-0.3-0.1V38.1c2.3-0.6,4.3-2,5.6-4.2c1.3-2.2,1.5-4.7,0.8-6.9L43.6,15.1z M56.6,85.1c-1.6-1.8-4-2.9-6.6-2.9 c-2.5,0-4.8,1-6.4,2.7L23,73c0-0.1,0.1-0.2,0.1-0.3h53.8c0,0.2,0.1,0.4,0.2,0.6L56.6,85.1z" }))),
|
|
8178
|
+
happy: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8179
|
+
React__default.default.createElement("path", { d: "M100 50c0 27.6-22.4 50-50 50S0 77.6 0 50 22.4 0 50 0s50 22.4 50 50zm-78.6-7.4c-.1-3.1 2.5-5.7 5.7-5.7 3.1 0 5.7 2.6 5.7 5.7 0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5C37.7 36.7 32.8 32 27 32s-10.6 4.8-10.6 10.6c0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5zM73 32c-5.9 0-10.6 4.8-10.6 10.6 0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5c0-3.1 2.6-5.7 5.7-5.7s5.7 2.6 5.7 5.7c0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5C83.7 36.7 78.9 32 73 32zm4.8 24.6c-1.4-.6-3 0-3.5 1.4-4.2 9.7-13.7 16-24.3 16-10.6 0-20.1-6.3-24.3-16.1-.6-1.4-2.1-2-3.5-1.4-1.4.6-2 2.1-1.4 3.5 5.1 11.7 16.5 19.3 29.3 19.3 12.7 0 24.2-7.5 29.1-19.3.6-1.2-.1-2.8-1.4-3.4z" }))),
|
|
8180
|
+
'help-solid': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8181
|
+
React__default.default.createElement("path", { d: "M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm9.4 80.2c0 5.2-4.3 9.5-9.5 9.5s-9.5-4.3-9.5-9.5 4.3-9.5 9.5-9.5 9.5 4.2 9.5 9.5zM72.7 32c0 11.5-7.5 16.9-11.1 19.5l-.2.1c-3.5 2.5-4 4.6-4 6.4 0 4.2-3.5 5.9-7.8 5.9-4.2 0-7.5-1.8-7.5-6 0-7.6 3.6-14.1 10.4-18.7 3.7-2.6 4.8-4.2 4.8-7.2 0-.6-.2-5.3-7.6-5.3-3.7 0-6.3 1.5-7.4 5.1-1.3 4-4.4 6.2-8.2 6.2-5.7 0-7.8-4.4-6.7-9.1 2.3-10.2 11.4-17.3 22.5-17.3 16.7-.3 22.8 12 22.8 20.4z" }))),
|
|
8182
|
+
help: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8183
|
+
React__default.default.createElement("path", { d: "M50 10c22.1 0 40 17.9 40 40S72.1 90 50 90 10 72.1 10 50s17.9-40 40-40m0-10C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 18.4c-9.5 0-17.4 6-19.2 14.6-.3 1.3.3 4.9 4.9 4.9 3 0 4.4-1.2 4.9-2.9 1.1-3.8 4.7-6.7 9.3-6.7 9.1 0 9.4 6.6 9.4 7.2 0 4-2 6.1-5.5 8.6C48 48.3 45 53.7 45 60.3c0 2.8 2.3 4.1 5 4.1 2.9 0 5.1-1.2 5.1-4 0-2 .5-4.8 4.7-7.8 3.1-2.3 9.8-6.8 9.8-16.8-.1-7.1-5.3-17.4-19.6-17.4zm0 51c-3.5 0-6.4 2.8-6.4 6.4s2.8 6.4 6.4 6.4c3.5 0 6.4-2.8 6.4-6.4s-2.9-6.4-6.4-6.4z" }))),
|
|
8184
|
+
highlight: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8185
|
+
React__default.default.createElement("path", { d: "M0 91.2l18.4 5.9 6.5-6.5-12.3-12.4L0 91.2zm22.9-44.1c-2 1.7-2.8 4.5-2 7l2.4 7.9-9.3 9.3L31.6 89l9.3-9.3 7.9 2.4c2.5.8 5.3 0 7-2l6.5-7.7-31.8-31.9-7.6 6.6zM97 17.5L85.4 5.9c-3.8-3.8-9.8-4-13.8-.4L35 36.7l31.2 31.2 31.2-36.6c3.6-4 3.4-10-.4-13.8z" }))),
|
|
8186
|
+
'highlight-outline': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8187
|
+
React__default.default.createElement("path", { d: "M97.2,16.9L86.1,5.8c-1.9-1.9-4.4-2.8-6.8-2.8c-2.4,0-4.6,0.9-6.4,2.4\n L20.3,51.1c-1.9,1.7-2.6,4.3-1.9,6.7l2.3,7.5L14,72c-1.2,1.2-1.2,3.2,0,4.5l0,0L0,91.2l18.4,5.9l8.1-8.1l0,0c1.2,1.2,3.3,1.2,4.5,0\n l6.7-6.7l7.5,2.3c3.3,1,5.8-0.8,6.7-1.9l45.7-52.6C101,26.3,100.8,20.5,97.2,16.9z M16.7,90.4l-5.9-1.9l7.4-7.7l4.1,4.1L16.7,90.4z\n M47.5,78.8C47.3,78.9,47.2,79,47,79c0,0-0.1,0-0.2,0l-7.5-2.3l-3.4-1l-7.3,7.3l-8.6-8.6l7.3-7.3l-1-3.4l-2.3-7.5\n c-0.1-0.2,0-0.4,0.1-0.6l8.3-7.2l22.2,22.2L47.5,78.8z M93.1,26.3L58.5,66.1L36.9,44.4L76.7,9.8C77.6,9,80,8,81.9,9.9L93,21.1\n C94.4,22.5,94.5,24.7,93.1,26.3L93.1,26.3z" }))),
|
|
8188
|
+
'indico-logo-white': (React__default.default.createElement("svg", { viewBox: "0 0 100 30", fill: "currentColor" },
|
|
8189
|
+
React__default.default.createElement("path", { d: "M59.6 20.1c0-5.5 4.5-9.9 9.9-9.9h7.2v3.5h-7.2c-3.5 0-6.2 2.9-6.2 6.2 0 3.5 2.9 6.2 6.2 6.2h7.2V30h-7.2c-5.4 0-9.9-4.5-9.9-9.9zM0 30h3.6V10.3H0V30zM1.8 4.3C.8 4.3 0 5 0 6s.7 1.7 1.8 1.7S3.5 7 3.5 6c.1-1-.7-1.7-1.7-1.7zm5 16V30h3.6v-9.7c0-3.5 2.9-6.2 6.2-6.2 3.5 0 6.2 2.9 6.2 6.2V30h3.6v-9.7c0-5.5-4.5-9.9-9.9-9.9-5.2-.1-9.7 4.4-9.7 9.9zM52.9 30h3.6V10.3h-3.6V30zm1.9-25.7c-1 0-1.8.7-1.8 1.7s.7 1.7 1.8 1.7c1 0 1.8-.8 1.8-1.7s-.8-1.7-1.8-1.7zM100 20c0 5.5-4.5 10-10 10s-10-4.5-10-10 4.5-10 10-10 10 4.5 10 10zm-16.1 0c0 3.4 2.8 6.1 6.1 6.1s6.1-2.8 6.1-6.1c0-3.4-2.8-6.1-6.1-6.1s-6.1 2.7-6.1 6.1zm7.9 0c0 1-.8 1.7-1.7 1.7s-1.8-.7-1.8-1.7.8-1.7 1.8-1.7 1.7.7 1.7 1.7zM49.8.4V20.1c0 5.5-4.5 9.9-10 9.9s-10-4.5-10-10 4.5-10 10-10c2.4 0 4.6.9 6.4 2.4V.5h3.6V.4zM33.6 20c0 3.4 2.7 6.1 6.1 6.1 3.4 0 6.1-2.8 6.1-6.1 0-3.4-2.7-6.1-6.1-6.1-3.3 0-6.1 2.7-6.1 6.1z" }))),
|
|
8190
|
+
'indico-o': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8191
|
+
React__default.default.createElement("path", { d: "M100 50c0 27.6-22.4 50-50 50S0 77.6 0 50 22.4 0 50 0s50 22.4 50 50zM50 19.4c-16.9 0-30.6 13.7-30.6 30.6S33.1 80.6 50 80.6 80.6 66.9 80.6 50 66.9 19.4 50 19.4zm0 21.7c-4.9 0-8.9 4-8.9 8.9s4 8.9 8.9 8.9 8.9-4 8.9-8.9-4-8.9-8.9-8.9z" }))),
|
|
8192
|
+
info: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8193
|
+
React__default.default.createElement("path", { d: "M50,6.5c23.9,0,43.5,19.4,43.5,43.5c0,24.1-19.5,43.5-43.5,43.5\n\tC26,93.5,6.5,74.1,6.5,50C6.5,26,25.9,6.5,50,6.5 M50,0C22.4,0,0,22.4,0,50c0,27.6,22.4,50,50,50s50-22.4,50-50\n\tC100,22.4,77.6,0,50,0z M42.7,69.4h2.4V45.2h-2.4c-1.3,0-2.4-1.1-2.4-2.4v-1.6c0-1.3,1.1-2.4,2.4-2.4h9.7c1.3,0,2.4,1.1,2.4,2.4\n\tv28.2h2.4c1.3,0,2.4,1.1,2.4,2.4v1.6c0,1.3-1.1,2.4-2.4,2.4H42.7c-1.3,0-2.4-1.1-2.4-2.4v-1.6C40.3,70.4,41.4,69.4,42.7,69.4z\n\t M50,21c-3.6,0-6.5,2.9-6.5,6.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5C56.5,23.9,53.6,21,50,21z" }))),
|
|
8194
|
+
kabob: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8195
|
+
React__default.default.createElement("path", { d: "m50 18c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9zm9 73c0-5-4-9-9-9s-9 4-9 9 4 9 9 9 9-4 9-9zm0-41c0-5-4-9-9-9s-9 4-9 9 4 9 9 9 9-4 9-9z" }))),
|
|
8196
|
+
key: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8197
|
+
React__default.default.createElement("path", { d: "M81.3 30c-3.1 3.1-8.1 3.1-11.4 0-3.1-3.1-3.1-8.1 0-11.4 3.1-3.1 8.1-3.1 11.4 0 3.1 3.3 3.1 8.3 0 11.4zm11.4-19.1C81.5-1.8 61.9-2.3 50.1 9.6c-7.9 7.9-10.3 19.1-7.4 29L2.5 78.9C1.4 80 .8 81.4.7 82.9L0 95.7c-.1 1.9 1.5 3.4 3.4 3.3l15.5-1.3c1.3-.2 2.4-.7 3.6-1.7V82.2h13v-13H51c6.5-6.2 11.3-11 11.3-11 10.5 3.1 22.4.2 30.2-8.6 9.9-10.8 10-27.7.2-38.7z" }))),
|
|
8198
|
+
label: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8199
|
+
React__default.default.createElement("path", { d: "M98.6 45.4L78.9 17.7c-3-4.2-7.9-6.7-13.1-6.7H10.6c-8 .5-12.8 9-9.5 16.2L9.3 50 1 72.6c-3 6.6.8 14.6 8 16.1.8.2 1.6.3 2.5.3h54.4c5.2 0 10.1-2.5 13.1-6.7l19.5-27.7c2-2.9 2-6.4.1-9.2z" }))),
|
|
8200
|
+
'layout-complex': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8201
|
+
React__default.default.createElement("path", { d: "M74 72H43v-4h31v4zM26 60v4h13v-4H26zm13 12v-4H26v4h13zm35-16v-4H43v4h31zm-35 0v-4H26v4h13zm4 4v4h31v-4H43zm47 35V5c0-2.7-3.2-5-6-5H15c-2.7 0-5 2.2-5 5v90c0 2.7 2.2 5 5 5h70c2.8 0 5-2.2 5-5zM79 76H21V48h58v28zm0-48H62v-4h17v4zm-23 8h-4v-4h4v4zm0-8h-4v-4h4v4zm23 8H62v-4h17v4zm-40-8H21v-4h18v4zm0 8H21v-4h18v4z" }))),
|
|
8202
|
+
'layout-simple': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8203
|
+
React__default.default.createElement("path", { d: "M85 100H15c-2.7 0-5-2.2-5-5V5c0-2.7 2.2-5 5-5h69c2.7 0 6 2.2 6 5v90c0 2.8-2.2 5-5 5zM46 52H21v4h25v-4zm0 20H21v4h25v-4zm0-10H21v4h25v-4zm0-30H21v4h25v-4zm0-10H21v4h25v-4zm0 20H21v4h25v-4zm8-6h25v-4H54v4zm0-10h25v-4H54v4zm0 20h25v-4H54v4zm0 20h25v-4H54v4zm0 10h25v-4H54v4zm0-20h25v-4H54v4z" }))),
|
|
8204
|
+
location: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8205
|
+
React__default.default.createElement("path", { d: "m22.85 43v-8.75h-11l-5.15-5.1 5.15-5.15h11v-4.35h-14.5v-10.3h14.5v-4.35h2.3v4.35h11l5.15 5.15-5.15 5.15h-11v4.35h14.5v10.25h-14.5v8.75zm-12.2-25.65h24.55l2.9-2.85-2.9-2.85h-24.55zm2.15 14.65h24.55v-5.75h-24.55l-2.9 2.9zm-2.15-14.65v-5.7 5.7zm26.7 14.65v-5.75 5.75z" }))),
|
|
8206
|
+
lock: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8207
|
+
React__default.default.createElement("path", { d: "M79 46.2V29C79 13 66 0 50 0S21 13 21 29v17.2c-5.7 1-10 5.9-10 11.8v30c0 6.6 5.4 12 12 12h54c6.6 0 12-5.4 12-12V58c0-5.9-4.3-10.9-10-11.8zM49.2 14c8.7-.4 15.8 6.5 15.8 15v17H35V29.4c0-8 6.2-15 14.2-15.4zm.8 71c-4.4 0-8-3.6-8-8v-8c0-4.4 3.6-8 8-8s8 3.6 8 8v8c0 4.4-3.6 8-8 8z" }))),
|
|
8208
|
+
menu: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8209
|
+
React__default.default.createElement("path", { d: "M94 24H6c-3.2 0-6-2.8-6-6s2.8-6 6-6h88c3.2 0 6 2.8 6 6s-2.8 6-6 6zM94 56H6c-3.2 0-6-2.8-6-6s2.8-6 6-6h88c3.2 0 6 2.8 6 6s-2.8 6-6 6zM94 88H6c-3.2 0-6-2.8-6-6s2.8-6 6-6h88c3.2 0 6 2.8 6 6s-2.8 6-6 6z" }))),
|
|
8210
|
+
'model-import': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8211
|
+
React__default.default.createElement("path", { d: "M96.4,19.1L88.6,4.7C87,1.8,83.9,0,80.7,0H19.3c-3.3,0-6.3,1.8-7.9,4.7L3.6,19.1c-1,1.9-1.6,4-1.6,6.1V91c0,5,4,9,9,9h78c5,0,9-4,9-9V25.2C98,23.1,97.5,21,96.4,19.1z M19.9,10h60.1l6,11H13.9L19.9,10z M12,90V31h76v59H12z M67.8,57.8L50,40L32.2,57.8l5.7,5.6l8.1-8.1V80h8V55.3l8.1,8.1L67.8,57.8" }))),
|
|
8212
|
+
'model-starter': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8213
|
+
React__default.default.createElement("path", { d: "M96.4,19.1L88.6,4.7C87,1.8,83.9,0,80.7,0H19.3c-3.3,0-6.3,1.8-7.9,4.7L3.6,19.1c-1,1.9-1.6,4-1.6,6.1V91c0,5,4,9,9,9h78c5,0,9-4,9-9V25.2C98,23.1,97.5,21,96.4,19.1z M19.9,10h60.1l6,11H13.9L19.9,10z M12,90V31h76v59H12z M66,64H54v12h-8V64H34v-8h12V44h8v12h12V64z" }))),
|
|
8214
|
+
moon: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8215
|
+
React__default.default.createElement("path", { d: "M98.7 52.5c-.8-.4-2.1-.3-2.9.8-6.2 7.9-16.2 12.1-26.2 12.1C50.4 65.4 35 50 35 30.8c0-10 4.2-19.2 12.1-26.2.8-.8 1.1-2.2.8-2.9C47.3.3 46.2 0 45 0 19.2 2.5 0 23.8 0 50c0 27.9 22.5 50 50 50 25.8 0 47.5-19.2 50-45 .1-1.2-.4-2.1-1.3-2.5z" }))),
|
|
8216
|
+
moonbow: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8217
|
+
React__default.default.createElement("path", { d: "M42 65c2.2 0 4 1.8 4 4v5c0 2.2-1.8 4-4 4H8.6c-2.7-4-4.8-8.3-6.3-13H42zm25-12v-5c0-2.2-1.8-4-4-4H.4c-.3 2-.4 4-.4 6 0 2.4.2 4.7.5 7H63c2.2 0 4-1.8 4-4zM51 23H7.9C5.4 27 3.4 31.4 2 36h49c2.2 0 4-1.8 4-4v-5c0-2.2-1.8-4-4-4zm49 27c0-27.6-22.4-50-50-50-.8 0-1.7 0-2.5.1-.2 0-.5 0-.7.1-.6 0-1.2.1-1.8.1-.3 0-.5.1-.8.1-.6.1-1.1.1-1.6.2-.3 0-.5.1-.8.1-.5.1-1.1.2-1.6.3-.3.1-.6.1-.8.2-.5.1-1 .2-1.5.4-.3.1-.6.2-.9.2-.5.1-1 .3-1.4.4l-.9.3c-.4.1-.9.3-1.3.4-.3.1-.7.2-1 .4-.4.1-.8.3-1.1.4-.5.2-.9.3-1.3.5-.3.1-.6.3-.9.4-.4.2-.9.4-1.3.6l-.6.3c-.5.3-1 .5-1.5.8-.1 0-.2.1-.3.1-3.2 1.8-6.2 4-9 6.5h18.4c4.7-1.9 9.8-3 15.2-3 22.1 0 40 17.9 40 40S72.1 90 50 90c-5.4 0-10.6-1.1-15.2-3H16.4c2.7 2.5 5.7 4.7 9 6.5.1 0 .2.1.3.1.5.3 1 .6 1.5.8l.6.3c.4.2.9.4 1.3.6.3.1.6.3.9.4.4.2.8.3 1.1.5.4.2.8.3 1.1.4.3.1.7.3 1 .4.4.2.9.3 1.3.4l.9.3c.5.1 1 .3 1.4.4.3.1.6.2.9.2.5.1 1 .2 1.5.4.3.1.6.1.8.2.5.1 1.1.2 1.6.3.3 0 .5.1.8.1.5.1 1.1.1 1.6.2.3 0 .5.1.8.1.6.1 1.2.1 1.8.1.2 0 .5 0 .7.1.8 0 1.7.1 2.5.1C77.6 100 100 77.6 100 50z" }))),
|
|
8218
|
+
'no-format': (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8219
|
+
React__default.default.createElement("path", { d: "m24 43q-3.95 0-7.425-1.5t-6.05-4.075-4.05-6.05-1.475-7.475q0-3.95 1.475-7.4t4.05-6.025 6.05-4.025 7.425-1.45 7.425 1.45 6.05 4.025 4.05 6.025 1.475 7.4q0 4-1.475 7.475t-4.05 6.05-6.05 4.075-7.425 1.5zm7.35-26h7.95q-1.75-3.8-4.875-6.225t-7.275-3.225q1.45 1.9 2.475 4.25t1.725 5.2zm-12.35 0h10.1q-0.65-2.8-1.975-5.3t-3.125-4.45q-1.7 1.55-2.875 3.85t-2.125 5.9zm-11.05 11.7h8.25q-0.15-1.4-0.2-2.55t-0.05-2.25q0-1.2 0.05-2.275t0.25-2.325h-8.3q-0.35 1.15-0.525 2.225t-0.175 2.375q0 1.35 0.175 2.475t0.525 2.325zm12.9 11.7q-1.45-1.8-2.525-4.225t-1.675-5.225h-7.95q1.9 3.9 4.8 6.125t7.35 3.325zm-12.15-23.4h7.95q0.65-2.75 1.675-5.075t2.475-4.325q-4.15 0.8-7.225 3.175t-4.875 6.225zm15.3 23.85q1.85-2.05 3.05-4.4t2-5.5h-10.05q0.75 3.1 1.95 5.5t3.05 4.4zm-5.45-12.15h10.95q0.2-1.55 0.275-2.6t0.075-2.2q0-1.05-0.075-2.075t-0.275-2.525h-10.95q-0.2 1.5-0.275 2.525t-0.075 2.075q0 1.15 0.075 2.2t0.275 2.6zm8.65 11.7q3.95-0.9 7.125-3.35t4.975-6.1h-7.9q-0.75 2.8-1.8 5.2t-2.4 4.25zm4.55-11.7h8.3q0.35-1.2 0.525-2.325t0.175-2.475q0-1.3-0.175-2.375t-0.525-2.225h-8.25q0.15 1.65 0.225 2.675t0.075 1.925q0 1.15-0.075 2.225t-0.275 2.575z" }))),
|
|
8220
|
+
'object-detection': (React__default.default.createElement("svg", { viewBox: "0 0 100 100" },
|
|
8221
|
+
React__default.default.createElement("g", null,
|
|
8222
|
+
React__default.default.createElement("path", { d: "M0,91V66h10v24h24v10H9C4,100,0,96,0,91z" }),
|
|
8223
|
+
React__default.default.createElement("path", { d: "M90,90H66v10h25c5,0,9-4,9-9V66H90V90z" })),
|
|
8224
|
+
React__default.default.createElement("g", null,
|
|
8225
|
+
React__default.default.createElement("path", { d: "M91,0H66v10h24v24h10V9C100,4,96,0,91,0z" }),
|
|
8226
|
+
React__default.default.createElement("path", { d: "M10,10h24V0H9C4,0,0,4,0,9v25h10V10z" })),
|
|
8227
|
+
React__default.default.createElement("rect", { x: "32", y: "32", width: "36", height: "36" }))),
|
|
8228
|
+
organizations: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8229
|
+
React__default.default.createElement("path", { d: "M86.9 53.9C85.9 43 80.3 33.4 72 27.2V26c0-12.2-9.8-22-22-22s-22 9.8-22 22v1.2c-8.3 6.2-14 15.7-14.9 26.6C5.4 57.3 0 65 0 74c0 12.2 9.8 22 22 22 5.2 0 10-1.8 13.8-4.9C40.2 93 45 94 50 94s9.8-1 14.2-2.9C68 94.2 72.8 96 78 96c12.2 0 22-9.8 22-22 0-9-5.4-16.7-13.1-20.1zM50 14c6.6 0 12 5.4 12 12s-5.4 12-12 12-12-5.4-12-12 5.4-12 12-12zM22 86c-6.6 0-12-5.4-12-12s5.4-12 12-12 12 5.4 12 12-5.4 12-12 12zm20.2-3.2c1.2-2.7 1.8-5.7 1.8-8.8 0-11.7-9.1-21.2-20.5-21.9 1-5.6 3.9-10.7 7.8-14.5C35.2 43.8 42.1 48 50 48s14.8-4.2 18.7-10.4c4 3.8 6.8 8.8 7.8 14.5C65.1 52.8 56 62.3 56 74c0 3.1.7 6.1 1.8 8.8-2.4.8-5.1 1.2-7.8 1.2s-5.4-.4-7.8-1.2zM78 86c-6.6 0-12-5.4-12-12s5.4-12 12-12 12 5.4 12 12-5.4 12-12 12z" }))),
|
|
8230
|
+
output: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8231
|
+
React__default.default.createElement("path", { d: "M56.2 26.6V0h-39c-2.6 0-4.7 2.1-4.7 4.7v90.6c0 2.6 2.1 4.7 4.7 4.7h65.6c2.6 0 4.7-2.1 4.7-4.7V31.2H60.9c-2.5 0-4.7-2.1-4.7-4.6zm15 41.2L52.3 86.5a3.32 3.32 0 01-4.7 0L28.8 67.8c-2-2-.6-5.3 2.2-5.3h12.7V46.9c0-1.7 1.4-3.1 3.1-3.1H53c1.7 0 3.1 1.4 3.1 3.1v15.6H69c2.8 0 4.2 3.4 2.2 5.3zm14.9-47.3L67 1.4C66.1.5 64.9 0 63.7 0h-1.2v25h25v-1.2c0-1.2-.5-2.4-1.4-3.3z" }))),
|
|
8232
|
+
'page-thumbnail': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8233
|
+
React__default.default.createElement("path", { d: "M56.2 26.6V0h-39c-2.6 0-4.7 2.1-4.7 4.7v90.6c0 2.6 2.1 4.7 4.7 4.7h65.6c2.6 0 4.7-2.1 4.7-4.7v-64H60.9c-2.5 0-4.7-2.2-4.7-4.7zm12.6 46.1c0 1.3-1.1 2.3-2.3 2.3H33.6c-1.3 0-2.3-1.1-2.3-2.3v-1.6c0-1.3 1.1-2.3 2.3-2.3h32.8c1.3 0 2.3 1.1 2.3 2.3v1.6zm0-12.5c0 1.3-1.1 2.3-2.3 2.3H33.6c-1.3 0-2.3-1.1-2.3-2.3v-1.6c0-1.3 1.1-2.3 2.3-2.3h32.8c1.3 0 2.3 1.1 2.3 2.3v1.6zm0-14.1v1.6c0 1.3-1.1 2.3-2.3 2.3H33.6c-1.3 0-2.3-1.1-2.3-2.3v-1.6c0-1.3 1.1-2.3 2.3-2.3h32.8c1.3 0 2.4 1 2.4 2.3zm18.7-22.3V25h-25V0h1.2c1.2 0 2.4.5 3.3 1.4l19.1 19.1c.9.9 1.4 2.1 1.4 3.3z" }))),
|
|
8234
|
+
'pay-as-you-go': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8235
|
+
React__default.default.createElement("path", { d: "M69.1 66.8c1 1 1.5 2.7.1 4.1-1.6 1.6-4.1 0-4.9-.8 0 0-18.1-15.7-18.3-15.9-1.2-1.2-1.8-2.6-1.6-4.2L46 19.4c.2-2 .8-3.4 2.8-3.4 2.2 0 2.8 1.2 2.8 3.4L54.2 47c0 .6.4 1.4.8 1.8l14.1 18zm16.4 18.6c1.4-1.4 1.4-3.6 0-4.9-1.4-1.4-3.6-1.4-4.9 0-8.2 8-19 12.5-30.5 12.5C26.3 93 7 73.7 7 50S26.3 7 50.1 7c1.9 0 3.5-1.6 3.5-3.5S52 0 50.1 0C22.5 0 0 22.4 0 50s22.5 50 50.1 50c13.4 0 25.9-5.2 35.4-14.6zm3.5-9.6c-1.7-1-2.3-3.1-1.3-4.7 1-1.7 3.1-2.3 4.8-1.3 1.7 1 2.3 3.1 1.3 4.8-.7 1.2-1.9 1.8-3.1 1.8-.6-.1-1.2-.3-1.7-.6zm5.9-12.6c-1.9-.4-3.1-2.3-2.7-4.1.4-1.9 2.3-3.1 4.1-2.7 1.9.4 3.1 2.3 2.7 4.1-.4 1.7-1.9 2.8-3.5 2.8-.1 0-.4-.1-.6-.1zm-1.9-17c-.2-1.9 1.3-3.6 3.2-3.8 1.9-.2 3.6 1.2 3.8 3.2.2 1.9-1.2 3.6-3.2 3.8h-.4c-1.7 0-3.2-1.4-3.4-3.2zm-3-12.5c-.7-1.8.1-3.8 1.9-4.6 1.8-.7 3.8.1 4.6 1.9.7 1.8-.1 3.8-1.9 4.5-.5.2-1 .3-1.4.3-1.4.1-2.7-.8-3.2-2.1zm-6.6-11c-1.2-1.5-1-3.7.5-4.9 1.5-1.2 3.7-1 4.9.5 1.2 1.5 1 3.7-.5 4.9-.7.5-1.5.8-2.3.8-1-.1-1.9-.5-2.6-1.3zm-9.6-8.6c-1.6-1.1-2-3.2-1-4.8 1.1-1.6 3.2-2.1 4.8-1 1.6 1.1 2 3.2 1 4.8-.7 1.1-1.8 1.6-3 1.6-.6-.1-1.2-.3-1.8-.6zM62.1 8.7c-1.9-.5-2.9-2.5-2.4-4.3.5-1.8 2.5-2.9 4.3-2.4 1.9.5 2.9 2.5 2.4 4.3-.4 1.6-1.8 2.6-3.4 2.5-.3 0-.6 0-.9-.1z" }))),
|
|
8236
|
+
person: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8237
|
+
React__default.default.createElement("path", { d: "m24 23.35q-2.9 0-4.775-1.875t-1.875-4.775 1.875-4.75 4.775-1.85 4.775 1.85 1.875 4.75-1.875 4.775-4.775 1.875zm-15 15.25v-3.8q0-1.6 0.85-2.8t2.2-1.85q3.2-1.4 6.125-2.1t5.825-0.7 5.825 0.725 6.075 2.125q1.4 0.65 2.25 1.825t0.85 2.775v3.8zm2.25-2.25h25.5v-1.55q0-0.75-0.5-1.475t-1.3-1.125q-2.95-1.45-5.575-2.025t-5.375-0.575-5.425 0.575-5.575 2.025q-0.75 0.4-1.25 1.125t-0.5 1.475zm12.75-15.25q1.85 0 3.1-1.25t1.25-3.15q0-1.85-1.25-3.1t-3.1-1.25-3.1 1.25-1.25 3.1q0 1.9 1.25 3.15t3.1 1.25zm0-4.4zm0 19.65z" }))),
|
|
8238
|
+
phone: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8239
|
+
React__default.default.createElement("path", { d: "m20.15 40.9h7.7v-1.75h-7.7zm-6.9-5.8h21.5v-25.45h-21.5zm0.65 9.9q-1.2 0-2.05-0.85t-0.85-2.05v-36.2q0-1.2 0.85-2.05t2.05-0.85h20.2q1.2 0 2.05 0.85t0.85 2.05v36.2q0 1.2-0.85 2.05t-2.05 0.85zm-0.65-37.6h21.5v-1.5q0-0.25-0.2-0.45t-0.45-0.2h-20.2q-0.25 0-0.45 0.2t-0.2 0.45zm0-2.15t0 0.175 0 0.475v1.5-1.5q0-0.3 0-0.475t0-0.175zm0 32.1v4.75q0 0.25 0.2 0.45t0.45 0.2h20.2q0.25 0 0.45-0.2t0.2-0.45v-4.75zm0 5.4t0-0.175 0-0.475v-4.75 4.75q0 0.3 0 0.475t0 0.175z" }))),
|
|
8240
|
+
pin: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8241
|
+
React__default.default.createElement("path", { d: "M63.9,72.1c-0.7-2.9,0.1-6,2.1-8.3l20.9-23.2c0,0,9.3,2.4,11.9-0.1c4.2-4.2-2.9-14.4-13.9-25.4 C75.8,6,63.5-3,59.4,1.1C56.9,3.7,59.3,13,59.3,13L36.1,33.9c-2.2,2-5.3,2.8-8.3,2.1c-6-1.4-16.1-3.1-19.8,0.6 c-2.2,2.2-2.4,5.7,0.8,8.8l18.5,18.5L1.3,94.6c-3.3,3.7,0.3,7.3,4,4l30.7-25.9l18.5,18.5c3.3,3.3,6.6,3,8.8,0.8 C67,88.2,65.3,78.1,63.9,72.1z" }))),
|
|
8242
|
+
plus: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8243
|
+
React__default.default.createElement("path", { d: "M94 44H56V6c0-3.3-2.7-6-6-6s-6 2.7-6 6v38H6c-3.3 0-6 2.7-6 6s2.7 6 6 6h38v38c0 3.3 2.7 6 6 6s6-2.7 6-6V56h38c3.3 0 6-2.7 6-6s-2.7-6-6-6z" }))),
|
|
8244
|
+
pointer: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8245
|
+
React__default.default.createElement("path", { d: "M80.8 64.3H60.1L71 90.8c.8 1.8-.1 3.9-1.8 4.7l-9.6 4.2c-1.8.8-3.8-.1-4.6-1.9L44.6 72.6 27.7 90c-2.3 2.3-5.9.5-5.9-2.5V3.6c0-3.2 3.9-4.8 5.9-2.5l55.5 57.1c2.3 2.2.6 6.1-2.4 6.1z" }))),
|
|
8246
|
+
popup: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8247
|
+
React__default.default.createElement("path", { d: "M78 65c0-3.9 3.1-7 7-7s7 3.1 7 7v25.7c0 5.1-4.2 9.3-9.3 9.3H9.3C4.2 100 0 95.8 0 90.7V17.3C0 12.2 4.2 8 9.3 8H35c3.9 0 7 3.1 7 7s-3.1 7-7 7H14v64h64V65zM93 0H57c-3.9 0-7 3.1-7 7s3.1 7 7 7h17L41.5 46.5c-3 3-3 8 0 11s8 3 11 0L86 24v19c0 3.9 3.1 7 7 7s7-3.1 7-7V7c0-3.9-3.1-7-7-7z" }))),
|
|
8248
|
+
price: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8249
|
+
React__default.default.createElement("path", { d: "m25.8 43q-0.45 0-0.875-0.15t-0.825-0.5l-18.4-18.45q-0.4-0.35-0.55-0.775t-0.15-0.925v-14.95q0-0.95 0.65-1.6t1.6-0.65h14.95q0.45 0 0.925 0.15t0.825 0.5l18.35 18.35q0.8 0.75 0.8 1.7t-0.75 1.7l-14.95 14.95q-0.3 0.3-0.725 0.475t-0.875 0.175zm0.05-2.2 14.95-14.95-18.55-18.6h-15v14.95zm-13.4-26.15q0.9 0 1.55-0.675t0.65-1.575-0.65-1.55-1.55-0.65-1.55 0.65-0.65 1.55 0.65 1.575 1.55 0.675z" }))),
|
|
8250
|
+
'radio-button': (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8251
|
+
React__default.default.createElement("g", { transform: "translate(1 1)" },
|
|
8252
|
+
React__default.default.createElement("path", { d: "m49.9 72.5c6.3 0 11.6-2.2 15.9-6.5s6.5-9.7 6.5-15.9-2.2-11.6-6.5-15.9-9.7-6.5-15.9-6.5-11.5 2.1-15.9 6.4c-4.3 4.3-6.5 9.7-6.5 15.9s2.2 11.6 6.5 16 9.7 6.5 15.9 6.5zm0 27.5c-6.8 0-13.3-1.3-19.4-3.9s-11.4-6.2-15.9-10.7-8.1-9.8-10.7-15.9-3.9-12.5-3.9-19.4 1.3-13.4 3.9-19.5 6.2-11.4 10.7-15.9 9.8-8.1 15.9-10.7 12.5-4 19.4-4 13.4 1.3 19.5 4 11.4 6.2 15.9 10.7 8 9.7 10.7 15.8 4 12.6 4 19.6c0 6.9-1.3 13.4-4 19.5s-6.2 11.4-10.7 15.9-9.8 8.1-15.8 10.7c-6.1 2.5-12.6 3.8-19.6 3.8zm0-9.5c11.3 0 20.8-3.9 28.6-11.8s11.8-17.4 11.8-28.6c0-11.3-3.9-20.8-11.8-28.6s-17.3-11.8-28.6-11.8c-11.2 0-20.7 3.9-28.6 11.8s-11.8 17.3-11.8 28.6c0 11.2 3.9 20.7 11.8 28.6s17.5 11.8 28.6 11.8z" })))),
|
|
8253
|
+
recruiter: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8254
|
+
React__default.default.createElement("path", { d: "M50 21c-16 0-29 13-29 29 0 6.2 1.9 11.9 5.3 16.6-.1.1-.3.2-.4.3l-24 24c-2 2-2 5.2 0 7.2s5.2 2 7.2 0L33 74.2c.1-.1.2-.3.3-.4C38.1 77.1 43.8 79 50 79c16 0 29-13 29-29S66 21 50 21zm0 48c-10.5 0-19-8.5-19-19s8.5-19 19-19 19 8.5 19 19-8.5 19-19 19zm50-19c0 27.6-22.4 50-50 50-9.2 0-17.8-2.5-25.2-6.8l7.4-7.4C37.5 88.5 43.6 90 50 90c22.1 0 40-17.9 40-40S72.1 10 50 10 10 27.9 10 50c0 6.4 1.5 12.5 4.2 17.8l-7.4 7.4C2.5 67.8 0 59.2 0 50 0 22.4 22.4 0 50 0s50 22.4 50 50z" }))),
|
|
8255
|
+
regex: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8256
|
+
React__default.default.createElement("path", { d: "M28.85 39.1V36.85H34Q35.2 36.85 36.025 36.025Q36.85 35.2 36.85 34V29.1Q36.85 27.35 37.925 25.975Q39 24.6 40.65 24.15V23.85Q39 23.4 37.925 22.025Q36.85 20.65 36.85 18.9V14Q36.85 12.8 36.025 11.975Q35.2 11.15 34 11.15H28.85V8.9H34Q36.15 8.9 37.625 10.4Q39.1 11.9 39.1 14V18.9Q39.1 20.15 39.95 20.975Q40.8 21.8 42.05 21.8H42.9V26.2H42.05Q40.8 26.2 39.95 27.025Q39.1 27.85 39.1 29.1V34Q39.1 36.1 37.6 37.6Q36.1 39.1 34 39.1ZM14 39.1Q11.85 39.1 10.375 37.6Q8.9 36.1 8.9 34V29.1Q8.9 27.85 8.05 27.025Q7.2 26.2 5.95 26.2H5.1V21.8H5.95Q7.2 21.8 8.05 20.975Q8.9 20.15 8.9 18.9V14Q8.9 11.9 10.4 10.4Q11.9 8.9 14 8.9H19.15V11.15H14Q12.8 11.15 11.975 11.975Q11.15 12.8 11.15 14V18.9Q11.15 20.65 10.075 22.025Q9 23.4 7.35 23.85V24.15Q9 24.6 10.075 25.975Q11.15 27.35 11.15 29.1V34Q11.15 35.2 11.975 36.025Q12.8 36.85 14 36.85H19.15V39.1Z" }))),
|
|
8257
|
+
reject: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8258
|
+
React__default.default.createElement("path", { d: "M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm26.2 23.8C89.4 37 90.3 57.1 80.4 71.3L28.7 19.6c14.2-9.9 34.3-9 47.5 4.2zM23.8 76.2C10.6 63 9.7 42.9 19.6 28.7l51.7 51.7c-14.2 10-34.3 9-47.5-4.2z" }))),
|
|
8259
|
+
repair: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8260
|
+
React__default.default.createElement("path", { d: "M98.2 36.7c1.2 4.3 1.8 8.8 1.8 13.5-.1 26.3-21.1 48.4-47.4 49.7-29.7 1.5-54-22.8-52.5-52.5C1.4 21.5 22.8.6 48.8 0c18.9-.5 35.6 9.6 44.4 24.8L47.6 70.4c-1.2 1.2-3.1 1.2-4.2 0L21.9 49c-1.2-1.2-1.2-3.1 0-4.2l4.2-4.2c1.2-1.2 3.1-1.2 4.2 0l15.1 15.1 33.3-33.3C71.2 14.3 60.3 9.5 48.3 10c-20.2.8-36.8 17-38.2 37.1C8.5 70.6 27 90 50 90c22.1 0 40-17.9 40-40 0-1.6-.1-3.1-.3-4.7l8.5-8.6z" }))),
|
|
8261
|
+
research: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8262
|
+
React__default.default.createElement("path", { d: "M84.6 84.3L62.2 49.6c-.3-.7-.7-1-.7-1.7V37c2.1 0 3.5-1.4 3.5-3.5S63.6 30 61.5 30h-21c-1.7 0-3.5 1.4-3.5 3.5s1.4 3.5 3.5 3.5v10.8c0 .7 0 1-.3 1.4l-22.7 35c-3.8 7 1 15.7 9.1 15.7h49c7.6.1 13.2-8.3 9-15.6zM46.1 53.1c1-1.7 1.4-3.5 1.4-5.2V37h7v10.8c0 1.7.3 3.5 1.4 5.2l7.7 12H38.4l7.7-11.9zM75.5 93h-49c-2.8 0-4.2-3.1-3.1-4.9l10.5-15.7h34.3l10.1 15.7c1.4 2.1-.4 4.9-2.8 4.9zM51 25.8c-4 0-7.3-3.3-7.3-7.3s3.3-7.3 7.3-7.3 7.3 3.3 7.3 7.3-3.3 7.3-7.3 7.3zm0-9.6c-1.2 0-2.3 1-2.3 2.3s1 2.3 2.3 2.3c1.2 0 2.3-1 2.3-2.3s-1-2.3-2.3-2.3zM69.9 18.3c-4.9 0-8.8-4-8.8-8.8s4-8.8 8.8-8.8c4.9 0 8.8 4 8.8 8.8s-3.9 8.8-8.8 8.8zm0-12.6c-2.1 0-3.8 1.7-3.8 3.8s1.7 3.8 3.8 3.8c2.1 0 3.8-1.7 3.8-3.8S72 5.7 69.9 5.7z" }))),
|
|
8263
|
+
retrain: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8264
|
+
React__default.default.createElement("path", { d: "M98.4 20.3l-26 17.2c-1 .7-2.4-.1-2.4-1.3V26H21v25.1c0 .3-.2.7-.5.8-1.9 1.2-8.9 5.6-12 7.6-.7.4-1.5-.1-1.5-.8V16c0-2.2 1.8-4 4-4h59V1.8c0-1.2 1.4-2 2.4-1.3l26 17.2c1 .6 1 2 0 2.6zM79 48.9V74H30V63.8c0-1.2-1.4-2-2.4-1.3l-26 17.2c-1 .6-1 2 0 2.6l26 17.2c1 .7 2.4-.1 2.4-1.3V88h59c2.2 0 4-1.8 4-4V41.3c0-.8-.8-1.2-1.5-.8-3.1 2-10.2 6.4-12 7.6-.3.2-.5.5-.5.8z" }))),
|
|
8265
|
+
sad: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8266
|
+
React__default.default.createElement("path", { d: "M100 50c0 27.6-22.4 50-50 50S0 77.6 0 50 22.4 0 50 0s50 22.4 50 50zM61.6 70.5c-3.2-2.4-7.1-3.9-11.6-3.9s-8.5 1.4-11.6 3.9c-1.9 1.5-3.2 2.9-3.9 4.1-.9 1.5-.5 3.5 1 4.4 1.5.9 3.5.5 4.4-1 .3-.5 1.1-1.4 2.3-2.3C44.3 74 46.9 73 50 73s5.7 1 7.8 2.5c1.2.9 2 1.9 2.3 2.3.9 1.5 2.9 2 4.4 1 1.5-.9 2-2.9 1-4.4-.7-1-1.9-2.5-3.9-3.9zM24.5 44.9c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm52 .2c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zM29.8 34c-.5-1.3-2-1.9-3.3-1.3l-12 5c-1.3.5-1.9 2-1.3 3.3.4 1 1.3 1.5 2.3 1.5.3 0 .6-.1 1-.2l12-5c1.2-.5 1.8-2 1.3-3.3zm55.7 3.7l-12-5c-1.3-.5-2.7.1-3.3 1.3-.5 1.3.1 2.7 1.3 3.3l12 5c.3.1.6.2 1 .2 1 0 1.9-.6 2.3-1.5.5-1.3-.1-2.8-1.3-3.3z" }))),
|
|
8267
|
+
search: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8268
|
+
React__default.default.createElement("path", { d: "M39.4.4C17.9.4.4 17.9.4 39.4s17.5 39 39 39c8.8 0 16.9-2.9 23.4-7.8-.3 1.9.2 3.8 1.7 5.2l22 22c1.2 1.2 2.7 1.8 4.3 1.8s3.1-.6 4.3-1.8l2.8-2.8c2.4-2.4 2.4-6.2 0-8.5l-22-22c-1.2-1.2-2.7-1.8-4.2-1.8-.3 0-.7 0-1 .1 4.9-6.5 7.8-14.6 7.8-23.4C78.4 17.9 61 .4 39.4.4zm0 63c-13.2 0-24-10.8-24-24s10.8-24 24-24 24 10.8 24 24c0 13.3-10.7 24-24 24z" }))),
|
|
8269
|
+
shrug: (React__default.default.createElement("svg", { viewBox: "0 0 250 66", fill: "currentColor" },
|
|
8270
|
+
React__default.default.createElement("path", { d: "M2.1 4.7C.7 4.7 0 3.6 0 2.3 0 .9.7 0 2.1 0h15.8c1.4 0 2 .9 2 2.3s-.6 2.4-2 2.4H2.1zm47.6 57.7c.2.4.3.8.3 1.2 0 1-.7 1.8-1.9 2.2-.4.1-.9.2-1.2.2-1.1 0-1.9-.5-2.4-1.6L21.7 3.7c-.1-.4-.2-.8-.2-1.1 0-1 .7-1.8 1.9-2.3.4-.1.8-.2 1.1-.2 1.1 0 2 .5 2.4 1.7l22.8 60.6zm4.1 3.6c-1.4 0-2.1-1-2.1-2.4s.7-2.3 2.1-2.3h23.8c1.4 0 2 .9 2 2.3s-.6 2.4-2 2.4H53.8zM232.1 4.7c-1.4 0-2-1-2-2.4s.6-2.3 2-2.3h15.8c1.4 0 2.1.9 2.1 2.3s-.7 2.4-2.1 2.4h-15.8zm-9-2.8c.4-1.2 1.2-1.7 2.4-1.7.3 0 .7.1 1.1.2 1.2.4 1.9 1.2 1.9 2.3 0 .3-.1.7-.2 1.1l-22.7 60.6c-.5 1.1-1.3 1.6-2.4 1.6-.3 0-.8-.1-1.2-.2-1.1-.4-1.9-1.2-1.9-2.2 0-.3.1-.8.3-1.2l22.7-60.5zM171.4 66c-1.4 0-2-1-2-2.4s.6-2.3 2-2.3h24.8c1.4 0 2.1.9 2.1 2.3s-.7 2.4-2.1 2.4h-24.8zM90.8 3.5c0 .5-.2 1-.6 1.6-6.1 8.2-9.7 16.3-9.7 28.1 0 11.9 3.6 20.1 9.6 28.2.4.6.6 1.2.6 1.6 0 1-.6 1.7-1.4 2.3-.6.5-1.3.7-2 .7-.8 0-1.6-.4-2.3-1.3-6.9-9.5-10.5-18.6-10.5-31.5 0-12.9 3.6-21.9 10.6-31.3.7-.9 1.6-1.3 2.4-1.3.7 0 1.3.2 1.8.6.8.5 1.5 1.3 1.5 2.3zm10.6 1.4c1 0 1.8.5 2.4 1.4 2.8 5.2 5.5 12.5 7.2 18.1.1.5.2.9.2 1.2 0 1.2-.7 2.1-2 2.5-.4.1-.8.2-1.2.2-1.2 0-2.2-.8-2.6-2-1.5-5.3-4.5-12.7-6.8-17.5-.2-.5-.3-.9-.3-1.3 0-1.1.6-2 1.8-2.4.4-.1.8-.2 1.3-.2zm49.9 1.3v.4c-1.1 11.5-5 22.9-10.7 30.8-6.7 9-17.2 15.9-28.2 18.4-.3.1-.7.1-1 .1-1.3 0-2.2-.6-2.6-2.1-.1-.3-.1-.7-.1-1 0-1.4.9-2.3 2.3-2.7 10-2.9 19.2-8.4 25-16.4 5.2-7.1 8.5-17.3 9.5-28 .1-1.8 1.4-2.5 2.8-2.5.3 0 .5 0 .7.1 1.3.2 2.3 1.3 2.3 2.9zm-32.1-4.7c1.1 0 2.2.5 2.8 1.7 2.3 5.1 4.9 11.7 6.5 17.5.1.3.1.5.1.8 0 1.4-.9 2.5-2.2 2.8-.3.1-.7.1-1.1.1-1.2 0-2.2-.6-2.6-1.9-1.4-5.5-4.1-12.5-6.3-17.1-.2-.5-.3-1-.3-1.4 0-1.1.7-1.9 1.9-2.3.4-.2.8-.2 1.2-.2zm42.8-1c.9 0 1.8.4 2.4 1.3 7 9.5 10.7 18.4 10.7 31.3 0 12.9-3.7 22-10.6 31.5-.6.9-1.4 1.3-2.3 1.3-.6 0-1.3-.3-1.9-.7-.8-.5-1.4-1.4-1.4-2.3 0-.5.2-1.1.6-1.6 5.9-8.1 9.6-16.3 9.6-28.2 0-11.8-3.6-19.9-9.7-28.1-.4-.5-.6-1.1-.6-1.6 0-.9.5-1.7 1.4-2.3.5-.4 1.2-.6 1.8-.6z" }))),
|
|
8271
|
+
signature: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8272
|
+
React__default.default.createElement("g", { transform: "translate(1 1)" },
|
|
8273
|
+
React__default.default.createElement("path", { d: "m28.9 48.7-2.4-2.7-18.9 18.8h-7.5v-7.7l41.9-41.8c3.7-3.2 10-9 27.4-9 5.6 0 11.1 1.2 16.5 3.7 5.4 2.4 10.1 5.5 14.3 9.1l-21.6 21.4h-7.6v8.9c-3 3-6.5 5.2-10.4 6.6-4 1.4-7.9 2-11.7 2-11.7 0.1-18.9-7.9-20-9.3zm54.5-28.3c-2.2-1.1-4.4-1.9-6.6-2.6-2.2-0.6-4.7-1-7.4-1-4.7 0-9.1 1-13.2 2.9s-7.9 4.6-11.3 8l-10.6 10.7 2.6 2.9c1.1 1.3 2.9 2.6 5.6 4.1 2.7 1.4 5.3 2.2 7.8 2.2 1.8 0 3.6-0.3 5.3-0.8s3.3-1.3 4.9-2.4v-14.6h13.5l9.4-9.4z" }),
|
|
8274
|
+
React__default.default.createElement("path", { d: "m97.7 63.2c-5.9-4.9-10.2 4.3-14.7 7.2-5.5 4.7-11.4 9.3-18.2 12.1 1.1-6.5 2.8-17.7-4.9-17.7-5.6 0-14.9 10.8-20.9 15.8 0.8-6.2-1.4-12.9-8.1-12.9-1.9 0-4.2 1-6.2 3.2-2.8 3.1-7.4 11.7-12 11.8-0.7 0-3.5-0.5-1.8-7.9 1.4-6.3-8-8.9-9.6-2.7-6.2 23.7 16.7 27.5 27.7 9 0.6 24.7 17.5 6.8 26.1-2.1-3.9 19.2 7.1 16.7 19.9 9.7 5.2-3.6 29.9-18.7 22.7-25.5z" })))),
|
|
8275
|
+
'sort-down': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8276
|
+
React__default.default.createElement("path", { d: "M58.1,74.2H45.2l0,0c-1.8,0-3.2,1.4-3.2,3.2l0,0v3.2l0,0\n c0,1.8,1.4,3.2,3.2,3.2h12.9l0,0c1.8,0,3.2-1.4,3.2-3.2v-3.2l0,0C61.3,75.6,59.8,74.2,58.1,74.2L58.1,74.2z M29.8,75.8H21V8.1l0,0\n c0-1.8-1.4-3.2-3.2-3.2h-3.2l0,0c-1.8,0-3.2,1.4-3.2,3.2l0,0v67.7h-9l0,0c-1.3,0-2.4,1.1-2.4,2.4c0,0.6,0.2,1.2,0.7,1.7l13.7,14.5\n l0,0c0.9,1,2.4,1,3.4,0.1l0.1-0.1l13.7-14.5l0,0c0.9-1,0.9-2.5-0.1-3.4C31,76,30.5,75.8,29.8,75.8L29.8,75.8z M83.9,35.5H45.2l0,0\n c-1.8,0-3.2,1.4-3.2,3.2l0,0v3.2l0,0c0,1.8,1.4,3.2,3.2,3.2h38.7l0,0c1.8,0,3.2-1.4,3.2-3.2v-3.2l0,0C87.1,36.9,85.7,35.5,83.9,35.5\n L83.9,35.5z M96.8,16.1H45.2l0,0c-1.8,0-3.2,1.4-3.2,3.2l0,0v3.2l0,0c0,1.8,1.4,3.2,3.2,3.2h51.6l0,0c1.8,0,3.2-1.4,3.2-3.2v-3.2\n l0,0C100,17.6,98.6,16.1,96.8,16.1L96.8,16.1z M71,54.8H45.2l0,0c-1.8,0-3.2,1.4-3.2,3.2l0,0v3.2l0,0c0,1.8,1.4,3.2,3.2,3.2H71l0,0\n c1.8,0,3.2-1.4,3.2-3.2V58l0,0C74.2,56.3,72.7,54.8,71,54.8L71,54.8z" }))),
|
|
8277
|
+
split: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8278
|
+
React__default.default.createElement("path", { d: "M62.1 50l37.1-37.1c1-1 1-2.7 0-3.8-7.3-7.3-19.2-7.3-26.5 0L46.9 34.9l-5.5-5.5c1-2.4 1.5-5.1 1.5-7.9C42.9 9.6 33.3 0 21.4 0S0 9.6 0 21.4s9.6 21.4 21.4 21.4c1 0 2-.1 3-.2l7.4 7.4-7.4 7.4c-1-.1-2-.2-3-.2C9.6 57.1 0 66.7 0 78.6S9.6 100 21.4 100s21.4-9.6 21.4-21.4c0-2.8-.5-5.4-1.5-7.9l5.5-5.5L72.6 91c7.3 7.3 19.2 7.3 26.5 0 1-1 1-2.7 0-3.8L62.1 50zM21.4 28.6c-3.9 0-7.1-3.2-7.1-7.1s3.2-7.1 7.1-7.1 7.1 3.2 7.1 7.1-3.1 7.1-7.1 7.1zm0 57.1c-3.9 0-7.1-3.2-7.1-7.1 0-3.9 3.2-7.1 7.1-7.1s7.1 3.2 7.1 7.1c.1 3.9-3.1 7.1-7.1 7.1z" }))),
|
|
8279
|
+
'step-forward': (React__default.default.createElement("svg", { viewBox: "0 0 11 16", fill: "currentColor" },
|
|
8280
|
+
React__default.default.createElement("path", { d: "M11 .429V15.57a.422.422 0 0 1-.412.429h-1.65a.422.422 0 0 1-.413-.429v-6.3l-6.72 6.464c-.708.611-1.805.1-1.805-.878V1.143C0 .165 1.097-.347 1.805.265l6.72 6.424V.43c0-.236.186-.429.412-.429h1.65c.227 0 .413.193.413.429Z" }))),
|
|
8281
|
+
sun: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8282
|
+
React__default.default.createElement("path", { d: "M49.8 23.8c-14.6 0-26.4 11.7-26.4 26.4s11.7 26.4 26.4 26.4 26.4-11.7 26.4-26.4-11.8-26.4-26.4-26.4zM50 16c-2.2 0-4-1.8-4-4V4c0-2.2 1.8-4 4-4s4 1.8 4 4v8c0 2.2-1.8 4-4 4zm-17 4.6c-1.9 1.1-4.4.4-5.5-1.5l-4-6.9c-1.1-1.9-.4-4.4 1.5-5.5 1.9-1.1 4.4-.4 5.5 1.5l4 6.9c1.1 1.9.4 4.4-1.5 5.5zM20.6 33c-1.1 1.9-3.6 2.6-5.5 1.5l-6.9-4c-1.9-1.1-2.6-3.6-1.5-5.5s3.6-2.6 5.5-1.5l6.9 4c1.9 1.1 2.6 3.6 1.5 5.5zM16 50c0 2.2-1.8 4-4 4H4c-2.2 0-4-1.8-4-4s1.8-4 4-4h8c2.2 0 4 1.8 4 4zm4.6 17c1.1 1.9.4 4.4-1.5 5.5l-6.9 4c-1.9 1.1-4.4.4-5.5-1.5-1.1-1.9-.4-4.4 1.5-5.5l6.9-4c1.9-1.1 4.4-.4 5.5 1.5zM33 79.4c1.9 1.1 2.6 3.6 1.5 5.5l-4 6.9c-1.1 1.9-3.6 2.6-5.5 1.5s-2.6-3.6-1.5-5.5l4-6.9c1.1-1.9 3.6-2.6 5.5-1.5zM50 84c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4s-4-1.8-4-4v-8c0-2.2 1.8-4 4-4zm17-4.6c1.9-1.1 4.4-.4 5.5 1.5l4 6.9c1.1 1.9.4 4.4-1.5 5.5-1.9 1.1-4.4.4-5.5-1.5l-4-6.9c-1.1-1.9-.4-4.4 1.5-5.5zM79.4 67c1.1-1.9 3.6-2.6 5.5-1.5l6.9 4c1.9 1.1 2.6 3.6 1.5 5.5s-3.6 2.6-5.5 1.5l-6.9-4c-1.9-1.1-2.6-3.6-1.5-5.5zM84 50c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4s-1.8 4-4 4h-8c-2.2 0-4-1.8-4-4zm-4.6-17c-1.1-1.9-.4-4.4 1.5-5.5l6.9-4c1.9-1.1 4.4-.4 5.5 1.5 1.1 1.9.4 4.4-1.5 5.5l-6.9 4c-1.9 1.1-4.4.4-5.5-1.5zM67 20.6c-1.9-1.1-2.6-3.6-1.5-5.5l4-6.9c1.1-1.9 3.6-2.6 5.5-1.5s2.6 3.6 1.5 5.5l-4 6.9c-1.1 1.9-3.6 2.6-5.5 1.5z" }))),
|
|
8283
|
+
surround: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8284
|
+
React__default.default.createElement("path", { d: "M100 25V6.2c0-3.5-2.8-6.2-6.2-6.2H75c-3.5 0-6.2 2.8-6.2 6.2H31.2C31.2 2.8 28.5 0 25 0H6.2C2.8 0 0 2.8 0 6.2V25c0 3.5 2.8 6.2 6.2 6.2v37.5C2.8 68.8 0 71.5 0 75v18.8c0 3.5 2.8 6.2 6.2 6.2H25c3.5 0 6.2-2.8 6.2-6.2h37.5c0 3.5 2.8 6.2 6.2 6.2h18.8c3.5 0 6.2-2.8 6.2-6.2V75c0-3.5-2.8-6.2-6.2-6.2V31.2c3.5 0 6.3-2.7 6.3-6.2zM81.2 12.5h6.2v6.2h-6.2v-6.2zm-68.7 0h6.2v6.2h-6.2v-6.2zm6.3 75h-6.2v-6.2h6.2v6.2zm68.7 0h-6.2v-6.2h6.2v6.2zm-6.3-18.7H75c-3.5 0-6.2 2.8-6.2 6.2v6.2H31.2V75c0-3.5-2.8-6.2-6.2-6.2h-6.2V31.2H25c3.5 0 6.2-2.8 6.2-6.2v-6.2h37.5V25c0 3.5 2.8 6.2 6.2 6.2h6.2v37.6z" }))),
|
|
8285
|
+
'surround-outline': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8286
|
+
React__default.default.createElement("path", { d: "M89.3,71.9V28.1c6.2-1.6,10.7-7.1,10.7-13.8C100,6.4,93.6,0,85.7,0\n\tc-6.6,0-12.2,4.6-13.8,10.7H28.1C26.5,4.6,20.9,0,14.3,0C6.4,0,0,6.4,0,14.3c0,6.6,4.6,12.2,10.7,13.8v43.9C4.6,73.5,0,79.1,0,85.7\n\tC0,93.6,6.4,100,14.3,100c6.6,0,12.2-4.6,13.8-10.7h43.9c1.6,6.2,7.1,10.7,13.8,10.7c7.9,0,14.3-6.4,14.3-14.3\n\tC100,79.1,95.4,73.5,89.3,71.9z M71.9,82.1H28.1c-1.3-5-5.2-8.9-10.2-10.2V28.1c5-1.3,8.9-5.2,10.2-10.2h43.9\n\tc1.3,5,5.2,8.9,10.2,10.2v43.9C77.1,73.2,73.2,77.1,71.9,82.1z M85.7,7.1c3.9,0,7.1,3.2,7.1,7.1s-3.2,7.1-7.1,7.1\n\tc-3.9,0-7.1-3.2-7.1-7.1S81.8,7.1,85.7,7.1z M7.1,14.3c0-3.9,3.2-7.1,7.1-7.1s7.1,3.2,7.1,7.1s-3.2,7.1-7.1,7.1S7.1,18.2,7.1,14.3z\n\t M14.3,92.9c-3.9,0-7.1-3.2-7.1-7.1s3.2-7.1,7.1-7.1s7.1,3.2,7.1,7.1S18.2,92.9,14.3,92.9z M85.7,92.9c-3.9,0-7.1-3.2-7.1-7.1\n\ts3.2-7.1,7.1-7.1c3.9,0,7.1,3.2,7.1,7.1S89.6,92.9,85.7,92.9z" }))),
|
|
8287
|
+
swagger: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8288
|
+
React__default.default.createElement("path", { d: "M50,0C22.4,0,0,22.4,0,50s22.4,50,50,50s50-22.4,50-50S77.6,0,50,0z M50,4.8C75,4.8,95.2,25,95.2,50S75,95.2,50,95.2 C25,95.2,4.8,75,4.8,50S25,4.8,50,4.8z M34.9,24.4c-0.6,0-1.2,0-1.8,0c-4.1,0.2-6.5,2.2-7.2,6.1c-0.5,2.8-0.4,5.6-0.6,8.4 c-0.1,1.5-0.2,2.9-0.5,4.3c-0.6,2.5-1.6,3.3-4.2,3.5c-0.3,0-0.7,0.1-1,0.2v6.1c4.7,0.2,5.3,1.9,5.7,6.8c0.1,1.8,0,3.6,0.1,5.4 c0.1,1.7,0.3,3.4,0.6,5c1.1,4.5,5.5,6,10.7,5.1v-5.4c-0.9,0-1.6,0-2.3,0c-1.8-0.1-2.5-0.5-2.6-2.2c-0.2-2.2-0.2-4.5-0.3-6.7 c-0.3-4.2-0.7-8.3-4.8-10.9c2.1-1.5,3.6-3.4,4.1-5.8c0.3-1.7,0.6-3.4,0.7-5.2c0.1-1.7-0.1-3.5,0.1-5.2c0.2-2.8,0.4-3.9,3.7-3.8 c0.5,0,1-0.1,1.5-0.1v-5.5C36.1,24.5,35.5,24.5,34.9,24.4z M66.5,24.5c-1.1,0-2.3,0-3.4,0.2V30c1,0,1.8,0,2.6,0 c1.4,0,2.4,0.6,2.5,2.1c0.1,1.4,0.1,2.8,0.3,4.2c0.3,2.8,0.4,5.6,0.9,8.4c0.4,2.3,2,4,3.9,5.4c-3.4,2.3-4.4,5.5-4.6,9.2 c-0.1,2.5-0.2,5-0.3,7.6c-0.1,2.3-0.9,3.1-3.3,3.1c-0.7,0-1.3,0.1-2,0.1v5.4c1.3,0,2.6,0.1,3.9,0c3.9-0.2,6.2-2.1,7-5.9 c0.3-2.1,0.5-4.2,0.6-6.3c0.1-1.9,0.1-3.9,0.3-5.8c0.3-3,1.7-4.2,4.6-4.4c0.3,0,0.6-0.1,0.8-0.2v-6.1c-0.5-0.1-0.8-0.1-1.2-0.1 c-2.2-0.1-3.3-0.9-3.9-3c-0.3-1.4-0.6-2.7-0.6-4.1c-0.2-2.6-0.1-5.2-0.3-7.7C74,27,71.1,24.6,66.5,24.5L66.5,24.5z M37.8,46.5 c-4.5,0-4.8,6.6-0.4,7h0.2c1.9,0.1,3.5-1.3,3.6-3.2v-0.2C41.4,48.1,39.8,46.5,37.8,46.5L37.8,46.5z M49.9,46.5 c-1.9-0.1-3.4,1.4-3.5,3.3c0,0.1,0,0.2,0,0.3c0,2.1,1.4,3.4,3.6,3.4c2.1,0,3.5-1.4,3.5-3.5C53.5,47.9,52.1,46.5,49.9,46.5L49.9,46.5 z M62.3,46.5c-2,0-3.6,1.5-3.6,3.5c0,2,1.6,3.5,3.5,3.5h0c1.8,0.3,3.5-1.4,3.7-3.4C66,48.2,64.2,46.5,62.3,46.5L62.3,46.5z" }))),
|
|
8289
|
+
text: (React__default.default.createElement("svg", { viewBox: "0 0 102 102", fill: "currentColor" },
|
|
8290
|
+
React__default.default.createElement("g", { transform: "translate(1 1)" },
|
|
8291
|
+
React__default.default.createElement("path", { d: "M25.4,90.3V23.4H0V9.7h64.5v13.7H39.1v66.9H25.4z M70.6,90.3V49.2H54.8V35.5H100v13.7H84.3v41.2H70.6z" })))),
|
|
8292
|
+
'thumbs-down': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8293
|
+
React__default.default.createElement("path", { d: "M3.5 2.3h15c2 0 3.5 1.9 3.5 3.8v45.3c0 1.9-1.6 3.8-3.5 3.8h-15c-2 0-3.5-1.9-3.5-3.8V6.1c0-1.9 1.6-3.8 3.5-3.8zM100 57.6v-1.5c0-3.8-3.2-6.8-7-6.8h-2.5c3.6-.3 6.5-3.5 6.5-7.2v-1.5c0-3.8-3.2-7.3-7-7.3h-3c3.9 0 7-2.9 7-6.7v-1.5c0-3.8-3.2-6.8-7-6.8h-3c3.9 0 7-3.4 7-7.2V9.6c0-3.8-3.2-7.3-7-7.3H40.2c-6.1 0-12.1 6.2-12.1 12.3v38c0 3.9 20.5 40 20.5 40 2.1 4.6 7.6 6.7 12.2 4.6l1.2-.5c4.6-2.1 7.3-7.7 6-12.6l-5.4-19.7H93c3.8-.1 7-3 7-6.8z" }))),
|
|
8294
|
+
'thumbs-up': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8295
|
+
React__default.default.createElement("path", { d: "M0 94.2V48.8C0 46.9 1.6 45 3.5 45h15c2 0 3.5 1.9 3.5 3.8v45.3c0 1.9-1.6 3.8-3.5 3.8h-15C1.6 98 0 96.1 0 94.2zM93 36H62.7L68 16.3c1.3-4.9-1.4-10.6-6-12.6l-1.2-.5c-4.6-2.1-10.1 0-12.2 4.6 0 0-20.5 36.1-20.5 40v38c0 6.1 5.9 12.3 12.1 12.3h43.7c3.9 0 7-3.4 7-7.3v-1.5c0-3.8-3.2-7.2-7-7.2h3c3.9 0 7-2.9 7-6.8v-1.5c0-3.8-3.2-6.7-7-6.7h3c3.9 0 7-3.4 7-7.3v-1.5c0-3.7-2.9-6.9-6.5-7.2H93c3.9 0 7-2.9 7-6.8v-1.5c0-3.9-3.2-6.8-7-6.8z" }))),
|
|
8296
|
+
time: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8297
|
+
React__default.default.createElement("path", { d: "m31.5 33.25 1.7-1.7-7.95-8v-10.05h-2.25v10.95zm-7.5 9.75q-3.9 0-7.375-1.5t-6.05-4.075-4.075-6.05-1.5-7.375 1.5-7.375 4.075-6.05 6.05-4.075 7.375-1.5 7.375 1.5 6.05 4.075 4.075 6.05 1.5 7.375-1.5 7.375-4.075 6.05-6.05 4.075-7.375 1.5zm0-19zm0 16.75q6.9 0 11.825-4.925t4.925-11.825-4.925-11.825-11.825-4.925-11.825 4.925-4.925 11.825 4.925 11.825 11.825 4.925z" }))),
|
|
8298
|
+
trash: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8299
|
+
React__default.default.createElement("path", { d: "M98 27c0-4.4-3.6-10-8-10H75.8L68.7 5.7C66.5 2.1 62.6 0 58.5 0h-17c-4.2 0-8 2.1-10.3 5.7l-7 11.3H10c-4.4 0-8 5.6-8 10 0 1.1.9 2 2 2h9v63c0 4.4 3.6 8 8 8h58c4.4 0 8-3.6 8-8V29h9c1.1 0 2-.9 2-2zM39.8 11c.4-.6 1.1-1 1.8-1h16.9c.7 0 1.4.4 1.8 1l3.8 6H36l3.8-6zM33 86h-2c-1.7 0-3-1.4-3-3V35c0-1.7 1.4-3 3-3h2c1.7 0 3 1.4 3 3v48c0 1.6-1.4 3-3 3zm18 0h-2c-1.7 0-3-1.4-3-3V35c0-1.7 1.4-3 3-3h2c1.7 0 3 1.4 3 3v48c0 1.6-1.4 3-3 3zm18 0h-2c-1.7 0-3-1.4-3-3V35c0-1.7 1.4-3 3-3h2c1.7 0 3 1.4 3 3v48c0 1.6-1.4 3-3 3z" }))),
|
|
8300
|
+
unlock: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8301
|
+
React__default.default.createElement("path", { d: "M79 46.2V29.6C79 13.6 65.9 0 50 0 37.1 0 26.3 8.4 22.5 19.9c-.8 2.3.6 4.8 3 5.3l5.8 1.2c1.9.4 3.9-.6 4.6-2.5C38 18.4 43 14.3 49.1 14c8.8-.4 15.9 6.5 15.9 15v17H23c-6.6 0-12 5.4-12 12v30c0 6.6 5.4 12 12 12h54c6.6 0 12-5.4 12-12V58c0-5.9-4.3-10.9-10-11.8zM50 85c-4.4 0-8-3.6-8-8v-8c0-4.4 3.6-8 8-8s8 3.6 8 8v8c0 4.4-3.6 8-8 8z" }))),
|
|
8302
|
+
upload: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8303
|
+
React__default.default.createElement("path", { d: "M56.2 26.6V0h-39c-2.6 0-4.7 2.1-4.7 4.7v90.6c0 2.6 2.1 4.7 4.7 4.7h65.6c2.6 0 4.7-2.1 4.7-4.7V31.2H60.9c-2.5 0-4.7-2.1-4.7-4.6zm15 36.9c2 1.9.6 5.3-2.2 5.3H56.1v15.6c0 1.7-1.4 3.1-3.1 3.1h-6.2c-1.7 0-3.1-1.4-3.1-3.1V68.8H31c-2.8 0-4.2-3.3-2.2-5.3l18.8-18.7c1.3-1.3 3.4-1.3 4.7 0l18.9 18.7zm14.9-43L67 1.4C66.1.5 64.9 0 63.7 0h-1.2v25h25v-1.2c0-1.2-.5-2.4-1.4-3.3z" }))),
|
|
8304
|
+
url: (React__default.default.createElement("svg", { viewBox: "0 0 50 50", fill: "currentColor" },
|
|
8305
|
+
React__default.default.createElement("path", { d: "m22 33.1h-8q-3.85 0-6.475-2.625t-2.625-6.475 2.625-6.475 6.475-2.625h8v2.3h-8q-2.9 0-4.85 1.95t-1.95 4.85 1.95 4.85 4.85 1.95h8zm-5.3-7.95v-2.3h14.65v2.3zm9.3 7.95v-2.3h8q2.9 0 4.85-1.95t1.95-4.85-1.95-4.85-4.85-1.95h-8v-2.3h8q3.85 0 6.475 2.625t2.625 6.475-2.625 6.475-6.475 2.625z" }))),
|
|
8306
|
+
user: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8307
|
+
React__default.default.createElement("path", { d: "M50 10c9.9 0 18 8.1 18 18s-8.1 18-18 18-18-8.1-18-18 8.1-18 18-18m0-10C34.5 0 22 12.5 22 28s12.5 28 28 28 28-12.5 28-28S65.5 0 50 0zm0 70c12.6 0 23.4 4.8 31.2 13.8.5.6.8 1.4.8 2.3V90H18v-3.8c0-.9.4-1.9 1-2.6C26.9 74.7 37.6 70 50 70m0-10c-15.6 0-29 6.2-38.5 16.9C9.3 79.5 8 82.7 8 86.2v7.2c0 3.7 3 6.7 6.7 6.7h70.6c3.7 0 6.7-3 6.7-6.7v-7.2c0-3.2-1.1-6.4-3.2-8.9C79.3 66.4 65.8 60 50 60z" }))),
|
|
8308
|
+
wand: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8309
|
+
React__default.default.createElement("path", { d: "M87.7 25.3L85 22.6c-1.4-1.4-3.2-2-4.9-2-1.8 0-3.6.7-4.9 2L12.3 85.4c-2.7 2.7-2.7 7.2 0 9.9L15 98c1.4 1.4 3.2 2 4.9 2 1.8 0 3.6-.7 4.9-2l62.8-62.8c2.8-2.8 2.8-7.2.1-9.9zm-3.5 6.3L65.5 50.3 60 44.8l18.7-18.7c.5-.5 1.1-.6 1.4-.6.3 0 .9.1 1.4.6l2.7 2.7c.5.5.6 1.1.6 1.4s-.1.9-.6 1.4zM30.6 7.1l2.8 11.3c.2.6.6 1.1 1.2 1.2l11.3 2.8c1.7.4 1.7 2.9 0 3.3l-11.3 2.8c-.6.2-1.1.6-1.2 1.2L30.6 41c-.4 1.7-2.9 1.7-3.3 0l-2.8-11.3c-.2-.6-.6-1.1-1.2-1.2L12 25.7c-1.7-.4-1.7-2.9 0-3.3l11.3-2.8c.6-.2 1.1-.6 1.2-1.2l2.8-11.3c.4-1.7 2.9-1.7 3.3 0zm29.1-5.7l.9 3.5c.2.7.7 1.2 1.4 1.4l3.5.9c1.9.5 1.9 3.2 0 3.7l-3.5.9c-.7.2-1.2.7-1.4 1.4l-.9 3.5c-.5 1.9-3.2 1.9-3.7 0l-.9-3.5c-.2-.7-.7-1.2-1.4-1.4l-3.5-.9c-1.9-.5-1.9-3.2 0-3.7l3.5-.9c.7-.2 1.2-.7 1.4-1.4l.9-3.5c.4-1.9 3.2-1.9 3.7 0z" }))),
|
|
8310
|
+
warning: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8311
|
+
React__default.default.createElement("path", { d: "M83.9 95.3H16.1c-6.8 0-12-2.4-14.5-6.8s-2-10 1.4-16l33.9-58.7C40.3 7.9 45 4.6 50 4.6s9.7 3.3 13.1 9.2L97 72.6c3.4 5.9 3.9 11.6 1.4 16-2.5 4.3-7.7 6.7-14.5 6.7zm-27-19.7c0-3.5-2.9-6.4-6.4-6.4s-6.4 2.9-6.4 6.4c0 3.5 2.9 6.4 6.4 6.4s6.4-2.8 6.4-6.4zm.2-40.4c0-3.6-2.9-6.6-6.6-6.6s-6.5 3-6.5 6.6l1.5 23.3c.2 2.6 2.4 4.6 5 4.6 5 0 5-4.6 5-4.6l1.6-23.3z" }))),
|
|
8312
|
+
workflows: (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8313
|
+
React__default.default.createElement("path", { d: "M99 74c0 7.7-6.3 14-14 14s-14-6.3-14-14c0-1.1.1-2.2.4-3.2L50 58.6 28.6 70.8c.2 1 .4 2.1.4 3.2 0 7.7-6.3 14-14 14S1 81.7 1 74s6.3-14 14-14c3.7 0 7.1 1.5 9.6 3.9L46 51.7V27.4c-5.8-1.7-10-7.1-10-13.4 0-7.7 6.3-14 14-14s14 6.3 14 14c0 6.3-4.2 11.7-10 13.4v24.3l21.4 12.2c2.5-2.4 5.9-3.9 9.6-3.9 7.7 0 14 6.3 14 14zM14.1 51.9c.7-11.7 6.9-22 16.2-28-1.5-3-2.3-6.3-2.3-9.9v-.4C13.7 21.4 4 36.6 4 54v.8c3-1.7 6.4-2.7 10.1-2.9zm58-37.9c0 3.6-.8 6.9-2.3 9.9 9.3 6.1 15.5 16.3 16.2 28 3.6.2 7.1 1.2 10 2.9V54c0-17.4-9.7-32.6-23.9-40.4v.4zm-5.6 72C61.6 88.5 56 90 50 90s-11.5-1.4-16.5-4c-1.9 3-4.5 5.4-7.6 7.2 7 4.3 15.3 6.8 24.1 6.8s17.1-2.5 24.1-6.8C71 91.4 68.4 89 66.5 86z" }))),
|
|
8314
|
+
'x-close': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8315
|
+
React__default.default.createElement("path", { d: "M60 50l37.9-37.9c2.7-2.7 2.7-7.2 0-10s-7.2-2.7-10 0L50 40 12.1 2.1c-2.7-2.7-7.2-2.7-10 0s-2.7 7.2 0 10L40 50 2.1 87.9c-2.7 2.7-2.7 7.2 0 10s7.2 2.7 10 0L50 60l37.9 37.9c2.7 2.7 7.2 2.7 10 0s2.7-7.2 0-10L60 50z" }))),
|
|
8316
|
+
'zoom-in': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8317
|
+
React__default.default.createElement("path", { d: "M60.9,38.3V43c0,1.3-1.1,2.3-2.3,2.3H45.3v13.3c0,1.3-1.1,2.3-2.3,2.3h-4.7\n\tc-1.3,0-2.3-1.1-2.3-2.3V45.3H22.7c-1.3,0-2.3-1.1-2.3-2.3v-4.7c0-1.3,1.1-2.3,2.3-2.3H36V22.7c0-1.3,1.1-2.3,2.3-2.3H43\n\tc1.3,0,2.3,1.1,2.3,2.3V36h13.3C59.9,35.9,60.9,37,60.9,38.3z M99.3,94.9l-4.4,4.4c-0.9,0.9-2.4,0.9-3.3,0L67.9,75.6\n\tc-0.4-0.4-0.7-1-0.7-1.7v-2.6c-7.1,6.2-16.4,9.9-26.6,9.9C18.2,81.2,0,63.1,0,40.6S18.2,0,40.6,0s40.6,18.2,40.6,40.6\n\tc0,10.2-3.7,19.4-9.9,26.6h2.6c0.6,0,1.2,0.3,1.7,0.7l23.7,23.7C100.2,92.5,100.2,94,99.3,94.9L99.3,94.9z M71.9,40.6\n\tc0-17.3-14-31.2-31.2-31.2S9.4,23.4,9.4,40.6s14,31.2,31.2,31.2S71.9,57.9,71.9,40.6z" }))),
|
|
8318
|
+
'zoom-out': (React__default.default.createElement("svg", { viewBox: "0 0 100 100", fill: "currentColor" },
|
|
8319
|
+
React__default.default.createElement("path", { d: "M60.9,38.3V43c0,1.3-1.1,2.3-2.3,2.3H22.7c-1.3,0-2.3-1.1-2.3-2.3v-4.7\n\tc0-1.3,1.1-2.3,2.3-2.3h35.9C59.9,35.9,60.9,37,60.9,38.3z M99.3,94.9l-4.4,4.4c-0.9,0.9-2.4,0.9-3.3,0L67.9,75.6\n\tc-0.4-0.4-0.7-1-0.7-1.7v-2.6c-7.1,6.2-16.4,9.9-26.6,9.9C18.2,81.2,0,63.1,0,40.6S18.2,0,40.6,0s40.6,18.2,40.6,40.6\n\tc0,10.2-3.7,19.4-9.9,26.6h2.6c0.6,0,1.2,0.3,1.7,0.7l23.7,23.7C100.2,92.5,100.2,94,99.3,94.9L99.3,94.9z M71.9,40.6\n\tc0-17.3-14-31.2-31.2-31.2S9.4,23.4,9.4,40.6s14,31.2,31.2,31.2S71.9,57.9,71.9,40.6z" }))),
|
|
8314
8320
|
};
|
|
8315
8321
|
|
|
8316
8322
|
/******************************************************************************
|
|
@@ -8367,7 +8373,7 @@ function Icon(_a) {
|
|
|
8367
8373
|
console.error(`${props.name} is not a valid icon name.`);
|
|
8368
8374
|
return null;
|
|
8369
8375
|
}
|
|
8370
|
-
return (
|
|
8376
|
+
return (React__default.default.createElement("svg", Object.assign({}, iconComponentProps, ariaLabel, dimensions, { role: "img", className: props.className, "data-cy": props['data-cy'], fill: props.fill || 'currentColor', id: props.id, style: style, onClick: props.onClick })));
|
|
8371
8377
|
}
|
|
8372
8378
|
function returnDimensions(sizeProp) {
|
|
8373
8379
|
if (sizeProp.length > 1) {
|
|
@@ -8376,7 +8382,7 @@ function returnDimensions(sizeProp) {
|
|
|
8376
8382
|
return { width: sizeProp[0], height: sizeProp[0] };
|
|
8377
8383
|
}
|
|
8378
8384
|
|
|
8379
|
-
const StyledAccordion =
|
|
8385
|
+
const StyledAccordion = styled__default.default.details `
|
|
8380
8386
|
summary {
|
|
8381
8387
|
display: inherit;
|
|
8382
8388
|
padding: 0 12px;
|
|
@@ -8413,12 +8419,12 @@ const StyledAccordion = styled.details `
|
|
|
8413
8419
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
8414
8420
|
const Accordion = (props) => {
|
|
8415
8421
|
const { className, content, header, id, open } = props;
|
|
8416
|
-
return (
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
header ?
|
|
8421
|
-
|
|
8422
|
+
return (React__default.default.createElement(StyledAccordion, { className: className, id: id, open: open, "data-cy": props['data-cy'] },
|
|
8423
|
+
React__default.default.createElement("summary", null,
|
|
8424
|
+
React__default.default.createElement("div", { className: "header-container" },
|
|
8425
|
+
React__default.default.createElement(Icon, { className: "toggle-icon", name: "chevron-up", size: [14] }),
|
|
8426
|
+
header ? React__default.default.createElement("h2", null, header) : null)),
|
|
8427
|
+
React__default.default.createElement("div", { className: "content" }, content)));
|
|
8422
8428
|
};
|
|
8423
8429
|
|
|
8424
8430
|
var classnames = {exports: {}};
|
|
@@ -8483,7 +8489,7 @@ var classnames = {exports: {}};
|
|
|
8483
8489
|
var classnamesExports = classnames.exports;
|
|
8484
8490
|
var classNames = /*@__PURE__*/getDefaultExportFromCjs(classnamesExports);
|
|
8485
8491
|
|
|
8486
|
-
const StyledSection =
|
|
8492
|
+
const StyledSection = styled__default.default.article `
|
|
8487
8493
|
position: relative;
|
|
8488
8494
|
float: left;
|
|
8489
8495
|
margin-bottom: 20px;
|
|
@@ -8493,10 +8499,10 @@ const StyledSection = styled.article `
|
|
|
8493
8499
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
8494
8500
|
const Section = (props) => {
|
|
8495
8501
|
const { className, style = {}, children, id } = props, restOfProps = __rest(props, ["className", "style", "children", "id"]);
|
|
8496
|
-
return (
|
|
8502
|
+
return (React__default.default.createElement(StyledSection, Object.assign({ className: classNames('Section', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps), children));
|
|
8497
8503
|
};
|
|
8498
8504
|
|
|
8499
|
-
const StyledSectionBlock =
|
|
8505
|
+
const StyledSectionBlock = styled__default.default.div `
|
|
8500
8506
|
h3 {
|
|
8501
8507
|
margin: 24px 0 31px;
|
|
8502
8508
|
}
|
|
@@ -8511,15 +8517,15 @@ const StyledSectionBlock = styled.div `
|
|
|
8511
8517
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
8512
8518
|
const SectionBlock = (props) => {
|
|
8513
8519
|
const { title, className, children, id, style = {} } = props, restOfProps = __rest(props, ["title", "className", "children", "id", "style"]);
|
|
8514
|
-
return (
|
|
8515
|
-
title ? (
|
|
8516
|
-
|
|
8520
|
+
return (React__default.default.createElement(StyledSectionBlock, Object.assign({ className: classNames('SectionBlock', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps),
|
|
8521
|
+
title ? (React__default.default.createElement("header", null,
|
|
8522
|
+
React__default.default.createElement("h3", null, title))) : null,
|
|
8517
8523
|
children,
|
|
8518
|
-
|
|
8524
|
+
React__default.default.createElement("hr", { className: "section-bottom-border" })));
|
|
8519
8525
|
};
|
|
8520
8526
|
|
|
8521
8527
|
const sectionSidePadding = '19px';
|
|
8522
|
-
const StyledSectionBody =
|
|
8528
|
+
const StyledSectionBody = styled__default.default.div `
|
|
8523
8529
|
background: ${allColors.clay};
|
|
8524
8530
|
border-radius: 4px;
|
|
8525
8531
|
border: 1px solid #333d4c;
|
|
@@ -8535,17 +8541,17 @@ const StyledSectionBody = styled.div `
|
|
|
8535
8541
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
8536
8542
|
const SectionBody = (props) => {
|
|
8537
8543
|
const { className, style = {}, children, id } = props, restOfProps = __rest(props, ["className", "style", "children", "id"]);
|
|
8538
|
-
return (
|
|
8544
|
+
return (React__default.default.createElement(StyledSectionBody, Object.assign({ className: classNames('SectionBody', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps), children));
|
|
8539
8545
|
};
|
|
8540
8546
|
|
|
8541
|
-
const StyledSectionHeader =
|
|
8547
|
+
const StyledSectionHeader = styled__default.default.header `
|
|
8542
8548
|
padding: 23px 0 18px;
|
|
8543
8549
|
`;
|
|
8544
8550
|
|
|
8545
8551
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
8546
8552
|
const SectionHeader = (props) => {
|
|
8547
8553
|
const { className, style, children, id } = props, restOfProps = __rest(props, ["className", "style", "children", "id"]);
|
|
8548
|
-
return (
|
|
8554
|
+
return (React__default.default.createElement(StyledSectionHeader, Object.assign({ className: classNames('SectionHeader', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps), children));
|
|
8549
8555
|
};
|
|
8550
8556
|
SectionHeader.defaultProps = {
|
|
8551
8557
|
className: '',
|
|
@@ -8617,7 +8623,7 @@ function v4(options, buf, offset) {
|
|
|
8617
8623
|
return unsafeStringify(rnds);
|
|
8618
8624
|
}
|
|
8619
8625
|
|
|
8620
|
-
const StyledSelect$1 =
|
|
8626
|
+
const StyledSelect$1 = styled__default.default.div `
|
|
8621
8627
|
&.horizontal {
|
|
8622
8628
|
> * {
|
|
8623
8629
|
display: inline-block;
|
|
@@ -8678,7 +8684,7 @@ const StyledSelect$1 = styled.div `
|
|
|
8678
8684
|
}
|
|
8679
8685
|
}
|
|
8680
8686
|
`;
|
|
8681
|
-
const StyledValidationError =
|
|
8687
|
+
const StyledValidationError = styled__default.default.div `
|
|
8682
8688
|
margin-top: 13px;
|
|
8683
8689
|
|
|
8684
8690
|
p {
|
|
@@ -8690,22 +8696,22 @@ const StyledValidationError = styled.div `
|
|
|
8690
8696
|
const BorderSelect = (props) => {
|
|
8691
8697
|
const { className = '', disabled, horizontal, id, initialText, label, onChange, options, style = {}, value, validationErrors, } = props;
|
|
8692
8698
|
const selectId = v4();
|
|
8693
|
-
return (
|
|
8694
|
-
label &&
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
initialText && (
|
|
8699
|
+
return (React__default.default.createElement(StyledSelect$1, { className: classNames('Select', { horizontal }, className), "data-cy": props['data-cy'], id: id, style: style },
|
|
8700
|
+
label && React__default.default.createElement("label", { htmlFor: selectId }, label),
|
|
8701
|
+
React__default.default.createElement("div", { className: "select-container" },
|
|
8702
|
+
React__default.default.createElement("select", { onChange: onChange, value: value, disabled: disabled, id: selectId },
|
|
8703
|
+
initialText && (React__default.default.createElement("option", { disabled: true, value: "" }, initialText)),
|
|
8698
8704
|
options.map((o) => {
|
|
8699
8705
|
const key = v4();
|
|
8700
|
-
return (
|
|
8706
|
+
return (React__default.default.createElement("option", { key: key, value: o.value }, o.name));
|
|
8701
8707
|
})),
|
|
8702
|
-
|
|
8703
|
-
validationErrors ? (
|
|
8704
|
-
return (
|
|
8708
|
+
React__default.default.createElement(Icon, { name: "fa-caret-down", className: "selectCaret" })),
|
|
8709
|
+
validationErrors ? (React__default.default.createElement(StyledValidationError, null, validationErrors.map((err, i) => {
|
|
8710
|
+
return (React__default.default.createElement("p", { className: `error-${err}`, key: i }, err));
|
|
8705
8711
|
}))) : null));
|
|
8706
8712
|
};
|
|
8707
8713
|
|
|
8708
|
-
const StyledSelect =
|
|
8714
|
+
const StyledSelect = styled__default.default.div `
|
|
8709
8715
|
display: inline-block;
|
|
8710
8716
|
|
|
8711
8717
|
.Select__container {
|
|
@@ -8778,15 +8784,15 @@ const StyledSelect = styled.div `
|
|
|
8778
8784
|
const Select = (props) => {
|
|
8779
8785
|
const { id, className, disabled, initialText, onChange, options, size = 'medium', style = {}, value, variant, onClick, } = props;
|
|
8780
8786
|
const selectId = v4();
|
|
8781
|
-
return (
|
|
8782
|
-
|
|
8783
|
-
|
|
8784
|
-
initialText && (
|
|
8787
|
+
return (React__default.default.createElement(StyledSelect, { className: className, "data-cy": props['data-cy'], id: id, style: style },
|
|
8788
|
+
React__default.default.createElement("div", { className: classNames('Select__container', size, variant), onClick: (e) => (onClick ? onClick(e) : null) },
|
|
8789
|
+
React__default.default.createElement("select", { onChange: onChange, value: value, disabled: disabled, id: selectId },
|
|
8790
|
+
initialText && (React__default.default.createElement("option", { disabled: true, value: "" }, initialText)),
|
|
8785
8791
|
options.map((o) => {
|
|
8786
8792
|
const key = v4();
|
|
8787
|
-
return (
|
|
8793
|
+
return (React__default.default.createElement("option", { key: key, value: o.value }, o.name));
|
|
8788
8794
|
})),
|
|
8789
|
-
|
|
8795
|
+
React__default.default.createElement(Icon, { className: "chevron", name: "chevron-down", size: size === 'small' ? [10] : [12] }))));
|
|
8790
8796
|
};
|
|
8791
8797
|
|
|
8792
8798
|
/**
|
|
@@ -8807,7 +8813,7 @@ const Select = (props) => {
|
|
|
8807
8813
|
* @see {@link https://gist.github.com/MikaelCarpenter/1fe226967b00eea82e6a4760b244ada1}
|
|
8808
8814
|
*/
|
|
8809
8815
|
const addCustomProps = (Component, customProps) => (props) => {
|
|
8810
|
-
return (
|
|
8816
|
+
return (React__default.default.createElement(Component, Object.assign({}, props, { innerProps: Object.assign({}, props.innerProps, Object.assign({}, customProps)) })));
|
|
8811
8817
|
};
|
|
8812
8818
|
|
|
8813
8819
|
const basicDefaults$1 = styled.css `
|
|
@@ -8873,7 +8879,7 @@ const basicDefaults$1 = styled.css `
|
|
|
8873
8879
|
`;
|
|
8874
8880
|
|
|
8875
8881
|
const spacingCommon = '10px';
|
|
8876
|
-
const StyledMultiCombobox =
|
|
8882
|
+
const StyledMultiCombobox = styled__default.default(ReactSelect__default.default) `
|
|
8877
8883
|
${basicDefaults$1};
|
|
8878
8884
|
|
|
8879
8885
|
background-color: ${allColors.clay};
|
|
@@ -8963,25 +8969,25 @@ const StyledMultiCombobox = styled(ReactSelect) `
|
|
|
8963
8969
|
*
|
|
8964
8970
|
* @see [useCombobox]{@link import('useCombobox').useCombobox}
|
|
8965
8971
|
*/
|
|
8966
|
-
const MultiCombobox =
|
|
8972
|
+
const MultiCombobox = React__default.default.forwardRef((props, ref) => {
|
|
8967
8973
|
const { className, closeMenuOnSelect, customOption, customOptionLabel, customOptionValue, defaultValue, disabled, id, loading, menuIsOpen, multiValueProps = {}, noOptionsMessage, onChange, optionProps = {}, options, placeholder,
|
|
8968
8974
|
// validationErrors,
|
|
8969
8975
|
values, } = props;
|
|
8970
8976
|
const MultiValue = (props) => {
|
|
8971
|
-
return
|
|
8977
|
+
return React__default.default.createElement(ReactSelect.components.MultiValue, Object.assign({}, props));
|
|
8972
8978
|
};
|
|
8973
8979
|
const MultiValueRemove = (props) => {
|
|
8974
|
-
return (
|
|
8975
|
-
|
|
8980
|
+
return (React__default.default.createElement(ReactSelect.components.MultiValueRemove, Object.assign({}, props),
|
|
8981
|
+
React__default.default.createElement(Icon, { name: "x-close", ariaLabel: "remove", size: [10] })));
|
|
8976
8982
|
};
|
|
8977
8983
|
// handles a custom option component generator, if passed in
|
|
8978
8984
|
const Option = (props) => {
|
|
8979
8985
|
if (customOption) {
|
|
8980
|
-
return (
|
|
8986
|
+
return (React__default.default.createElement(ReactSelect.components.Option, Object.assign({}, props, optionProps), customOption(props)));
|
|
8981
8987
|
}
|
|
8982
|
-
return
|
|
8988
|
+
return React__default.default.createElement(ReactSelect.components.Option, Object.assign({}, props, optionProps));
|
|
8983
8989
|
};
|
|
8984
|
-
const ComboboxComponent = () => (
|
|
8990
|
+
const ComboboxComponent = () => (React__default.default.createElement(StyledMultiCombobox, { "aria-label": props['aria-label'], "aria-labelledby": props['aria-labelledby'], ref: ref, className: className, classNamePrefix: "combobox", closeMenuOnSelect: closeMenuOnSelect, components: {
|
|
8985
8991
|
MultiValue: addCustomProps(MultiValue, multiValueProps),
|
|
8986
8992
|
MultiValueRemove,
|
|
8987
8993
|
Option: addCustomProps(Option, optionProps),
|
|
@@ -8989,13 +8995,13 @@ const MultiCombobox = React.forwardRef((props, ref) => {
|
|
|
8989
8995
|
// validationErrors={validationErrors}
|
|
8990
8996
|
value: values }));
|
|
8991
8997
|
if (props['data-cy']) {
|
|
8992
|
-
return (
|
|
8993
|
-
|
|
8998
|
+
return (React__default.default.createElement("div", { "data-cy": props['data-cy'] },
|
|
8999
|
+
React__default.default.createElement(ComboboxComponent, null)));
|
|
8994
9000
|
}
|
|
8995
|
-
return
|
|
9001
|
+
return React__default.default.createElement(ComboboxComponent, null);
|
|
8996
9002
|
});
|
|
8997
9003
|
|
|
8998
|
-
const StyledSingleCombobox =
|
|
9004
|
+
const StyledSingleCombobox = styled__default.default(ReactSelect__default.default) `
|
|
8999
9005
|
${basicDefaults$1};
|
|
9000
9006
|
|
|
9001
9007
|
// overall component container
|
|
@@ -9051,28 +9057,28 @@ const StyledSingleCombobox = styled(ReactSelect) `
|
|
|
9051
9057
|
*
|
|
9052
9058
|
* @see [useCombobox]{@link import('useCombobox').useCombobox}
|
|
9053
9059
|
*/
|
|
9054
|
-
const SingleCombobox =
|
|
9060
|
+
const SingleCombobox = React__default.default.forwardRef((props, ref) => {
|
|
9055
9061
|
const { className, closeMenuOnSelect, customOptionLabel, customOptionValue, defaultValue, disabled, dropdownIndicatorProps = {}, id, menuIsOpen, noOptionsMessage, onChange, optionProps = {}, options, placeholder,
|
|
9056
9062
|
// validationErrors,
|
|
9057
9063
|
value, } = props;
|
|
9058
9064
|
const DropdownIndicator = (props) => {
|
|
9059
|
-
return (
|
|
9060
|
-
|
|
9065
|
+
return (React__default.default.createElement(ReactSelect.components.DropdownIndicator, Object.assign({}, props),
|
|
9066
|
+
React__default.default.createElement(Icon, { name: "fa-caret-down", ariaLabel: "open dropdown", size: [14] })));
|
|
9061
9067
|
};
|
|
9062
9068
|
const Option = (props) => {
|
|
9063
|
-
return
|
|
9069
|
+
return React__default.default.createElement(ReactSelect.components.Option, Object.assign({}, props, optionProps));
|
|
9064
9070
|
};
|
|
9065
|
-
const ComboboxComponent = () => (
|
|
9071
|
+
const ComboboxComponent = () => (React__default.default.createElement(StyledSingleCombobox, { "aria-label": props['aria-label'], "aria-labelledby": props['aria-labelledby'], ref: ref, className: className, classNamePrefix: "combobox", closeMenuOnSelect: closeMenuOnSelect, components: {
|
|
9066
9072
|
DropdownIndicator: addCustomProps(DropdownIndicator, dropdownIndicatorProps),
|
|
9067
9073
|
Option: addCustomProps(Option, optionProps),
|
|
9068
9074
|
}, defaultValue: defaultValue, getOptionLabel: customOptionLabel, getOptionValue: customOptionValue, id: id, isClearable: false, isDisabled: disabled, isMulti: false, menuIsOpen: menuIsOpen, noOptionsMessage: () => noOptionsMessage, onChange: onChange, options: options, placeholder: placeholder,
|
|
9069
9075
|
// validationErrors={validationErrors}
|
|
9070
9076
|
value: value }));
|
|
9071
9077
|
if (props['data-cy']) {
|
|
9072
|
-
return (
|
|
9073
|
-
|
|
9078
|
+
return (React__default.default.createElement("div", { "data-cy": props['data-cy'] },
|
|
9079
|
+
React__default.default.createElement(ComboboxComponent, null)));
|
|
9074
9080
|
}
|
|
9075
|
-
return
|
|
9081
|
+
return React__default.default.createElement(ComboboxComponent, null);
|
|
9076
9082
|
});
|
|
9077
9083
|
|
|
9078
9084
|
const cardTableLoading = styled.keyframes `
|
|
@@ -9089,7 +9095,7 @@ const cardTableLoading = styled.keyframes `
|
|
|
9089
9095
|
left: calc(100% + 50px);
|
|
9090
9096
|
}
|
|
9091
9097
|
`;
|
|
9092
|
-
const StyledSectionTable =
|
|
9098
|
+
const StyledSectionTable = styled__default.default.div `
|
|
9093
9099
|
.mobile-sort {
|
|
9094
9100
|
@media ${mediaQueries.mediumScreen} {
|
|
9095
9101
|
display: none;
|
|
@@ -9333,17 +9339,17 @@ const SectionTable = (props) => {
|
|
|
9333
9339
|
}
|
|
9334
9340
|
};
|
|
9335
9341
|
const headers = Object.keys(props.tableObjects[0].content);
|
|
9336
|
-
return (
|
|
9337
|
-
props.sortColumnHandler && props.sortedColumn && (
|
|
9338
|
-
|
|
9342
|
+
return (React__default.default.createElement(StyledSectionTable, { className: classNames('SectionTable', props.className, { loading: props.loading }), "data-cy": props['data-cy'], id: props.id },
|
|
9343
|
+
props.sortColumnHandler && props.sortedColumn && (React__default.default.createElement("div", { className: "mobile-sort" },
|
|
9344
|
+
React__default.default.createElement(BorderSelect, { onChange: (e) => props.sortColumnHandler(e.target.value), value: props.sortedColumn, options: [].concat({ name: 'Choose Sorting Option', value: '' }, headers.map((item) => {
|
|
9339
9345
|
return { name: item, value: item };
|
|
9340
9346
|
})) }))),
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
props.tableObjects[0].rowAccordionContent ?
|
|
9347
|
+
React__default.default.createElement("table", Object.assign({}, props.tableProps),
|
|
9348
|
+
React__default.default.createElement("thead", null,
|
|
9349
|
+
React__default.default.createElement("tr", null,
|
|
9350
|
+
props.tableObjects[0].rowAccordionContent ? React__default.default.createElement("th", { className: "action-column" }) : null,
|
|
9345
9351
|
headers.map((header, i) => {
|
|
9346
|
-
return (
|
|
9352
|
+
return (React__default.default.createElement("th", { className: classNames({
|
|
9347
9353
|
'not-sortable': props.sortableHeaders && props.sortableHeaders.indexOf(header) === -1,
|
|
9348
9354
|
}), onClick: () => {
|
|
9349
9355
|
if (props.sortColumnHandler) {
|
|
@@ -9359,60 +9365,60 @@ const SectionTable = (props) => {
|
|
|
9359
9365
|
}, key: i },
|
|
9360
9366
|
props.headersContent ? props.headersContent[header] : header,
|
|
9361
9367
|
' ',
|
|
9362
|
-
props.sortedColumn === header && (
|
|
9368
|
+
props.sortedColumn === header && (React__default.default.createElement(Icon, { name: `fa-caret-${props.sortDirection}` }))));
|
|
9363
9369
|
}))),
|
|
9364
|
-
|
|
9365
|
-
? Array.from({ length: 5 }, (x, i) => (
|
|
9370
|
+
React__default.default.createElement("tbody", { className: classNames({ 'SectionTable--tbody-loading': props.loading }) }, props.loading
|
|
9371
|
+
? Array.from({ length: 5 }, (x, i) => (React__default.default.createElement("tr", { key: i }, props.tableObjects[0].rowAccordionContent ? (React__default.default.createElement("td", { colSpan: headers.length + 1 })) : (React__default.default.createElement("td", { colSpan: headers.length })))))
|
|
9366
9372
|
: props.tableObjects.map((obj, i) => {
|
|
9367
9373
|
let rowStyle = obj.rowStyleCondition;
|
|
9368
9374
|
if (rowStyle) {
|
|
9369
9375
|
rowStyle = { [rowStyle.className]: rowStyle.condition };
|
|
9370
9376
|
}
|
|
9371
9377
|
if (obj.rowAccordionContent) {
|
|
9372
|
-
return (
|
|
9373
|
-
|
|
9374
|
-
|
|
9375
|
-
|
|
9376
|
-
|
|
9377
|
-
|
|
9378
|
+
return (React__default.default.createElement("tr", Object.assign({ key: i, className: classNames(rowStyle) }, props.rowProps),
|
|
9379
|
+
React__default.default.createElement("td", { colSpan: headers.length + 1, style: { padding: '0' }, className: "outer-hover" },
|
|
9380
|
+
React__default.default.createElement("table", null,
|
|
9381
|
+
React__default.default.createElement("thead", null,
|
|
9382
|
+
React__default.default.createElement("tr", null,
|
|
9383
|
+
React__default.default.createElement("th", { className: "action-column", style: {
|
|
9378
9384
|
padding: '0',
|
|
9379
9385
|
height: '1px',
|
|
9380
9386
|
border: 'none',
|
|
9381
9387
|
} }),
|
|
9382
9388
|
headers.map((e, i) => {
|
|
9383
|
-
return (
|
|
9389
|
+
return (React__default.default.createElement("th", { key: i, style: {
|
|
9384
9390
|
padding: '0',
|
|
9385
9391
|
height: '1px',
|
|
9386
9392
|
border: 'none',
|
|
9387
9393
|
} }));
|
|
9388
9394
|
}))),
|
|
9389
|
-
|
|
9390
|
-
|
|
9391
|
-
|
|
9392
|
-
|
|
9395
|
+
React__default.default.createElement("tbody", null,
|
|
9396
|
+
React__default.default.createElement("tr", { onClick: () => handleRowOptionToggleClick(obj.id) },
|
|
9397
|
+
React__default.default.createElement("td", { style: { borderBottom: 'none' }, className: "action-column" },
|
|
9398
|
+
React__default.default.createElement(Icon, { name: "chevron-down", style: {
|
|
9393
9399
|
transform: openRowOptions.indexOf(obj.id) !== -1 ? 'rotate(180deg)' : '',
|
|
9394
9400
|
} })),
|
|
9395
9401
|
Object.keys(obj.content).map((key, i) => {
|
|
9396
9402
|
var _a;
|
|
9397
|
-
return (
|
|
9403
|
+
return (React__default.default.createElement("td", Object.assign({ key: i, style: {
|
|
9398
9404
|
borderBottom: 'none',
|
|
9399
9405
|
}, "data-heading": headers[i], title: createTitle(obj.content[key]) }, (_a = props === null || props === void 0 ? void 0 : props.headingProps) === null || _a === void 0 ? void 0 : _a[headers === null || headers === void 0 ? void 0 : headers[i]]), obj.content[key]));
|
|
9400
9406
|
})),
|
|
9401
|
-
|
|
9407
|
+
React__default.default.createElement("tr", { className: classNames('row-option', {
|
|
9402
9408
|
open: openRowOptions.indexOf(obj.id) !== -1,
|
|
9403
9409
|
}) },
|
|
9404
|
-
|
|
9410
|
+
React__default.default.createElement("td", { className: "inner-table-cell", colSpan: headers.length + 1 }, obj.rowAccordionContent)))))));
|
|
9405
9411
|
}
|
|
9406
9412
|
else if (obj.lineItemLink) {
|
|
9407
|
-
return (
|
|
9413
|
+
return (React__default.default.createElement("tr", Object.assign({ key: i, onClick: handleRowClick(obj.lineItemLink), className: classNames('hover', rowStyle) }, props.rowProps), Object.keys(obj.content).map((key, i) => {
|
|
9408
9414
|
var _a;
|
|
9409
|
-
return (
|
|
9415
|
+
return (React__default.default.createElement("td", Object.assign({ key: i, "data-heading": headers[i], title: createTitle(obj.content[key]) }, (_a = props === null || props === void 0 ? void 0 : props.headingProps) === null || _a === void 0 ? void 0 : _a[headers === null || headers === void 0 ? void 0 : headers[i]]), obj.content[key]));
|
|
9410
9416
|
})));
|
|
9411
9417
|
}
|
|
9412
9418
|
else {
|
|
9413
|
-
return (
|
|
9419
|
+
return (React__default.default.createElement("tr", Object.assign({ key: i, className: classNames(rowStyle) }, props.rowProps), Object.keys(obj.content).map((key, i) => {
|
|
9414
9420
|
var _a;
|
|
9415
|
-
return (
|
|
9421
|
+
return (React__default.default.createElement("td", Object.assign({ key: i, "data-heading": headers[i], title: createTitle(obj.content[key]) }, (_a = props === null || props === void 0 ? void 0 : props.headingProps) === null || _a === void 0 ? void 0 : _a[headers === null || headers === void 0 ? void 0 : headers[i]]), obj.content[key]));
|
|
9416
9422
|
})));
|
|
9417
9423
|
}
|
|
9418
9424
|
})))));
|
|
@@ -9423,7 +9429,7 @@ function CircleSpinner(props) {
|
|
|
9423
9429
|
const { className, fill, id, size, style, ariaLabel = 'Loading...' } = props;
|
|
9424
9430
|
const loaderSize = size || '12px';
|
|
9425
9431
|
const loaderStyle = Object.assign({ position: 'relative', top: '1px' }, style);
|
|
9426
|
-
return (
|
|
9432
|
+
return (React__default.default.createElement(Icon, { name: "fa-circle-notch", className: `spin ${className || ''}`, "data-cy": props['data-cy'], id: id, size: [loaderSize], style: loaderStyle, fill: fill || 'currentColor', ariaLabel: ariaLabel }));
|
|
9427
9433
|
}
|
|
9428
9434
|
|
|
9429
9435
|
const moveBg = styled.keyframes `
|
|
@@ -9434,7 +9440,7 @@ const moveBg = styled.keyframes `
|
|
|
9434
9440
|
transform: translateX(46px);
|
|
9435
9441
|
}
|
|
9436
9442
|
`;
|
|
9437
|
-
const StyledBarSpinner =
|
|
9443
|
+
const StyledBarSpinner = styled__default.default.div `
|
|
9438
9444
|
display: inline-block;
|
|
9439
9445
|
width: 200px;
|
|
9440
9446
|
height: 14px; /* Can be anything */
|
|
@@ -9478,8 +9484,8 @@ const StyledBarSpinner = styled.div `
|
|
|
9478
9484
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
9479
9485
|
function BarSpinner(props) {
|
|
9480
9486
|
const { className, id, width = '100%' } = props;
|
|
9481
|
-
return (
|
|
9482
|
-
|
|
9487
|
+
return (React__default.default.createElement(StyledBarSpinner, { className: className, "data-cy": props['data-cy'], id: id, style: { width } },
|
|
9488
|
+
React__default.default.createElement("span", null)));
|
|
9483
9489
|
}
|
|
9484
9490
|
|
|
9485
9491
|
const MESSAGES = [
|
|
@@ -9556,7 +9562,7 @@ const RandomLoadingMessage = () => {
|
|
|
9556
9562
|
}, 3000);
|
|
9557
9563
|
return () => clearTimeout(timer);
|
|
9558
9564
|
});
|
|
9559
|
-
return
|
|
9565
|
+
return React__default.default.createElement("span", { className: "message" },
|
|
9560
9566
|
randomMessage,
|
|
9561
9567
|
"...");
|
|
9562
9568
|
};
|
|
@@ -9579,7 +9585,7 @@ const ripple = (size) => styled.keyframes `
|
|
|
9579
9585
|
}
|
|
9580
9586
|
`;
|
|
9581
9587
|
const animationSpeed = 1.4;
|
|
9582
|
-
const StyledLoadingIndicator =
|
|
9588
|
+
const StyledLoadingIndicator = styled__default.default.div `
|
|
9583
9589
|
display: grid;
|
|
9584
9590
|
place-items: center;
|
|
9585
9591
|
|
|
@@ -9613,7 +9619,7 @@ const StyledLoadingIndicator = styled.div `
|
|
|
9613
9619
|
}
|
|
9614
9620
|
}
|
|
9615
9621
|
`;
|
|
9616
|
-
const StyledMessageLoadingIndicator =
|
|
9622
|
+
const StyledMessageLoadingIndicator = styled__default.default.div `
|
|
9617
9623
|
display: block;
|
|
9618
9624
|
|
|
9619
9625
|
> * {
|
|
@@ -9637,12 +9643,12 @@ const StyledMessageLoadingIndicator = styled.div `
|
|
|
9637
9643
|
function CirclePulse(props) {
|
|
9638
9644
|
const { className, color, id, overallSize = '200px', rippleSize = '76px', showRandomMessage, } = props;
|
|
9639
9645
|
const loadingIndicator = () => {
|
|
9640
|
-
return (
|
|
9646
|
+
return (React__default.default.createElement(StyledLoadingIndicator, { "aria-hidden": true, className: className, "data-cy": props['data-cy'], id: id, overallSize: returnSizeString(overallSize), rippleSize: returnSizeString(rippleSize), style: color ? { color } : { color: allColors.curiousBlue } }));
|
|
9641
9647
|
};
|
|
9642
9648
|
if (showRandomMessage) {
|
|
9643
|
-
return (
|
|
9649
|
+
return (React__default.default.createElement(StyledMessageLoadingIndicator, { overallSize: returnSizeString(overallSize) },
|
|
9644
9650
|
loadingIndicator(),
|
|
9645
|
-
|
|
9651
|
+
React__default.default.createElement(RandomLoadingMessage, null)));
|
|
9646
9652
|
}
|
|
9647
9653
|
return loadingIndicator();
|
|
9648
9654
|
}
|
|
@@ -9653,7 +9659,7 @@ function returnSizeString(size) {
|
|
|
9653
9659
|
return size;
|
|
9654
9660
|
}
|
|
9655
9661
|
|
|
9656
|
-
const StyledPercentageRing =
|
|
9662
|
+
const StyledPercentageRing = styled__default.default.div `
|
|
9657
9663
|
position: relative;
|
|
9658
9664
|
|
|
9659
9665
|
svg {
|
|
@@ -9688,18 +9694,18 @@ function PercentageRing(props) {
|
|
|
9688
9694
|
const circleRadius = ringRadius - strokeWidth / 2;
|
|
9689
9695
|
// ensure we don’t display a value greater than 100% to the user
|
|
9690
9696
|
const displayValue = Math.round(Math.min(value, 1) * 100);
|
|
9691
|
-
return (
|
|
9692
|
-
|
|
9697
|
+
return (React__default.default.createElement(StyledPercentageRing, { className: className, "data-cy": props['data-cy'], id: id },
|
|
9698
|
+
React__default.default.createElement("div", { style: {
|
|
9693
9699
|
fontSize: valueFontSize,
|
|
9694
9700
|
width: diameter,
|
|
9695
9701
|
height: diameter,
|
|
9696
9702
|
} },
|
|
9697
9703
|
displayValue,
|
|
9698
|
-
|
|
9699
|
-
|
|
9700
|
-
|
|
9701
|
-
|
|
9702
|
-
|
|
9704
|
+
React__default.default.createElement("span", null, "%")),
|
|
9705
|
+
React__default.default.createElement("svg", { height: diameter, width: diameter, fill: "none", strokeWidth: strokeWidth, "aria-hidden": "true", focusable: "false" },
|
|
9706
|
+
React__default.default.createElement("g", null,
|
|
9707
|
+
React__default.default.createElement("circle", { r: circleRadius, cx: ringRadius, cy: ringRadius, stroke: backgroundColor }),
|
|
9708
|
+
React__default.default.createElement("circle", { r: circleRadius, cx: ringRadius, cy: ringRadius, stroke: foregroundColor, strokeDasharray: ringCircumference, strokeDashoffset: valueCircumference })))));
|
|
9703
9709
|
}
|
|
9704
9710
|
|
|
9705
9711
|
const loadingAnimation = styled.keyframes `
|
|
@@ -9711,7 +9717,7 @@ const loadingAnimation = styled.keyframes `
|
|
|
9711
9717
|
background-position: 0 0;
|
|
9712
9718
|
}
|
|
9713
9719
|
`;
|
|
9714
|
-
const StyledLoadingList =
|
|
9720
|
+
const StyledLoadingList = styled__default.default.div `
|
|
9715
9721
|
position: relative;
|
|
9716
9722
|
|
|
9717
9723
|
height: 40vh;
|
|
@@ -9742,10 +9748,10 @@ const StyledLoadingList = styled.div `
|
|
|
9742
9748
|
|
|
9743
9749
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
9744
9750
|
const LoadingList = () => {
|
|
9745
|
-
return
|
|
9751
|
+
return React__default.default.createElement(StyledLoadingList, null);
|
|
9746
9752
|
};
|
|
9747
9753
|
|
|
9748
|
-
const StyledButton =
|
|
9754
|
+
const StyledButton = styled__default.default.button `
|
|
9749
9755
|
border: 0;
|
|
9750
9756
|
display: inline-block;
|
|
9751
9757
|
cursor: pointer;
|
|
@@ -9844,11 +9850,11 @@ const StyledButton = styled.button `
|
|
|
9844
9850
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
9845
9851
|
function Button(props) {
|
|
9846
9852
|
const { id, className, busy, children, disabled, onClick, onFocus, role, style, tabindex, type, variant = 'default' } = props, rest = __rest(props, ["id", "className", "busy", "children", "disabled", "onClick", "onFocus", "role", "style", "tabindex", "type", "variant"]);
|
|
9847
|
-
return (
|
|
9853
|
+
return (React__default.default.createElement(StyledButton, Object.assign({ "aria-disabled": busy, "aria-label": props['aria-label'], "aria-pressed": props['aria-pressed'], "aria-selected": props['aria-selected'], className: classNames(variant, className, {
|
|
9848
9854
|
blue: variant === 'primary' || variant === 'cta',
|
|
9849
9855
|
busy,
|
|
9850
9856
|
}), "data-cy": props['data-cy'], disabled: disabled, id: id, onClick: busy ? undefined : onClick, onFocus: onFocus, role: role, style: style, tabIndex: tabindex, type: type || 'button' }, rest),
|
|
9851
|
-
busy &&
|
|
9857
|
+
busy && React__default.default.createElement(CircleSpinner, { size: "0.9em", style: { marginRight: '0.5em' } }),
|
|
9852
9858
|
children));
|
|
9853
9859
|
}
|
|
9854
9860
|
|
|
@@ -9886,7 +9892,7 @@ function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else i
|
|
|
9886
9892
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
9887
9893
|
* governing permissions and limitations under the License.
|
|
9888
9894
|
*/
|
|
9889
|
-
const $f0a04ccd8dbdd83b$export$e5c5a5f917a5871c = typeof document !== "undefined" ? (
|
|
9895
|
+
const $f0a04ccd8dbdd83b$export$e5c5a5f917a5871c = typeof document !== "undefined" ? (React__default.default).useLayoutEffect : ()=>{};
|
|
9890
9896
|
|
|
9891
9897
|
|
|
9892
9898
|
|
|
@@ -10541,7 +10547,7 @@ function $14c0b72509d70225$export$b0d6fa1ab32e3295(target) {
|
|
|
10541
10547
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
10542
10548
|
* governing permissions and limitations under the License.
|
|
10543
10549
|
*/
|
|
10544
|
-
const $ae1eeba8b9eafd08$export$5165eccb35aaadb5 = (
|
|
10550
|
+
const $ae1eeba8b9eafd08$export$5165eccb35aaadb5 = (React__default.default).createContext({
|
|
10545
10551
|
register: ()=>{}
|
|
10546
10552
|
});
|
|
10547
10553
|
$ae1eeba8b9eafd08$export$5165eccb35aaadb5.displayName = "PressResponderContext";
|
|
@@ -11707,7 +11713,7 @@ function $f7dceffc5ad7768b$export$4e328f61c538687f(props = {}) {
|
|
|
11707
11713
|
|
|
11708
11714
|
|
|
11709
11715
|
|
|
11710
|
-
let $e6afbd83fe6ebbd2$var$FocusableContext = /*#__PURE__*/ (
|
|
11716
|
+
let $e6afbd83fe6ebbd2$var$FocusableContext = /*#__PURE__*/ (React__default.default).createContext(null);
|
|
11711
11717
|
function $e6afbd83fe6ebbd2$var$useFocusableContext(ref) {
|
|
11712
11718
|
let context = (React.useContext)($e6afbd83fe6ebbd2$var$FocusableContext) || {};
|
|
11713
11719
|
($e7801be82b4b2a53$export$4debdb1a3f0fa79e)(context, ref);
|
|
@@ -11959,13 +11965,13 @@ const iconButton = styled.css `
|
|
|
11959
11965
|
}
|
|
11960
11966
|
}
|
|
11961
11967
|
`;
|
|
11962
|
-
const StyledIconButton =
|
|
11968
|
+
const StyledIconButton = styled__default.default.button `
|
|
11963
11969
|
// todo: overrides the global button styling
|
|
11964
11970
|
display: flex !important;
|
|
11965
11971
|
|
|
11966
11972
|
${iconButton};
|
|
11967
11973
|
`;
|
|
11968
|
-
const StyledIconButtonLink =
|
|
11974
|
+
const StyledIconButtonLink = styled__default.default(reactRouterDom.Link) `
|
|
11969
11975
|
// todo: overrides the global button styling
|
|
11970
11976
|
display: inline-flex !important;
|
|
11971
11977
|
|
|
@@ -11991,27 +11997,27 @@ function IconButton(props) {
|
|
|
11991
11997
|
busy,
|
|
11992
11998
|
disabled: isLink && isDisabled,
|
|
11993
11999
|
}) }, buttonProps), focusProps), { 'data-cy': props['data-cy'], id, ref: buttonEl, style });
|
|
11994
|
-
const iconElement = busy ? (
|
|
12000
|
+
const iconElement = busy ? (React__default.default.createElement(CircleSpinner, { size: "1em", style: {
|
|
11995
12001
|
marginTop: `${adjustAlignment}px`,
|
|
11996
12002
|
marginBottom: `${Math.abs(adjustAlignment)}px`,
|
|
11997
|
-
} })) : (
|
|
11998
|
-
const labelElement = label ? (
|
|
12003
|
+
} })) : (React__default.default.createElement(Icon, { className: classNames({ 'right-margin': label }), name: iconName }));
|
|
12004
|
+
const labelElement = label ? (React__default.default.createElement("span", { style: { marginTop: `${adjustAlignment}px` } }, label)) : null;
|
|
11999
12005
|
if (isLink && !isDisabled) {
|
|
12000
12006
|
return (
|
|
12001
12007
|
//@ts-ignore
|
|
12002
|
-
|
|
12008
|
+
React__default.default.createElement(StyledIconButtonLink, Object.assign({}, commonProps, { to: isLink }),
|
|
12003
12009
|
iconElement,
|
|
12004
12010
|
" ",
|
|
12005
12011
|
labelElement));
|
|
12006
12012
|
}
|
|
12007
|
-
return (
|
|
12013
|
+
return (React__default.default.createElement(StyledIconButton, Object.assign({}, commonProps),
|
|
12008
12014
|
iconElement,
|
|
12009
12015
|
" ",
|
|
12010
12016
|
labelElement));
|
|
12011
12017
|
}
|
|
12012
12018
|
|
|
12013
12019
|
const transitionDuration = '200ms';
|
|
12014
|
-
const StyledEditableInput =
|
|
12020
|
+
const StyledEditableInput = styled__default.default.span `
|
|
12015
12021
|
&:hover .pencil-icon {
|
|
12016
12022
|
opacity: 1;
|
|
12017
12023
|
}
|
|
@@ -12082,9 +12088,9 @@ function EditableInput(props) {
|
|
|
12082
12088
|
setInitialValue(editableEl.current.innerText);
|
|
12083
12089
|
}
|
|
12084
12090
|
}, []);
|
|
12085
|
-
return (
|
|
12086
|
-
|
|
12087
|
-
|
|
12091
|
+
return (React__default.default.createElement(StyledEditableInput, { className: classNames('EditableInput-container', id, className), "data-cy": props['data-cy'], id: props.id },
|
|
12092
|
+
React__default.default.createElement("span", { role: "textbox", tabIndex: 0, contentEditable: true, suppressContentEditableWarning: true, ref: editableEl, onKeyDown: handleKeypress, onBlur: handleBlur }, children),
|
|
12093
|
+
React__default.default.createElement(Icon, { name: "fa-pencil-alt", className: "pencil-icon" })));
|
|
12088
12094
|
}
|
|
12089
12095
|
|
|
12090
12096
|
const inputCommon = styled.css `
|
|
@@ -12139,7 +12145,7 @@ const placeholderCommon = styled.css `
|
|
|
12139
12145
|
}
|
|
12140
12146
|
`;
|
|
12141
12147
|
|
|
12142
|
-
const StyledNumberField =
|
|
12148
|
+
const StyledNumberField = styled__default.default.div `
|
|
12143
12149
|
position: relative;
|
|
12144
12150
|
|
|
12145
12151
|
min-height: 40px;
|
|
@@ -12267,19 +12273,19 @@ function NumberInput(props) {
|
|
|
12267
12273
|
}, 1000);
|
|
12268
12274
|
return () => clearTimeout(delayDebounceFn);
|
|
12269
12275
|
}, [currentValue]);
|
|
12270
|
-
return (
|
|
12276
|
+
return (React__default.default.createElement(StyledNumberField, { className: classNames(className, {
|
|
12271
12277
|
hiddenLabel,
|
|
12272
12278
|
}), "data-cy": props['data-cy'], id: id },
|
|
12273
|
-
|
|
12274
|
-
!hiddenLabel &&
|
|
12275
|
-
|
|
12276
|
-
|
|
12277
|
-
|
|
12278
|
-
|
|
12279
|
-
|
|
12279
|
+
React__default.default.createElement("input", { tabIndex: tabIndex, autoFocus: autoFocus, id: fieldId, type: "number", value: currentValue, disabled: disabled, max: max, min: min, onChange: handleChange, placeholder: placeholder, required: required, step: step, "aria-label": hiddenLabel ? label : '', ref: inputEl }),
|
|
12280
|
+
!hiddenLabel && React__default.default.createElement("label", { htmlFor: fieldId }, label),
|
|
12281
|
+
React__default.default.createElement("div", { className: "spin-buttons" },
|
|
12282
|
+
React__default.default.createElement(Button, { variant: "no-style", onClick: increment, tabindex: -1 },
|
|
12283
|
+
React__default.default.createElement(Icon, { name: "fa-caret-up", ariaLabel: "increase" })),
|
|
12284
|
+
React__default.default.createElement(Button, { variant: "no-style", onClick: decrement, tabindex: -1 },
|
|
12285
|
+
React__default.default.createElement(Icon, { name: "fa-caret-down", ariaLabel: "decrease" })))));
|
|
12280
12286
|
}
|
|
12281
12287
|
|
|
12282
|
-
const StyledSearchField =
|
|
12288
|
+
const StyledSearchField = styled__default.default.div `
|
|
12283
12289
|
position: relative;
|
|
12284
12290
|
background: transparent;
|
|
12285
12291
|
|
|
@@ -12328,17 +12334,17 @@ const StyledSearchField = styled.div `
|
|
|
12328
12334
|
const SearchInput = (props) => {
|
|
12329
12335
|
const { border, showSearchIcon, showClearInputIcon, className, inputProps, onChange, onClear, onKeyUp, placeholder, value, } = props;
|
|
12330
12336
|
const id = v4();
|
|
12331
|
-
return (
|
|
12332
|
-
showSearchIcon && (
|
|
12333
|
-
|
|
12334
|
-
|
|
12335
|
-
showClearInputIcon && (
|
|
12337
|
+
return (React__default.default.createElement(StyledSearchField, { className: className, border: border, showSearchIcon: showSearchIcon, showClearInputIcon: showClearInputIcon, "data-cy": props['data-cy'], id: props.id },
|
|
12338
|
+
showSearchIcon && (React__default.default.createElement("label", { htmlFor: id },
|
|
12339
|
+
React__default.default.createElement(Icon, { name: "fa-search", ariaLabel: "search" }))),
|
|
12340
|
+
React__default.default.createElement("input", Object.assign({ type: "search", id: id, placeholder: placeholder, value: value, onChange: onChange, onKeyUp: onKeyUp }, inputProps)),
|
|
12341
|
+
showClearInputIcon && (React__default.default.createElement(Icon, { name: "x-close", ariaLabel: "clear input", className: "clear-input", onClick: onClear }))));
|
|
12336
12342
|
};
|
|
12337
12343
|
SearchInput.defaultProps = {
|
|
12338
12344
|
className: '',
|
|
12339
12345
|
};
|
|
12340
12346
|
|
|
12341
|
-
const StyledTextInput =
|
|
12347
|
+
const StyledTextInput = styled__default.default.div `
|
|
12342
12348
|
position: relative;
|
|
12343
12349
|
color: ${allColors.defaultFontColor};
|
|
12344
12350
|
font-family: ${typography.fontFamily.base};
|
|
@@ -12383,7 +12389,7 @@ const StyledTextInput = styled.div `
|
|
|
12383
12389
|
}
|
|
12384
12390
|
}
|
|
12385
12391
|
`;
|
|
12386
|
-
const StyledInputInfo =
|
|
12392
|
+
const StyledInputInfo = styled__default.default.div `
|
|
12387
12393
|
${inputInfoCommon};
|
|
12388
12394
|
|
|
12389
12395
|
display: flex;
|
|
@@ -12407,27 +12413,27 @@ function TextInput(props) {
|
|
|
12407
12413
|
const inputId = v4();
|
|
12408
12414
|
const { autoComplete, autoFocus, className, defaultValue, disabled, displayErrors, id, inputProps, label, maxLength, name, onBlur, onChange, onFocus, placeholder, promptProps, required, type = 'text', validationErrors, value, readOnly, } = props;
|
|
12409
12415
|
const errorClass = displayErrors ? 'error' : 'prompt';
|
|
12410
|
-
return (
|
|
12411
|
-
|
|
12416
|
+
return (React__default.default.createElement(StyledTextInput, { className: className, "data-cy": props['data-cy'], id: id },
|
|
12417
|
+
React__default.default.createElement("input", Object.assign({ autoComplete: autoComplete, autoFocus: autoFocus, className: classNames('text-input__input-element', {
|
|
12412
12418
|
filled: (value && value.length > 0) || defaultValue,
|
|
12413
12419
|
}), disabled: disabled, defaultValue: defaultValue, id: inputId, maxLength: maxLength, name: name, onBlur: onBlur, onChange: onChange, onFocus: onFocus, onKeyUp: (e) => {
|
|
12414
12420
|
if (e.key === 'Enter') {
|
|
12415
12421
|
e.currentTarget.blur();
|
|
12416
12422
|
}
|
|
12417
12423
|
}, placeholder: placeholder, required: required, type: type, value: value, readOnly: readOnly }, inputProps)),
|
|
12418
|
-
label ?
|
|
12419
|
-
(validationErrors || maxLength) && (
|
|
12420
|
-
validationErrors && (
|
|
12421
|
-
return (
|
|
12424
|
+
label ? React__default.default.createElement("label", { htmlFor: inputId }, label) : null,
|
|
12425
|
+
(validationErrors || maxLength) && (React__default.default.createElement(StyledInputInfo, null,
|
|
12426
|
+
validationErrors && (React__default.default.createElement("div", null, validationErrors.map((err, i) => {
|
|
12427
|
+
return (React__default.default.createElement("p", Object.assign({ className: errorClass, key: i }, promptProps), err));
|
|
12422
12428
|
}))),
|
|
12423
|
-
maxLength && (
|
|
12429
|
+
maxLength && (React__default.default.createElement("div", { className: classNames('count', { isMax: (value === null || value === void 0 ? void 0 : value.length) === maxLength }) },
|
|
12424
12430
|
(value === null || value === void 0 ? void 0 : value.length) || 0,
|
|
12425
12431
|
" / ",
|
|
12426
12432
|
maxLength))))));
|
|
12427
12433
|
}
|
|
12428
12434
|
|
|
12429
12435
|
const paddingRight = '30px';
|
|
12430
|
-
const StyledPagination =
|
|
12436
|
+
const StyledPagination = styled__default.default.div `
|
|
12431
12437
|
width: 100%;
|
|
12432
12438
|
position: relative;
|
|
12433
12439
|
|
|
@@ -12496,12 +12502,12 @@ function Pagination(props) {
|
|
|
12496
12502
|
const { currentPage, limit, quantity } = props;
|
|
12497
12503
|
const lastPage = Math.ceil(aggregateCount / limit);
|
|
12498
12504
|
const currentItemNumber = (currentPage - 1) * limit + 1;
|
|
12499
|
-
return (
|
|
12500
|
-
|
|
12501
|
-
|
|
12505
|
+
return (React__default.default.createElement(StyledPagination, { className: props.className, "data-cy": props['data-cy'], id: props.id },
|
|
12506
|
+
React__default.default.createElement("div", { className: "Pagination--stats" },
|
|
12507
|
+
React__default.default.createElement("p", null,
|
|
12502
12508
|
"Showing",
|
|
12503
12509
|
' ',
|
|
12504
|
-
aggregateCount === 0 ? (
|
|
12510
|
+
aggregateCount === 0 ? (React__default.default.createElement(React__default.default.Fragment, null)) : (React__default.default.createElement(React__default.default.Fragment, null,
|
|
12505
12511
|
currentItemNumber,
|
|
12506
12512
|
" - ",
|
|
12507
12513
|
currentItemNumber + quantity - 1,
|
|
@@ -12509,20 +12515,20 @@ function Pagination(props) {
|
|
|
12509
12515
|
' ')),
|
|
12510
12516
|
numberWithCommas(aggregateCount),
|
|
12511
12517
|
" entries")),
|
|
12512
|
-
aggregateCount > limit && (
|
|
12513
|
-
|
|
12514
|
-
currentPage > 1 && (
|
|
12515
|
-
|
|
12516
|
-
lastPage > currentPage + 1 && (
|
|
12517
|
-
lastPage > currentPage + 2 && (
|
|
12518
|
-
lastPage > currentPage + 3 && (
|
|
12519
|
-
lastPage - (currentPage + 2) === 3 && (
|
|
12520
|
-
lastPage - (currentPage + 2) > 2 && lastPage - (currentPage + 2) !== 3 &&
|
|
12521
|
-
lastPage !== currentPage && (
|
|
12522
|
-
hasNextPage && (
|
|
12523
|
-
}
|
|
12524
|
-
|
|
12525
|
-
const StyledShrug =
|
|
12518
|
+
aggregateCount > limit && (React__default.default.createElement("div", { className: "Pagination--button-group", "data-cy": "Pagination--button-group" },
|
|
12519
|
+
React__default.default.createElement("p", { "data-cy": "pagination--label" }, "Page:\u00A0"),
|
|
12520
|
+
currentPage > 1 && (React__default.default.createElement("button", { onClick: () => props.getPreviousPage(startCursor) }, "Prev")),
|
|
12521
|
+
React__default.default.createElement("p", { "data-cy": "pagination--current-page" }, currentPage),
|
|
12522
|
+
lastPage > currentPage + 1 && (React__default.default.createElement("button", { onClick: () => props.getPage(endCursor, 1), "data-cy": "pagination--second-page-number" }, currentPage + 1)),
|
|
12523
|
+
lastPage > currentPage + 2 && (React__default.default.createElement("button", { onClick: () => props.getPage(endCursor, 2), "data-cy": "pagination--third-page-number" }, currentPage + 2)),
|
|
12524
|
+
lastPage > currentPage + 3 && (React__default.default.createElement("button", { onClick: () => props.getPage(endCursor, 3) }, currentPage + 3)),
|
|
12525
|
+
lastPage - (currentPage + 2) === 3 && (React__default.default.createElement("button", { onClick: () => props.getPage(endCursor, 4) }, currentPage + 4)),
|
|
12526
|
+
lastPage - (currentPage + 2) > 2 && lastPage - (currentPage + 2) !== 3 && React__default.default.createElement("p", null, "..."),
|
|
12527
|
+
lastPage !== currentPage && (React__default.default.createElement("button", { onClick: () => props.getPage(endCursor, lastPage - currentPage), "data-cy": "pagination--last-page" }, lastPage)),
|
|
12528
|
+
hasNextPage && (React__default.default.createElement("button", { onClick: () => props.getNextPage(endCursor), "data-cy": "pagination--next-page-number" }, "Next"))))));
|
|
12529
|
+
}
|
|
12530
|
+
|
|
12531
|
+
const StyledShrug = styled__default.default.div `
|
|
12526
12532
|
display: flex;
|
|
12527
12533
|
flex-direction: column;
|
|
12528
12534
|
align-items: center;
|
|
@@ -12545,14 +12551,14 @@ const StyledShrug = styled.div `
|
|
|
12545
12551
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
12546
12552
|
function Shrug(props) {
|
|
12547
12553
|
const { actionLink, actionText, buttonAction, buttonText, className, id, message } = props;
|
|
12548
|
-
return (
|
|
12549
|
-
|
|
12550
|
-
typeof message === 'string' ? (
|
|
12551
|
-
actionLink && actionText && (
|
|
12552
|
-
buttonAction && buttonText && (
|
|
12554
|
+
return (React__default.default.createElement(StyledShrug, { className: className, "data-cy": props['data-cy'], id: id },
|
|
12555
|
+
React__default.default.createElement(Icon, { name: "shrug", size: ['260px', '84px'] }),
|
|
12556
|
+
typeof message === 'string' ? (React__default.default.createElement("p", Object.assign({ className: "t-subhead-large" }, props === null || props === void 0 ? void 0 : props.messageProps), message)) : (message),
|
|
12557
|
+
actionLink && actionText && (React__default.default.createElement(reactRouterDom.Link, { to: actionLink, className: "button blue cta", style: { marginTop: '20px' } }, actionText)),
|
|
12558
|
+
buttonAction && buttonText && (React__default.default.createElement(Button, { onClick: buttonAction, style: { marginTop: '20px' }, variant: "cta" }, buttonText))));
|
|
12553
12559
|
}
|
|
12554
12560
|
|
|
12555
|
-
const StyledHeader =
|
|
12561
|
+
const StyledHeader = styled__default.default.header `
|
|
12556
12562
|
display: flex;
|
|
12557
12563
|
justify-content: space-between;
|
|
12558
12564
|
width: 100%;
|
|
@@ -12614,21 +12620,21 @@ const StyledHeader = styled.header `
|
|
|
12614
12620
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
12615
12621
|
const Header = (props) => {
|
|
12616
12622
|
const { title, headerComponent, sortBy, aggregateCount } = props;
|
|
12617
|
-
return (
|
|
12618
|
-
|
|
12619
|
-
|
|
12620
|
-
|
|
12621
|
-
|
|
12622
|
-
headerComponent ?
|
|
12623
|
-
sortBy ? (
|
|
12624
|
-
|
|
12623
|
+
return (React__default.default.createElement(StyledHeader, null,
|
|
12624
|
+
React__default.default.createElement("div", { className: "title-container" },
|
|
12625
|
+
React__default.default.createElement("h2", { className: "title" }, title),
|
|
12626
|
+
React__default.default.createElement("span", { className: "count" }, aggregateCount ? numberWithCommas(aggregateCount) : null)),
|
|
12627
|
+
React__default.default.createElement("div", { className: "controls-container" },
|
|
12628
|
+
headerComponent ? React__default.default.createElement("div", { className: "header-component" }, headerComponent) : null,
|
|
12629
|
+
sortBy ? (React__default.default.createElement("div", { className: "sort-by" },
|
|
12630
|
+
React__default.default.createElement(BorderSelect, Object.assign({ label: "Sort By", value: sortBy.value, options: sortBy.items, onChange: (e) => {
|
|
12625
12631
|
sortBy.onSort(e.target.value);
|
|
12626
12632
|
}, horizontal: true }, props.selectProps)),
|
|
12627
|
-
|
|
12628
|
-
|
|
12633
|
+
React__default.default.createElement(Button, { "data-cy": "dataset--sort-by-btn", onClick: () => sortBy.updateDescending(), variant: "no-style", className: "button-sort-direction" },
|
|
12634
|
+
React__default.default.createElement(Icon, { name: "fa-arrow-down", ariaLabel: "descending", size: [16], style: { transform: sortBy.descending ? '' : 'rotate(180deg)' } })))) : null)));
|
|
12629
12635
|
};
|
|
12630
12636
|
|
|
12631
|
-
const StyledListTable =
|
|
12637
|
+
const StyledListTable = styled__default.default.div `
|
|
12632
12638
|
.list {
|
|
12633
12639
|
.list-header-container,
|
|
12634
12640
|
.list-container .list-item {
|
|
@@ -12704,29 +12710,29 @@ const StyledListTable = styled.div `
|
|
|
12704
12710
|
// TODO: This component's migration was fast-tracked for Insights. Assess for potential refactor and documentation.
|
|
12705
12711
|
const ListTable = (props) => {
|
|
12706
12712
|
var _a, _b;
|
|
12707
|
-
const header = (
|
|
12713
|
+
const header = (React__default.default.createElement(Header, { selectProps: { 'data-cy': 'dataset--sort-by-select' }, title: props.title, headerComponent: props.headerComponent, sortBy: props.sortBy, aggregateCount: ((_b = (_a = props === null || props === void 0 ? void 0 : props.pagination) === null || _a === void 0 ? void 0 : _a.pageInfo) === null || _b === void 0 ? void 0 : _b.aggregateCount) || props.totalCount }));
|
|
12708
12714
|
const RenderList = () => {
|
|
12709
12715
|
if (props.loading) {
|
|
12710
|
-
return
|
|
12716
|
+
return React__default.default.createElement(LoadingList, null);
|
|
12711
12717
|
}
|
|
12712
12718
|
if (props.error) {
|
|
12713
|
-
return (
|
|
12714
|
-
|
|
12719
|
+
return (React__default.default.createElement(SectionBody, { className: "error-shrug" },
|
|
12720
|
+
React__default.default.createElement(Shrug, { message: props.errorMessage || 'Sorry, there was an error retrieving this data' })));
|
|
12715
12721
|
}
|
|
12716
|
-
return (
|
|
12717
|
-
props.listItems.length === 0 ? (
|
|
12718
|
-
|
|
12722
|
+
return (React__default.default.createElement(React__default.default.Fragment, null,
|
|
12723
|
+
props.listItems.length === 0 ? (React__default.default.createElement(SectionBody, { className: "error-shrug" },
|
|
12724
|
+
React__default.default.createElement(Shrug, { message: props.emptyListMessage || 'No results found' }))) : (React__default.default.createElement("ul", { className: "list-container" }, props.listItems.map((li) => {
|
|
12719
12725
|
const key = v4();
|
|
12720
|
-
return (
|
|
12726
|
+
return (React__default.default.createElement("li", { className: "list-item", key: key }, li));
|
|
12721
12727
|
}))),
|
|
12722
|
-
props.pagination ? (
|
|
12728
|
+
props.pagination ? (React__default.default.createElement(Pagination, { limit: props.pagination.limit, pageInfo: props.pagination.pageInfo, currentPage: props.pagination.currentPage, getPage: props.pagination.getPage, getPreviousPage: props.pagination.getPreviousPage, getNextPage: props.pagination.getNextPage, quantity: props.listItems.length })) : null));
|
|
12723
12729
|
};
|
|
12724
|
-
const list = (
|
|
12725
|
-
props.subTitle ? (
|
|
12726
|
-
|
|
12727
|
-
!props.error ?
|
|
12728
|
-
|
|
12729
|
-
return (
|
|
12730
|
+
const list = (React__default.default.createElement(StyledListTable, null,
|
|
12731
|
+
props.subTitle ? (React__default.default.createElement("div", { className: "sub-title" }, typeof props.subTitle === 'string' ? (React__default.default.createElement("p", { style: { maxWidth: '75%' } }, props.subTitle)) : (props.subTitle))) : null,
|
|
12732
|
+
React__default.default.createElement("div", { className: "list" },
|
|
12733
|
+
!props.error ? React__default.default.createElement("div", { className: "list-header-container" }, props.listHeader) : null,
|
|
12734
|
+
React__default.default.createElement(RenderList, null))));
|
|
12735
|
+
return (React__default.default.createElement(StyledListTable, { className: props.className, "data-cy": props['data-cy'], id: props.id }, props.accordion ? (React__default.default.createElement(Accordion, { header: header, content: list, open: props.accordionDefaultOpen })) : (React__default.default.createElement(React__default.default.Fragment, null,
|
|
12730
12736
|
header,
|
|
12731
12737
|
list))));
|
|
12732
12738
|
};
|