@nypl/design-system-react-components 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/components/Icons/Icon.d.ts +1 -1
- package/dist/components/Icons/IconSvgs.d.ts +5 -0
- package/dist/components/StyleGuide/ColorCard.d.ts +25 -7
- package/dist/design-system-react-components.cjs.development.js +1085 -817
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +1087 -820
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/hooks/useNYPLBreakpoints.d.ts +5 -5
- package/dist/index.d.ts +1 -0
- package/dist/styles.css +1 -1
- package/dist/theme/components/checkbox.d.ts +0 -1
- package/dist/theme/components/radio.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { chakra, useStyleConfig, Icon as Icon$2, Box, Accordion as Accordion$2, AccordionPanel, AccordionItem, AccordionButton, Breadcrumb as Breadcrumb$1, BreadcrumbItem, BreadcrumbLink, Button as Button$2, useMediaQuery, Stack, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, Text as Text$2, Checkbox as Checkbox$2, CheckboxGroup as CheckboxGroup$2, SimpleGrid as SimpleGrid$1, Input, Textarea, extendTheme, ChakraProvider, useDisclosure, Modal, ModalOverlay, ModalContent, ModalHeader, ModalCloseButton, ModalBody, ModalFooter, CircularProgress, CircularProgressLabel, Progress, Radio as Radio$2, RadioGroup as RadioGroup$2, Select as Select$2, Skeleton as Skeleton$1, RangeSlider, RangeSliderTrack, RangeSliderFilledTrack, RangeSliderThumb, Slider as Slider$1, SliderTrack, SliderFilledTrack, SliderThumb, Tabs as Tabs$1, Tab, TabPanel, TabList, TabPanels, Switch as Switch$1, useTheme
|
|
1
|
+
import { chakra, useStyleConfig, Icon as Icon$2, Box, Accordion as Accordion$2, AccordionPanel, AccordionItem, AccordionButton, Breadcrumb as Breadcrumb$1, BreadcrumbItem, BreadcrumbLink, Button as Button$2, useMediaQuery, Stack, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, Text as Text$2, Checkbox as Checkbox$2, CheckboxGroup as CheckboxGroup$2, SimpleGrid as SimpleGrid$1, TableCaption, Thead, Tr, Th, Table as Table$1, Tbody, Td, Input, Textarea, extendTheme, ChakraProvider, useDisclosure, Modal, ModalOverlay, ModalContent, ModalHeader, ModalCloseButton, ModalBody, ModalFooter, CircularProgress, CircularProgressLabel, Progress, Radio as Radio$2, RadioGroup as RadioGroup$2, Select as Select$2, Skeleton as Skeleton$1, RangeSlider, RangeSliderTrack, RangeSliderFilledTrack, RangeSliderThumb, Slider as Slider$1, SliderTrack, SliderFilledTrack, SliderThumb, Tabs as Tabs$1, Tab, TabPanel, TabList, TabPanels, Switch as Switch$1, useTheme } from '@chakra-ui/react';
|
|
2
2
|
export { Box, Center, Circle, ColorModeScript, Flex, Grid, GridItem, HStack, Spacer, Square, Stack, Tab, TabList, TabPanel, TabPanels, VStack, cookieStorageManager, localStorageManager, useColorMode, useColorModeValue } from '@chakra-ui/react';
|
|
3
|
-
import React__default, { createElement, cloneElement, Fragment, Children,
|
|
3
|
+
import React__default, { createElement, cloneElement, Fragment, Children, useState, useEffect, forwardRef, useRef } from 'react';
|
|
4
4
|
import useNativeLazyLoading from '@charlietango/use-native-lazy-loading';
|
|
5
5
|
import { useInView } from 'react-intersection-observer';
|
|
6
6
|
import ReactDatePicker from 'react-datepicker';
|
|
@@ -157,7 +157,7 @@ function _objectWithoutProperties$3(source, excluded) { if (source == null) retu
|
|
|
157
157
|
|
|
158
158
|
function _objectWithoutPropertiesLoose$4(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
159
159
|
|
|
160
|
-
function
|
|
160
|
+
function SvgActionCheckCircleFilled(_ref) {
|
|
161
161
|
var title = _ref.title,
|
|
162
162
|
titleId = _ref.titleId,
|
|
163
163
|
props = _objectWithoutProperties$3(_ref, _excluded$3);
|
|
@@ -169,9 +169,7 @@ function SvgActionExit(_ref) {
|
|
|
169
169
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
170
170
|
id: titleId
|
|
171
171
|
}, title) : null, _path$3 || (_path$3 = /*#__PURE__*/createElement("path", {
|
|
172
|
-
|
|
173
|
-
clipRule: "evenodd",
|
|
174
|
-
d: "M5 3h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5a2 2 0 01-2-2v-4h2v4h14V5H5v4H3V5a2 2 0 012-2zm6.5 14l-1.41-1.41L12.67 13H3v-2h9.67l-2.58-2.59L11.5 7l5 5-5 5z"
|
|
172
|
+
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
|
|
175
173
|
})));
|
|
176
174
|
}
|
|
177
175
|
|
|
@@ -185,7 +183,7 @@ function _objectWithoutProperties$4(source, excluded) { if (source == null) retu
|
|
|
185
183
|
|
|
186
184
|
function _objectWithoutPropertiesLoose$5(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
187
185
|
|
|
188
|
-
function
|
|
186
|
+
function SvgActionExit(_ref) {
|
|
189
187
|
var title = _ref.title,
|
|
190
188
|
titleId = _ref.titleId,
|
|
191
189
|
props = _objectWithoutProperties$4(_ref, _excluded$4);
|
|
@@ -199,7 +197,7 @@ function SvgActionHelpDefault(_ref) {
|
|
|
199
197
|
}, title) : null, _path$4 || (_path$4 = /*#__PURE__*/createElement("path", {
|
|
200
198
|
fillRule: "evenodd",
|
|
201
199
|
clipRule: "evenodd",
|
|
202
|
-
d: "
|
|
200
|
+
d: "M5 3h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5a2 2 0 01-2-2v-4h2v4h14V5H5v4H3V5a2 2 0 012-2zm6.5 14l-1.41-1.41L12.67 13H3v-2h9.67l-2.58-2.59L11.5 7l5 5-5 5z"
|
|
203
201
|
})));
|
|
204
202
|
}
|
|
205
203
|
|
|
@@ -213,7 +211,7 @@ function _objectWithoutProperties$5(source, excluded) { if (source == null) retu
|
|
|
213
211
|
|
|
214
212
|
function _objectWithoutPropertiesLoose$6(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
215
213
|
|
|
216
|
-
function
|
|
214
|
+
function SvgActionHelpDefault(_ref) {
|
|
217
215
|
var title = _ref.title,
|
|
218
216
|
titleId = _ref.titleId,
|
|
219
217
|
props = _objectWithoutProperties$5(_ref, _excluded$5);
|
|
@@ -227,7 +225,7 @@ function SvgActionHelpOutline(_ref) {
|
|
|
227
225
|
}, title) : null, _path$5 || (_path$5 = /*#__PURE__*/createElement("path", {
|
|
228
226
|
fillRule: "evenodd",
|
|
229
227
|
clipRule: "evenodd",
|
|
230
|
-
d: "
|
|
228
|
+
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17v-2h2v2h-2zm3.17-6.83l.9-.92c.57-.57.93-1.37.93-2.25 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2s2 .9 2 2c0 .55-.22 1.05-.59 1.41l-1.24 1.26C11.45 12.4 11 13.4 11 14.5v.5h2c0-1.5.45-2.1 1.17-2.83z"
|
|
231
229
|
})));
|
|
232
230
|
}
|
|
233
231
|
|
|
@@ -241,7 +239,7 @@ function _objectWithoutProperties$6(source, excluded) { if (source == null) retu
|
|
|
241
239
|
|
|
242
240
|
function _objectWithoutPropertiesLoose$7(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
243
241
|
|
|
244
|
-
function
|
|
242
|
+
function SvgActionHelpOutline(_ref) {
|
|
245
243
|
var title = _ref.title,
|
|
246
244
|
titleId = _ref.titleId,
|
|
247
245
|
props = _objectWithoutProperties$6(_ref, _excluded$6);
|
|
@@ -255,7 +253,7 @@ function SvgActionLaunch(_ref) {
|
|
|
255
253
|
}, title) : null, _path$6 || (_path$6 = /*#__PURE__*/createElement("path", {
|
|
256
254
|
fillRule: "evenodd",
|
|
257
255
|
clipRule: "evenodd",
|
|
258
|
-
d: "
|
|
256
|
+
d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm11 4v2h-2v-2h2zm-1 4c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM8 10c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.283-.79 1.973-1.56 2.646C13.712 13.283 13 13.905 13 15h-2c0-1.821.942-2.543 1.77-3.178.65-.498 1.23-.943 1.23-1.822 0-1.1-.9-2-2-2s-2 .9-2 2H8z"
|
|
259
257
|
})));
|
|
260
258
|
}
|
|
261
259
|
|
|
@@ -269,7 +267,7 @@ function _objectWithoutProperties$7(source, excluded) { if (source == null) retu
|
|
|
269
267
|
|
|
270
268
|
function _objectWithoutPropertiesLoose$8(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
271
269
|
|
|
272
|
-
function
|
|
270
|
+
function SvgActionLaunch(_ref) {
|
|
273
271
|
var title = _ref.title,
|
|
274
272
|
titleId = _ref.titleId,
|
|
275
273
|
props = _objectWithoutProperties$7(_ref, _excluded$7);
|
|
@@ -283,7 +281,7 @@ function SvgActionPower(_ref) {
|
|
|
283
281
|
}, title) : null, _path$7 || (_path$7 = /*#__PURE__*/createElement("path", {
|
|
284
282
|
fillRule: "evenodd",
|
|
285
283
|
clipRule: "evenodd",
|
|
286
|
-
d: "
|
|
284
|
+
d: "M5 5v14h14v-7h2v7c0 1.1-.9 2-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h7v2H5zm9 0V3h7v7h-2V6.41l-9.83 9.83-1.41-1.41L17.59 5H14z"
|
|
287
285
|
})));
|
|
288
286
|
}
|
|
289
287
|
|
|
@@ -297,7 +295,7 @@ function _objectWithoutProperties$8(source, excluded) { if (source == null) retu
|
|
|
297
295
|
|
|
298
296
|
function _objectWithoutPropertiesLoose$9(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
299
297
|
|
|
300
|
-
function
|
|
298
|
+
function SvgActionPower(_ref) {
|
|
301
299
|
var title = _ref.title,
|
|
302
300
|
titleId = _ref.titleId,
|
|
303
301
|
props = _objectWithoutProperties$8(_ref, _excluded$8);
|
|
@@ -311,7 +309,7 @@ function SvgActionSettings(_ref) {
|
|
|
311
309
|
}, title) : null, _path$8 || (_path$8 = /*#__PURE__*/createElement("path", {
|
|
312
310
|
fillRule: "evenodd",
|
|
313
311
|
clipRule: "evenodd",
|
|
314
|
-
d: "
|
|
312
|
+
d: "M11 3h2v10h-2V3zm5.41 3.59l1.42-1.42A8.932 8.932 0 0121 12a9 9 0 01-18 0c0-2.74 1.23-5.18 3.17-6.83l1.41 1.41A6.995 6.995 0 0012 19c3.87 0 7-3.13 7-7a6.92 6.92 0 00-2.59-5.41z"
|
|
315
313
|
})));
|
|
316
314
|
}
|
|
317
315
|
|
|
@@ -325,7 +323,7 @@ function _objectWithoutProperties$9(source, excluded) { if (source == null) retu
|
|
|
325
323
|
|
|
326
324
|
function _objectWithoutPropertiesLoose$a(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
327
325
|
|
|
328
|
-
function
|
|
326
|
+
function SvgActionRegistration(_ref) {
|
|
329
327
|
var title = _ref.title,
|
|
330
328
|
titleId = _ref.titleId,
|
|
331
329
|
props = _objectWithoutProperties$9(_ref, _excluded$9);
|
|
@@ -337,9 +335,7 @@ function SvgAlertNotificationImportant(_ref) {
|
|
|
337
335
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
338
336
|
id: titleId
|
|
339
337
|
}, title) : null, _path$9 || (_path$9 = /*#__PURE__*/createElement("path", {
|
|
340
|
-
|
|
341
|
-
clipRule: "evenodd",
|
|
342
|
-
d: "M10.5 2.75c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1.17c3.14.68 5.5 3.48 5.5 6.83v6l2 2v1H3v-1l2-2v-6C5 7.4 7.36 4.6 10.5 3.92V2.75zm1.5 3c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm-1.99 15.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM13 7.75v4h-2v-4h2zm0 8v-2h-2v2h2z"
|
|
338
|
+
d: "M10 4h4v4h-4V4zM4 16h4v4H4v-4zm0-6h4v4H4v-4zm0-6h4v4H4V4zm10 8.42V10h-4v4h2.42L14 12.42zm6.88-1.13l-1.17-1.17a.41.41 0 00-.58 0l-.88.88L20 12.75l.88-.88a.41.41 0 000-.58zM11 18.25V20h1.75l6.67-6.67-1.75-1.75L11 18.25zM16 4h4v4h-4V4z"
|
|
343
339
|
})));
|
|
344
340
|
}
|
|
345
341
|
|
|
@@ -353,13 +349,13 @@ function _objectWithoutProperties$a(source, excluded) { if (source == null) retu
|
|
|
353
349
|
|
|
354
350
|
function _objectWithoutPropertiesLoose$b(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
355
351
|
|
|
356
|
-
function
|
|
352
|
+
function SvgActionSettings(_ref) {
|
|
357
353
|
var title = _ref.title,
|
|
358
354
|
titleId = _ref.titleId,
|
|
359
355
|
props = _objectWithoutProperties$a(_ref, _excluded$a);
|
|
360
356
|
|
|
361
357
|
return /*#__PURE__*/createElement("svg", _extends$b({
|
|
362
|
-
viewBox: "0 0 24
|
|
358
|
+
viewBox: "0 0 24 24",
|
|
363
359
|
xmlns: "http://www.w3.org/2000/svg",
|
|
364
360
|
"aria-labelledby": titleId
|
|
365
361
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
@@ -367,11 +363,11 @@ function SvgArrow(_ref) {
|
|
|
367
363
|
}, title) : null, _path$a || (_path$a = /*#__PURE__*/createElement("path", {
|
|
368
364
|
fillRule: "evenodd",
|
|
369
365
|
clipRule: "evenodd",
|
|
370
|
-
d: "
|
|
366
|
+
d: "M19.502 12c0 .34-.03.66-.07.98l2.11 1.65c.19.15.24.42.12.64l-2 3.46c-.09.16-.26.25-.43.25-.06 0-.12-.01-.18-.03l-2.49-1c-.52.39-1.08.73-1.69.98l-.38 2.65c-.03.24-.24.42-.49.42h-4c-.25 0-.46-.18-.49-.42l-.38-2.65c-.61-.25-1.17-.58-1.69-.98l-2.49 1a.5.5 0 01-.61-.22l-2-3.46a.505.505 0 01.12-.64l2.11-1.65a7.93 7.93 0 01-.07-.98c0-.33.03-.66.07-.98l-2.11-1.65a.493.493 0 01-.12-.64l2-3.46c.09-.16.26-.25.43-.25.06 0 .12.01.18.03l2.49 1c.52-.39 1.08-.73 1.69-.98l.38-2.65c.03-.24.24-.42.49-.42h4c.25 0 .46.18.49.42l.38 2.65c.61.25 1.17.58 1.69.98l2.49-1a.5.5 0 01.61.22l2 3.46c.12.22.07.49-.12.64l-2.11 1.65c.04.32.07.64.07.98zm-2 0c0-.21-.01-.42-.05-.73l-.14-1.13.89-.7 1.07-.85-.7-1.21-1.27.51-1.06.43-.91-.7c-.4-.3-.8-.53-1.23-.71l-1.06-.43-.16-1.13-.19-1.35h-1.39l-.2 1.35-.16 1.13-1.06.43c-.41.17-.82.41-1.25.73l-.9.68-1.04-.42-1.27-.51-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73 0 .2.02.43.05.74l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.4.3.8.53 1.23.71l1.06.43.16 1.13.19 1.35h1.4l.2-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.03-.3.05-.52.05-.73zm-5.5-4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2 4c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2z"
|
|
371
367
|
})));
|
|
372
368
|
}
|
|
373
369
|
|
|
374
|
-
var _path$b
|
|
370
|
+
var _path$b;
|
|
375
371
|
|
|
376
372
|
var _excluded$b = ["title", "titleId"];
|
|
377
373
|
|
|
@@ -381,21 +377,21 @@ function _objectWithoutProperties$b(source, excluded) { if (source == null) retu
|
|
|
381
377
|
|
|
382
378
|
function _objectWithoutPropertiesLoose$c(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
383
379
|
|
|
384
|
-
function
|
|
380
|
+
function SvgAlertNotificationImportant(_ref) {
|
|
385
381
|
var title = _ref.title,
|
|
386
382
|
titleId = _ref.titleId,
|
|
387
383
|
props = _objectWithoutProperties$b(_ref, _excluded$b);
|
|
388
384
|
|
|
389
385
|
return /*#__PURE__*/createElement("svg", _extends$c({
|
|
390
|
-
viewBox: "0 0
|
|
386
|
+
viewBox: "0 0 24 24",
|
|
391
387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
392
388
|
"aria-labelledby": titleId
|
|
393
389
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
394
390
|
id: titleId
|
|
395
391
|
}, title) : null, _path$b || (_path$b = /*#__PURE__*/createElement("path", {
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
d: "
|
|
392
|
+
fillRule: "evenodd",
|
|
393
|
+
clipRule: "evenodd",
|
|
394
|
+
d: "M10.5 2.75c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1.17c3.14.68 5.5 3.48 5.5 6.83v6l2 2v1H3v-1l2-2v-6C5 7.4 7.36 4.6 10.5 3.92V2.75zm1.5 3c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm-1.99 15.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM13 7.75v4h-2v-4h2zm0 8v-2h-2v2h2z"
|
|
399
395
|
})));
|
|
400
396
|
}
|
|
401
397
|
|
|
@@ -409,23 +405,25 @@ function _objectWithoutProperties$c(source, excluded) { if (source == null) retu
|
|
|
409
405
|
|
|
410
406
|
function _objectWithoutPropertiesLoose$d(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
411
407
|
|
|
412
|
-
function
|
|
408
|
+
function SvgArrow(_ref) {
|
|
413
409
|
var title = _ref.title,
|
|
414
410
|
titleId = _ref.titleId,
|
|
415
411
|
props = _objectWithoutProperties$c(_ref, _excluded$c);
|
|
416
412
|
|
|
417
413
|
return /*#__PURE__*/createElement("svg", _extends$d({
|
|
418
|
-
viewBox: "0 0 24
|
|
414
|
+
viewBox: "0 0 24 14",
|
|
419
415
|
xmlns: "http://www.w3.org/2000/svg",
|
|
420
416
|
"aria-labelledby": titleId
|
|
421
417
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
422
418
|
id: titleId
|
|
423
419
|
}, title) : null, _path$c || (_path$c = /*#__PURE__*/createElement("path", {
|
|
424
|
-
|
|
420
|
+
fillRule: "evenodd",
|
|
421
|
+
clipRule: "evenodd",
|
|
422
|
+
d: "M10.526 12.871L.263 1.676 1.737.324 12 11.52 22.263.324l1.474 1.352L13.474 12.87a2 2 0 01-2.948 0z"
|
|
425
423
|
})));
|
|
426
424
|
}
|
|
427
425
|
|
|
428
|
-
var _path$d;
|
|
426
|
+
var _path$d, _path2$2;
|
|
429
427
|
|
|
430
428
|
var _excluded$d = ["title", "titleId"];
|
|
431
429
|
|
|
@@ -435,21 +433,21 @@ function _objectWithoutProperties$d(source, excluded) { if (source == null) retu
|
|
|
435
433
|
|
|
436
434
|
function _objectWithoutPropertiesLoose$e(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
437
435
|
|
|
438
|
-
function
|
|
436
|
+
function SvgBuilding(_ref) {
|
|
439
437
|
var title = _ref.title,
|
|
440
438
|
titleId = _ref.titleId,
|
|
441
439
|
props = _objectWithoutProperties$d(_ref, _excluded$d);
|
|
442
440
|
|
|
443
441
|
return /*#__PURE__*/createElement("svg", _extends$e({
|
|
444
|
-
viewBox: "0 0
|
|
442
|
+
viewBox: "0 0 26 26",
|
|
445
443
|
xmlns: "http://www.w3.org/2000/svg",
|
|
446
444
|
"aria-labelledby": titleId
|
|
447
445
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
448
446
|
id: titleId
|
|
449
447
|
}, title) : null, _path$d || (_path$d = /*#__PURE__*/createElement("path", {
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
d: "M11.
|
|
448
|
+
d: "M7.326 7.085a.807.807 0 00.422-.12l5.247-3.208 5.247 3.208a.81.81 0 00.845-1.38l-5.67-3.466a.81.81 0 00-.845 0L6.904 5.585a.809.809 0 00.423 1.5zM25.2 22.34h-.86v-9.296h.782a.832.832 0 000-1.66h-3.2a.831.831 0 000 1.66h.757v9.296H3.413v-9.296h.99a.831.831 0 000-1.66h-3.2a.831.831 0 000 1.66h.55v9.296H.8A.831.831 0 00.8 24H25.2a.831.831 0 000-1.66z"
|
|
449
|
+
})), _path2$2 || (_path2$2 = /*#__PURE__*/createElement("path", {
|
|
450
|
+
d: "M11.56 21.32a.827.827 0 00.83-.808v-6.13a2.986 2.986 0 00-1.827-2.836 2.993 2.993 0 00-4.153 2.835v6.13a.83.83 0 001.662 0v-6.13a1.332 1.332 0 011.866-1.338 1.332 1.332 0 01.79 1.338v6.13a.827.827 0 00.831.81zm7.307 0a.828.828 0 00.83-.808v-6.13a2.988 2.988 0 00-4.153-2.836 2.993 2.993 0 00-1.826 2.835v6.13a.83.83 0 001.661 0v-6.13a1.332 1.332 0 012.313-1.018 1.332 1.332 0 01.345 1.018v6.13a.827.827 0 00.83.81zM1.133 10.056h24a.831.831 0 000-1.66h-24a.831.831 0 000 1.66z"
|
|
453
451
|
})));
|
|
454
452
|
}
|
|
455
453
|
|
|
@@ -463,7 +461,7 @@ function _objectWithoutProperties$e(source, excluded) { if (source == null) retu
|
|
|
463
461
|
|
|
464
462
|
function _objectWithoutPropertiesLoose$f(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
465
463
|
|
|
466
|
-
function
|
|
464
|
+
function SvgCheck(_ref) {
|
|
467
465
|
var title = _ref.title,
|
|
468
466
|
titleId = _ref.titleId,
|
|
469
467
|
props = _objectWithoutProperties$e(_ref, _excluded$e);
|
|
@@ -475,7 +473,7 @@ function SvgClose(_ref) {
|
|
|
475
473
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
476
474
|
id: titleId
|
|
477
475
|
}, title) : null, _path$e || (_path$e = /*#__PURE__*/createElement("path", {
|
|
478
|
-
d: "
|
|
476
|
+
d: "M8.795 15.875l-4.17-4.17-1.42 1.41 5.59 5.59 12-12-1.41-1.41-10.59 10.58z"
|
|
479
477
|
})));
|
|
480
478
|
}
|
|
481
479
|
|
|
@@ -489,13 +487,13 @@ function _objectWithoutProperties$f(source, excluded) { if (source == null) retu
|
|
|
489
487
|
|
|
490
488
|
function _objectWithoutPropertiesLoose$g(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
491
489
|
|
|
492
|
-
function
|
|
490
|
+
function SvgClock(_ref) {
|
|
493
491
|
var title = _ref.title,
|
|
494
492
|
titleId = _ref.titleId,
|
|
495
493
|
props = _objectWithoutProperties$f(_ref, _excluded$f);
|
|
496
494
|
|
|
497
495
|
return /*#__PURE__*/createElement("svg", _extends$g({
|
|
498
|
-
viewBox: "0 0
|
|
496
|
+
viewBox: "0 0 24 24",
|
|
499
497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
500
498
|
"aria-labelledby": titleId
|
|
501
499
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
@@ -503,7 +501,7 @@ function SvgDownload(_ref) {
|
|
|
503
501
|
}, title) : null, _path$f || (_path$f = /*#__PURE__*/createElement("path", {
|
|
504
502
|
fillRule: "evenodd",
|
|
505
503
|
clipRule: "evenodd",
|
|
506
|
-
d: "
|
|
504
|
+
d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM11 7h1.5v5.25l4.5 2.67-.75 1.23L11 13V7z"
|
|
507
505
|
})));
|
|
508
506
|
}
|
|
509
507
|
|
|
@@ -517,7 +515,7 @@ function _objectWithoutProperties$g(source, excluded) { if (source == null) retu
|
|
|
517
515
|
|
|
518
516
|
function _objectWithoutPropertiesLoose$h(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
519
517
|
|
|
520
|
-
function
|
|
518
|
+
function SvgClose(_ref) {
|
|
521
519
|
var title = _ref.title,
|
|
522
520
|
titleId = _ref.titleId,
|
|
523
521
|
props = _objectWithoutProperties$g(_ref, _excluded$g);
|
|
@@ -529,13 +527,11 @@ function SvgErrorFilled(_ref) {
|
|
|
529
527
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
530
528
|
id: titleId
|
|
531
529
|
}, title) : null, _path$g || (_path$g = /*#__PURE__*/createElement("path", {
|
|
532
|
-
|
|
533
|
-
clipRule: "evenodd",
|
|
534
|
-
d: "M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm1.2 13.2h-2.4V6h2.4v7.2zM10.8 18h2.4v-2.4h-2.4V18z"
|
|
530
|
+
d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
|
|
535
531
|
})));
|
|
536
532
|
}
|
|
537
533
|
|
|
538
|
-
var _path$h;
|
|
534
|
+
var _path$h, _path2$3;
|
|
539
535
|
|
|
540
536
|
var _excluded$h = ["title", "titleId"];
|
|
541
537
|
|
|
@@ -545,25 +541,25 @@ function _objectWithoutProperties$h(source, excluded) { if (source == null) retu
|
|
|
545
541
|
|
|
546
542
|
function _objectWithoutPropertiesLoose$i(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
547
543
|
|
|
548
|
-
function
|
|
544
|
+
function SvgDecorativeEnvelope(_ref) {
|
|
549
545
|
var title = _ref.title,
|
|
550
546
|
titleId = _ref.titleId,
|
|
551
547
|
props = _objectWithoutProperties$h(_ref, _excluded$h);
|
|
552
548
|
|
|
553
549
|
return /*#__PURE__*/createElement("svg", _extends$i({
|
|
554
|
-
viewBox: "0 0
|
|
550
|
+
viewBox: "0 0 68 68",
|
|
555
551
|
xmlns: "http://www.w3.org/2000/svg",
|
|
556
552
|
"aria-labelledby": titleId
|
|
557
553
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
558
554
|
id: titleId
|
|
559
555
|
}, title) : null, _path$h || (_path$h = /*#__PURE__*/createElement("path", {
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
d: "
|
|
556
|
+
d: "M65.24 60.145H2.76A2.747 2.747 0 010 57.412V10.585a2.744 2.744 0 012.76-2.73h62.48a2.746 2.746 0 012.76 2.73v46.828a2.746 2.746 0 01-2.76 2.73v.002zM5.52 54.682h56.96V13.315H5.52v41.367z"
|
|
557
|
+
})), _path2$3 || (_path2$3 = /*#__PURE__*/createElement("path", {
|
|
558
|
+
d: "M34 43.281c-.604 0-1.19-.2-1.666-.57L15.433 29.607a2.728 2.728 0 013.332-4.32L34 37.1l15.234-11.813a2.727 2.727 0 113.332 4.32l-16.9 13.103c-.477.37-1.063.571-1.666.571z"
|
|
563
559
|
})));
|
|
564
560
|
}
|
|
565
561
|
|
|
566
|
-
var _path$i, _path2$
|
|
562
|
+
var _path$i, _path2$4;
|
|
567
563
|
|
|
568
564
|
var _excluded$i = ["title", "titleId"];
|
|
569
565
|
|
|
@@ -573,31 +569,25 @@ function _objectWithoutProperties$i(source, excluded) { if (source == null) retu
|
|
|
573
569
|
|
|
574
570
|
function _objectWithoutPropertiesLoose$j(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
575
571
|
|
|
576
|
-
function
|
|
572
|
+
function SvgDecorativeLibraryCard(_ref) {
|
|
577
573
|
var title = _ref.title,
|
|
578
574
|
titleId = _ref.titleId,
|
|
579
575
|
props = _objectWithoutProperties$i(_ref, _excluded$i);
|
|
580
576
|
|
|
581
577
|
return /*#__PURE__*/createElement("svg", _extends$j({
|
|
582
|
-
viewBox: "0 0
|
|
578
|
+
viewBox: "0 0 68 68",
|
|
583
579
|
xmlns: "http://www.w3.org/2000/svg",
|
|
584
580
|
"aria-labelledby": titleId
|
|
585
581
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
586
582
|
id: titleId
|
|
587
583
|
}, title) : null, _path$i || (_path$i = /*#__PURE__*/createElement("path", {
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
d: "
|
|
591
|
-
})), _path2$3 || (_path2$3 = /*#__PURE__*/createElement("path", {
|
|
592
|
-
fillRule: "evenodd",
|
|
593
|
-
clipRule: "evenodd",
|
|
594
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
595
|
-
})), _path3$2 || (_path3$2 = /*#__PURE__*/createElement("path", {
|
|
596
|
-
d: "M7.5 12.5v3h2L12 18v-8l-2.5 2.5h-2zm6.75 1.5A2.25 2.25 0 0013 11.985v4.025A2.237 2.237 0 0014.25 14zM13 9.615v1.03a3.503 3.503 0 010 6.71v1.03a4.498 4.498 0 000-8.77z"
|
|
584
|
+
d: "M61.215 57.013H6.786A6.795 6.795 0 010 50.223V17.776a6.795 6.795 0 016.787-6.787h54.428A6.795 6.795 0 0168 17.776v32.45a6.794 6.794 0 01-6.785 6.786v.001zM6.786 14.28a3.5 3.5 0 00-3.494 3.495v32.45a3.5 3.5 0 003.496 3.495h54.428a3.5 3.5 0 003.494-3.496v-32.45a3.5 3.5 0 00-3.494-3.495l-54.43.001z"
|
|
585
|
+
})), _path2$4 || (_path2$4 = /*#__PURE__*/createElement("path", {
|
|
586
|
+
d: "M52.326 24.367h-13.19a1.569 1.569 0 110-3.136h13.19a1.568 1.568 0 010 3.136zm0 5.891h-13.19a1.569 1.569 0 110-3.136h13.19a1.57 1.57 0 011.134 2.69 1.568 1.568 0 01-1.134.446zm0 5.892h-13.19a1.569 1.569 0 010-3.138h13.19a1.569 1.569 0 110 3.138zM20.65 24.16c.922 0 1.701 1.038 1.701 2.266 0 1.227-.78 2.264-1.7 2.264-.92 0-1.702-1.037-1.702-2.264 0-1.228.78-2.266 1.701-2.266zm0-2.858c-2.386 0-4.322 2.293-4.322 5.124 0 2.83 1.936 5.123 4.322 5.123 2.387 0 4.322-2.294 4.322-5.123 0-2.83-1.935-5.124-4.322-5.124zm-.062 12.322c-2.18.031-4.354.22-6.506.564a2.604 2.604 0 00-1.999 1.658l-2.077 5.42a2.567 2.567 0 002.39 3.501h3.774a1.648 1.648 0 100-3.296l-2.697-.042 1.531-3.998a41.293 41.293 0 015.584-.511c1.834.022 3.664.172 5.477.45l1.572 4.101h-2.658a1.648 1.648 0 000 3.295h3.772a2.568 2.568 0 002.39-3.506l-2.13-5.415a2.684 2.684 0 00-2.036-1.67 43.533 43.533 0 00-6.386-.55h-.001z"
|
|
597
587
|
})));
|
|
598
588
|
}
|
|
599
589
|
|
|
600
|
-
var _path$j
|
|
590
|
+
var _path$j;
|
|
601
591
|
|
|
602
592
|
var _excluded$j = ["title", "titleId"];
|
|
603
593
|
|
|
@@ -607,31 +597,23 @@ function _objectWithoutProperties$j(source, excluded) { if (source == null) retu
|
|
|
607
597
|
|
|
608
598
|
function _objectWithoutPropertiesLoose$k(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
609
599
|
|
|
610
|
-
function
|
|
600
|
+
function SvgDecorativeShoppingBag(_ref) {
|
|
611
601
|
var title = _ref.title,
|
|
612
602
|
titleId = _ref.titleId,
|
|
613
603
|
props = _objectWithoutProperties$j(_ref, _excluded$j);
|
|
614
604
|
|
|
615
605
|
return /*#__PURE__*/createElement("svg", _extends$k({
|
|
616
|
-
viewBox: "0 0
|
|
606
|
+
viewBox: "0 0 68 68",
|
|
617
607
|
xmlns: "http://www.w3.org/2000/svg",
|
|
618
608
|
"aria-labelledby": titleId
|
|
619
609
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
620
610
|
id: titleId
|
|
621
611
|
}, title) : null, _path$j || (_path$j = /*#__PURE__*/createElement("path", {
|
|
622
|
-
|
|
623
|
-
clipRule: "evenodd",
|
|
624
|
-
d: "M3 2.188a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705v15.971a1 1 0 01-1 1H4a1 1 0 01-1-1v-20zm2 1v18h14V6.627l-3.416-3.44H5z"
|
|
625
|
-
})), _path2$4 || (_path2$4 = /*#__PURE__*/createElement("path", {
|
|
626
|
-
fillRule: "evenodd",
|
|
627
|
-
clipRule: "evenodd",
|
|
628
|
-
d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
629
|
-
})), _path3$3 || (_path3$3 = /*#__PURE__*/createElement("path", {
|
|
630
|
-
d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
|
|
612
|
+
d: "M60.466 59.097L53.194 21.34a7.936 7.936 0 00-7.93-6.214h-.083V7.343A7.343 7.343 0 0037.837 0h-7.636a7.343 7.343 0 00-7.343 7.343v7.783h-.12a7.936 7.936 0 00-7.93 6.214L7.535 59.096a7.717 7.717 0 007.93 8.898h37.069a7.715 7.715 0 007.93-8.898h.002zM28.18 7.837a2.626 2.626 0 012.625-2.624h6.5a2.626 2.626 0 012.625 2.626v7.287H28.18V7.838zM55.114 62.46a3.397 3.397 0 01-2.58 1.13H15.469a3.396 3.396 0 01-2.579-1.13 2.979 2.979 0 01-.728-2.58l7.272-37.756a3.306 3.306 0 013.306-2.59h.119v6.543a2.625 2.625 0 002.635 2.625h.07a2.626 2.626 0 002.617-2.625v-6.544h11.75v6.483a2.626 2.626 0 005.251 0v-6.483h.083a3.306 3.306 0 013.306 2.59l7.272 37.757a2.978 2.978 0 01-.728 2.58z"
|
|
631
613
|
})));
|
|
632
614
|
}
|
|
633
615
|
|
|
634
|
-
var _path$k
|
|
616
|
+
var _path$k;
|
|
635
617
|
|
|
636
618
|
var _excluded$k = ["title", "titleId"];
|
|
637
619
|
|
|
@@ -641,13 +623,13 @@ function _objectWithoutProperties$k(source, excluded) { if (source == null) retu
|
|
|
641
623
|
|
|
642
624
|
function _objectWithoutPropertiesLoose$l(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
643
625
|
|
|
644
|
-
function
|
|
626
|
+
function SvgDownload(_ref) {
|
|
645
627
|
var title = _ref.title,
|
|
646
628
|
titleId = _ref.titleId,
|
|
647
629
|
props = _objectWithoutProperties$k(_ref, _excluded$k);
|
|
648
630
|
|
|
649
631
|
return /*#__PURE__*/createElement("svg", _extends$l({
|
|
650
|
-
viewBox: "0 0
|
|
632
|
+
viewBox: "0 0 14 18",
|
|
651
633
|
xmlns: "http://www.w3.org/2000/svg",
|
|
652
634
|
"aria-labelledby": titleId
|
|
653
635
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
@@ -655,15 +637,11 @@ function SvgFileTypeGenericDoc(_ref) {
|
|
|
655
637
|
}, title) : null, _path$k || (_path$k = /*#__PURE__*/createElement("path", {
|
|
656
638
|
fillRule: "evenodd",
|
|
657
639
|
clipRule: "evenodd",
|
|
658
|
-
d: "
|
|
659
|
-
})), _path2$5 || (_path2$5 = /*#__PURE__*/createElement("path", {
|
|
660
|
-
fillRule: "evenodd",
|
|
661
|
-
clipRule: "evenodd",
|
|
662
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
640
|
+
d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
|
|
663
641
|
})));
|
|
664
642
|
}
|
|
665
643
|
|
|
666
|
-
var _path$l
|
|
644
|
+
var _path$l;
|
|
667
645
|
|
|
668
646
|
var _excluded$l = ["title", "titleId"];
|
|
669
647
|
|
|
@@ -673,7 +651,7 @@ function _objectWithoutProperties$l(source, excluded) { if (source == null) retu
|
|
|
673
651
|
|
|
674
652
|
function _objectWithoutPropertiesLoose$m(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
675
653
|
|
|
676
|
-
function
|
|
654
|
+
function SvgErrorFilled(_ref) {
|
|
677
655
|
var title = _ref.title,
|
|
678
656
|
titleId = _ref.titleId,
|
|
679
657
|
props = _objectWithoutProperties$l(_ref, _excluded$l);
|
|
@@ -687,25 +665,11 @@ function SvgFileTypeImage(_ref) {
|
|
|
687
665
|
}, title) : null, _path$l || (_path$l = /*#__PURE__*/createElement("path", {
|
|
688
666
|
fillRule: "evenodd",
|
|
689
667
|
clipRule: "evenodd",
|
|
690
|
-
d: "
|
|
691
|
-
})), _path2$6 || (_path2$6 = /*#__PURE__*/createElement("path", {
|
|
692
|
-
fillRule: "evenodd",
|
|
693
|
-
clipRule: "evenodd",
|
|
694
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
695
|
-
})), _path3$4 || (_path3$4 = /*#__PURE__*/createElement("path", {
|
|
696
|
-
d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
|
|
697
|
-
})), _circle || (_circle = /*#__PURE__*/createElement("circle", {
|
|
698
|
-
cx: 9.375,
|
|
699
|
-
cy: 10.125,
|
|
700
|
-
r: 1.125
|
|
701
|
-
})), _path4 || (_path4 = /*#__PURE__*/createElement("path", {
|
|
702
|
-
fillRule: "evenodd",
|
|
703
|
-
clipRule: "evenodd",
|
|
704
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
668
|
+
d: "M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm1.2 13.2h-2.4V6h2.4v7.2zM10.8 18h2.4v-2.4h-2.4V18z"
|
|
705
669
|
})));
|
|
706
670
|
}
|
|
707
671
|
|
|
708
|
-
var _path$m
|
|
672
|
+
var _path$m;
|
|
709
673
|
|
|
710
674
|
var _excluded$m = ["title", "titleId"];
|
|
711
675
|
|
|
@@ -715,13 +679,13 @@ function _objectWithoutProperties$m(source, excluded) { if (source == null) retu
|
|
|
715
679
|
|
|
716
680
|
function _objectWithoutPropertiesLoose$n(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
717
681
|
|
|
718
|
-
function
|
|
682
|
+
function SvgErrorOutline(_ref) {
|
|
719
683
|
var title = _ref.title,
|
|
720
684
|
titleId = _ref.titleId,
|
|
721
685
|
props = _objectWithoutProperties$m(_ref, _excluded$m);
|
|
722
686
|
|
|
723
687
|
return /*#__PURE__*/createElement("svg", _extends$n({
|
|
724
|
-
viewBox: "0 0 24
|
|
688
|
+
viewBox: "0 0 24 25",
|
|
725
689
|
xmlns: "http://www.w3.org/2000/svg",
|
|
726
690
|
"aria-labelledby": titleId
|
|
727
691
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
@@ -729,17 +693,11 @@ function SvgFileTypePdf(_ref) {
|
|
|
729
693
|
}, title) : null, _path$m || (_path$m = /*#__PURE__*/createElement("path", {
|
|
730
694
|
fillRule: "evenodd",
|
|
731
695
|
clipRule: "evenodd",
|
|
732
|
-
d: "
|
|
733
|
-
})), _path2$7 || (_path2$7 = /*#__PURE__*/createElement("path", {
|
|
734
|
-
fillRule: "evenodd",
|
|
735
|
-
clipRule: "evenodd",
|
|
736
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
737
|
-
})), _path3$5 || (_path3$5 = /*#__PURE__*/createElement("path", {
|
|
738
|
-
d: "M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"
|
|
696
|
+
d: "M11.988.912C5.364.912 0 6.288 0 12.912s5.364 12 11.988 12c6.636 0 12.012-5.376 12.012-12s-5.376-12-12.012-12zm1.212 13.2v-7.2h-2.4v7.2h2.4zm0 4.8v-2.4h-2.4v2.4h2.4zm-10.8-6c0 5.304 4.296 9.6 9.6 9.6 5.304 0 9.6-4.296 9.6-9.6 0-5.304-4.296-9.6-9.6-9.6a9.597 9.597 0 00-9.6 9.6z"
|
|
739
697
|
})));
|
|
740
698
|
}
|
|
741
699
|
|
|
742
|
-
var _path$n, _path2$
|
|
700
|
+
var _path$n, _path2$5, _path3$2;
|
|
743
701
|
|
|
744
702
|
var _excluded$n = ["title", "titleId"];
|
|
745
703
|
|
|
@@ -749,7 +707,7 @@ function _objectWithoutProperties$n(source, excluded) { if (source == null) retu
|
|
|
749
707
|
|
|
750
708
|
function _objectWithoutPropertiesLoose$o(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
751
709
|
|
|
752
|
-
function
|
|
710
|
+
function SvgFileTypeAudio(_ref) {
|
|
753
711
|
var title = _ref.title,
|
|
754
712
|
titleId = _ref.titleId,
|
|
755
713
|
props = _objectWithoutProperties$n(_ref, _excluded$n);
|
|
@@ -764,16 +722,16 @@ function SvgFileTypeSpreadsheet(_ref) {
|
|
|
764
722
|
fillRule: "evenodd",
|
|
765
723
|
clipRule: "evenodd",
|
|
766
724
|
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
767
|
-
})), _path2$
|
|
725
|
+
})), _path2$5 || (_path2$5 = /*#__PURE__*/createElement("path", {
|
|
768
726
|
fillRule: "evenodd",
|
|
769
727
|
clipRule: "evenodd",
|
|
770
728
|
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
771
|
-
})), _path3$
|
|
772
|
-
d: "M7
|
|
729
|
+
})), _path3$2 || (_path3$2 = /*#__PURE__*/createElement("path", {
|
|
730
|
+
d: "M7.5 12.5v3h2L12 18v-8l-2.5 2.5h-2zm6.75 1.5A2.25 2.25 0 0013 11.985v4.025A2.237 2.237 0 0014.25 14zM13 9.615v1.03a3.503 3.503 0 010 6.71v1.03a4.498 4.498 0 000-8.77z"
|
|
773
731
|
})));
|
|
774
732
|
}
|
|
775
733
|
|
|
776
|
-
var _path$o, _path2$
|
|
734
|
+
var _path$o, _path2$6, _path3$3;
|
|
777
735
|
|
|
778
736
|
var _excluded$o = ["title", "titleId"];
|
|
779
737
|
|
|
@@ -783,7 +741,7 @@ function _objectWithoutProperties$o(source, excluded) { if (source == null) retu
|
|
|
783
741
|
|
|
784
742
|
function _objectWithoutPropertiesLoose$p(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
785
743
|
|
|
786
|
-
function
|
|
744
|
+
function SvgFileTypeDoc(_ref) {
|
|
787
745
|
var title = _ref.title,
|
|
788
746
|
titleId = _ref.titleId,
|
|
789
747
|
props = _objectWithoutProperties$o(_ref, _excluded$o);
|
|
@@ -797,15 +755,17 @@ function SvgFileTypeVideo(_ref) {
|
|
|
797
755
|
}, title) : null, _path$o || (_path$o = /*#__PURE__*/createElement("path", {
|
|
798
756
|
fillRule: "evenodd",
|
|
799
757
|
clipRule: "evenodd",
|
|
800
|
-
d: "M3
|
|
801
|
-
})), _path2$
|
|
758
|
+
d: "M3 2.188a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705v15.971a1 1 0 01-1 1H4a1 1 0 01-1-1v-20zm2 1v18h14V6.627l-3.416-3.44H5z"
|
|
759
|
+
})), _path2$6 || (_path2$6 = /*#__PURE__*/createElement("path", {
|
|
802
760
|
fillRule: "evenodd",
|
|
803
761
|
clipRule: "evenodd",
|
|
804
|
-
d: "M14
|
|
762
|
+
d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
763
|
+
})), _path3$3 || (_path3$3 = /*#__PURE__*/createElement("path", {
|
|
764
|
+
d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
|
|
805
765
|
})));
|
|
806
766
|
}
|
|
807
767
|
|
|
808
|
-
var _path$p;
|
|
768
|
+
var _path$p, _path2$7;
|
|
809
769
|
|
|
810
770
|
var _excluded$p = ["title", "titleId"];
|
|
811
771
|
|
|
@@ -815,23 +775,29 @@ function _objectWithoutProperties$p(source, excluded) { if (source == null) retu
|
|
|
815
775
|
|
|
816
776
|
function _objectWithoutPropertiesLoose$q(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
817
777
|
|
|
818
|
-
function
|
|
778
|
+
function SvgFileTypeGenericDoc(_ref) {
|
|
819
779
|
var title = _ref.title,
|
|
820
780
|
titleId = _ref.titleId,
|
|
821
781
|
props = _objectWithoutProperties$p(_ref, _excluded$p);
|
|
822
782
|
|
|
823
783
|
return /*#__PURE__*/createElement("svg", _extends$q({
|
|
824
|
-
viewBox: "0 0
|
|
784
|
+
viewBox: "0 0 24 24",
|
|
825
785
|
xmlns: "http://www.w3.org/2000/svg",
|
|
826
786
|
"aria-labelledby": titleId
|
|
827
787
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
828
788
|
id: titleId
|
|
829
789
|
}, title) : null, _path$p || (_path$p = /*#__PURE__*/createElement("path", {
|
|
830
|
-
|
|
790
|
+
fillRule: "evenodd",
|
|
791
|
+
clipRule: "evenodd",
|
|
792
|
+
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
793
|
+
})), _path2$7 || (_path2$7 = /*#__PURE__*/createElement("path", {
|
|
794
|
+
fillRule: "evenodd",
|
|
795
|
+
clipRule: "evenodd",
|
|
796
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
831
797
|
})));
|
|
832
798
|
}
|
|
833
799
|
|
|
834
|
-
var _path$q, _path2$
|
|
800
|
+
var _path$q, _path2$8, _path3$4, _circle, _path4;
|
|
835
801
|
|
|
836
802
|
var _excluded$q = ["title", "titleId"];
|
|
837
803
|
|
|
@@ -841,25 +807,39 @@ function _objectWithoutProperties$q(source, excluded) { if (source == null) retu
|
|
|
841
807
|
|
|
842
808
|
function _objectWithoutPropertiesLoose$r(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
843
809
|
|
|
844
|
-
function
|
|
810
|
+
function SvgFileTypeImage(_ref) {
|
|
845
811
|
var title = _ref.title,
|
|
846
812
|
titleId = _ref.titleId,
|
|
847
813
|
props = _objectWithoutProperties$q(_ref, _excluded$q);
|
|
848
814
|
|
|
849
815
|
return /*#__PURE__*/createElement("svg", _extends$r({
|
|
850
|
-
viewBox: "0 0
|
|
816
|
+
viewBox: "0 0 24 24",
|
|
851
817
|
xmlns: "http://www.w3.org/2000/svg",
|
|
852
818
|
"aria-labelledby": titleId
|
|
853
819
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
854
820
|
id: titleId
|
|
855
821
|
}, title) : null, _path$q || (_path$q = /*#__PURE__*/createElement("path", {
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
d: "
|
|
822
|
+
fillRule: "evenodd",
|
|
823
|
+
clipRule: "evenodd",
|
|
824
|
+
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
825
|
+
})), _path2$8 || (_path2$8 = /*#__PURE__*/createElement("path", {
|
|
826
|
+
fillRule: "evenodd",
|
|
827
|
+
clipRule: "evenodd",
|
|
828
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
829
|
+
})), _path3$4 || (_path3$4 = /*#__PURE__*/createElement("path", {
|
|
830
|
+
d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
|
|
831
|
+
})), _circle || (_circle = /*#__PURE__*/createElement("circle", {
|
|
832
|
+
cx: 9.375,
|
|
833
|
+
cy: 10.125,
|
|
834
|
+
r: 1.125
|
|
835
|
+
})), _path4 || (_path4 = /*#__PURE__*/createElement("path", {
|
|
836
|
+
fillRule: "evenodd",
|
|
837
|
+
clipRule: "evenodd",
|
|
838
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
859
839
|
})));
|
|
860
840
|
}
|
|
861
841
|
|
|
862
|
-
var
|
|
842
|
+
var _path$r, _path2$9, _path3$5;
|
|
863
843
|
|
|
864
844
|
var _excluded$r = ["title", "titleId"];
|
|
865
845
|
|
|
@@ -869,12 +849,166 @@ function _objectWithoutProperties$r(source, excluded) { if (source == null) retu
|
|
|
869
849
|
|
|
870
850
|
function _objectWithoutPropertiesLoose$s(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
871
851
|
|
|
872
|
-
function
|
|
852
|
+
function SvgFileTypePdf(_ref) {
|
|
873
853
|
var title = _ref.title,
|
|
874
854
|
titleId = _ref.titleId,
|
|
875
855
|
props = _objectWithoutProperties$r(_ref, _excluded$r);
|
|
876
856
|
|
|
877
857
|
return /*#__PURE__*/createElement("svg", _extends$s({
|
|
858
|
+
viewBox: "0 0 24 24",
|
|
859
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
860
|
+
"aria-labelledby": titleId
|
|
861
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
862
|
+
id: titleId
|
|
863
|
+
}, title) : null, _path$r || (_path$r = /*#__PURE__*/createElement("path", {
|
|
864
|
+
fillRule: "evenodd",
|
|
865
|
+
clipRule: "evenodd",
|
|
866
|
+
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
867
|
+
})), _path2$9 || (_path2$9 = /*#__PURE__*/createElement("path", {
|
|
868
|
+
fillRule: "evenodd",
|
|
869
|
+
clipRule: "evenodd",
|
|
870
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
871
|
+
})), _path3$5 || (_path3$5 = /*#__PURE__*/createElement("path", {
|
|
872
|
+
d: "M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"
|
|
873
|
+
})));
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
var _path$s, _path2$a, _path3$6;
|
|
877
|
+
|
|
878
|
+
var _excluded$s = ["title", "titleId"];
|
|
879
|
+
|
|
880
|
+
function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
|
|
881
|
+
|
|
882
|
+
function _objectWithoutProperties$s(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$t(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
883
|
+
|
|
884
|
+
function _objectWithoutPropertiesLoose$t(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
885
|
+
|
|
886
|
+
function SvgFileTypeSpreadsheet(_ref) {
|
|
887
|
+
var title = _ref.title,
|
|
888
|
+
titleId = _ref.titleId,
|
|
889
|
+
props = _objectWithoutProperties$s(_ref, _excluded$s);
|
|
890
|
+
|
|
891
|
+
return /*#__PURE__*/createElement("svg", _extends$t({
|
|
892
|
+
viewBox: "0 0 24 24",
|
|
893
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
894
|
+
"aria-labelledby": titleId
|
|
895
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
896
|
+
id: titleId
|
|
897
|
+
}, title) : null, _path$s || (_path$s = /*#__PURE__*/createElement("path", {
|
|
898
|
+
fillRule: "evenodd",
|
|
899
|
+
clipRule: "evenodd",
|
|
900
|
+
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
901
|
+
})), _path2$a || (_path2$a = /*#__PURE__*/createElement("path", {
|
|
902
|
+
fillRule: "evenodd",
|
|
903
|
+
clipRule: "evenodd",
|
|
904
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
905
|
+
})), _path3$6 || (_path3$6 = /*#__PURE__*/createElement("path", {
|
|
906
|
+
d: "M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"
|
|
907
|
+
})));
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
var _path$t, _path2$b;
|
|
911
|
+
|
|
912
|
+
var _excluded$t = ["title", "titleId"];
|
|
913
|
+
|
|
914
|
+
function _extends$u() { _extends$u = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$u.apply(this, arguments); }
|
|
915
|
+
|
|
916
|
+
function _objectWithoutProperties$t(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$u(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
917
|
+
|
|
918
|
+
function _objectWithoutPropertiesLoose$u(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
919
|
+
|
|
920
|
+
function SvgFileTypeVideo(_ref) {
|
|
921
|
+
var title = _ref.title,
|
|
922
|
+
titleId = _ref.titleId,
|
|
923
|
+
props = _objectWithoutProperties$t(_ref, _excluded$t);
|
|
924
|
+
|
|
925
|
+
return /*#__PURE__*/createElement("svg", _extends$u({
|
|
926
|
+
viewBox: "0 0 24 24",
|
|
927
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
928
|
+
"aria-labelledby": titleId
|
|
929
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
930
|
+
id: titleId
|
|
931
|
+
}, title) : null, _path$t || (_path$t = /*#__PURE__*/createElement("path", {
|
|
932
|
+
fillRule: "evenodd",
|
|
933
|
+
clipRule: "evenodd",
|
|
934
|
+
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
935
|
+
})), _path2$b || (_path2$b = /*#__PURE__*/createElement("path", {
|
|
936
|
+
fillRule: "evenodd",
|
|
937
|
+
clipRule: "evenodd",
|
|
938
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2zM7.333 10.5h7c.321 0 .584.262.584.583v2.042l2.333-2.333v6.416l-2.333-2.333v2.042c0 .32-.263.583-.584.583h-7a.585.585 0 01-.583-.583v-5.834c0-.32.263-.583.583-.583zm6.417 5.833v-4.666H7.917v4.666h5.833z"
|
|
939
|
+
})));
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
var _path$u;
|
|
943
|
+
|
|
944
|
+
var _excluded$u = ["title", "titleId"];
|
|
945
|
+
|
|
946
|
+
function _extends$v() { _extends$v = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$v.apply(this, arguments); }
|
|
947
|
+
|
|
948
|
+
function _objectWithoutProperties$u(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$v(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
949
|
+
|
|
950
|
+
function _objectWithoutPropertiesLoose$v(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
951
|
+
|
|
952
|
+
function SvgHeadset(_ref) {
|
|
953
|
+
var title = _ref.title,
|
|
954
|
+
titleId = _ref.titleId,
|
|
955
|
+
props = _objectWithoutProperties$u(_ref, _excluded$u);
|
|
956
|
+
|
|
957
|
+
return /*#__PURE__*/createElement("svg", _extends$v({
|
|
958
|
+
viewBox: "0 0 18 19",
|
|
959
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
960
|
+
"aria-labelledby": titleId
|
|
961
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
962
|
+
id: titleId
|
|
963
|
+
}, title) : null, _path$u || (_path$u = /*#__PURE__*/createElement("path", {
|
|
964
|
+
d: "M9 0a9 9 0 00-9 9v7c0 1.66 1.34 3 3 3h3v-8H2V9c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3V9a9 9 0 00-9-9z"
|
|
965
|
+
})));
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
var _path$v, _path2$c;
|
|
969
|
+
|
|
970
|
+
var _excluded$v = ["title", "titleId"];
|
|
971
|
+
|
|
972
|
+
function _extends$w() { _extends$w = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$w.apply(this, arguments); }
|
|
973
|
+
|
|
974
|
+
function _objectWithoutProperties$v(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$w(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
975
|
+
|
|
976
|
+
function _objectWithoutPropertiesLoose$w(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
977
|
+
|
|
978
|
+
function SvgLocator(_ref) {
|
|
979
|
+
var title = _ref.title,
|
|
980
|
+
titleId = _ref.titleId,
|
|
981
|
+
props = _objectWithoutProperties$v(_ref, _excluded$v);
|
|
982
|
+
|
|
983
|
+
return /*#__PURE__*/createElement("svg", _extends$w({
|
|
984
|
+
viewBox: "0 0 32 32",
|
|
985
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
986
|
+
"aria-labelledby": titleId
|
|
987
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
988
|
+
id: titleId
|
|
989
|
+
}, title) : null, _path$v || (_path$v = /*#__PURE__*/createElement("path", {
|
|
990
|
+
d: "M16 11.594a2.004 2.004 0 11-2.004 2.004A2.004 2.004 0 0116 11.594m0-1.687a3.691 3.691 0 103.69 3.69A3.695 3.695 0 0016 9.908"
|
|
991
|
+
})), _path2$c || (_path2$c = /*#__PURE__*/createElement("path", {
|
|
992
|
+
d: "M27.237 10.695a11.537 11.537 0 00-2.93-5.215c-.032-.032-.058-.068-.09-.1-.033-.033-.07-.06-.102-.093a11.529 11.529 0 00-5.221-2.935 11.332 11.332 0 00-5.789 0 11.526 11.526 0 00-5.22 2.935c-.034.033-.07.06-.103.093-.032.032-.058.068-.09.1a11.528 11.528 0 00-2.93 5.215 11.693 11.693 0 000 5.806 11.527 11.527 0 002.93 5.215c.032.033.058.068.09.099.033.034.07.06.103.094L16 30.024l8.115-8.115c.033-.033.07-.06.102-.094.032-.031.058-.066.09-.099a11.536 11.536 0 002.93-5.215 11.693 11.693 0 000-5.806m-4.444 10.25l-3.899 3.899L16 27.738l-2.895-2.894-3.899-3.9-.552-.552a10.002 10.002 0 01-.001-13.588l.554-.553a9.971 9.971 0 0113.585 0l.555.554a10.002 10.002 0 010 13.587z"
|
|
993
|
+
})));
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
var _rect;
|
|
997
|
+
|
|
998
|
+
var _excluded$w = ["title", "titleId"];
|
|
999
|
+
|
|
1000
|
+
function _extends$x() { _extends$x = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$x.apply(this, arguments); }
|
|
1001
|
+
|
|
1002
|
+
function _objectWithoutProperties$w(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$x(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1003
|
+
|
|
1004
|
+
function _objectWithoutPropertiesLoose$x(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1005
|
+
|
|
1006
|
+
function SvgMinus(_ref) {
|
|
1007
|
+
var title = _ref.title,
|
|
1008
|
+
titleId = _ref.titleId,
|
|
1009
|
+
props = _objectWithoutProperties$w(_ref, _excluded$w);
|
|
1010
|
+
|
|
1011
|
+
return /*#__PURE__*/createElement("svg", _extends$x({
|
|
878
1012
|
viewBox: "0 -11 24 24",
|
|
879
1013
|
width: 24,
|
|
880
1014
|
height: 2,
|
|
@@ -891,20 +1025,20 @@ function SvgMinus(_ref) {
|
|
|
891
1025
|
|
|
892
1026
|
var _rect$1, _rect2;
|
|
893
1027
|
|
|
894
|
-
var _excluded$
|
|
1028
|
+
var _excluded$x = ["title", "titleId"];
|
|
895
1029
|
|
|
896
|
-
function _extends$
|
|
1030
|
+
function _extends$y() { _extends$y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$y.apply(this, arguments); }
|
|
897
1031
|
|
|
898
|
-
function _objectWithoutProperties$
|
|
1032
|
+
function _objectWithoutProperties$x(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$y(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
899
1033
|
|
|
900
|
-
function _objectWithoutPropertiesLoose$
|
|
1034
|
+
function _objectWithoutPropertiesLoose$y(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
901
1035
|
|
|
902
1036
|
function SvgPlus(_ref) {
|
|
903
1037
|
var title = _ref.title,
|
|
904
1038
|
titleId = _ref.titleId,
|
|
905
|
-
props = _objectWithoutProperties$
|
|
1039
|
+
props = _objectWithoutProperties$x(_ref, _excluded$x);
|
|
906
1040
|
|
|
907
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1041
|
+
return /*#__PURE__*/createElement("svg", _extends$y({
|
|
908
1042
|
viewBox: "0 0 23 23",
|
|
909
1043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
910
1044
|
"aria-labelledby": titleId
|
|
@@ -925,56 +1059,56 @@ function SvgPlus(_ref) {
|
|
|
925
1059
|
})));
|
|
926
1060
|
}
|
|
927
1061
|
|
|
928
|
-
var _path$
|
|
1062
|
+
var _path$w;
|
|
929
1063
|
|
|
930
|
-
var _excluded$
|
|
1064
|
+
var _excluded$y = ["title", "titleId"];
|
|
931
1065
|
|
|
932
|
-
function _extends$
|
|
1066
|
+
function _extends$z() { _extends$z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$z.apply(this, arguments); }
|
|
933
1067
|
|
|
934
|
-
function _objectWithoutProperties$
|
|
1068
|
+
function _objectWithoutProperties$y(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$z(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
935
1069
|
|
|
936
|
-
function _objectWithoutPropertiesLoose$
|
|
1070
|
+
function _objectWithoutPropertiesLoose$z(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
937
1071
|
|
|
938
1072
|
function SvgSearch(_ref) {
|
|
939
1073
|
var title = _ref.title,
|
|
940
1074
|
titleId = _ref.titleId,
|
|
941
|
-
props = _objectWithoutProperties$
|
|
1075
|
+
props = _objectWithoutProperties$y(_ref, _excluded$y);
|
|
942
1076
|
|
|
943
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1077
|
+
return /*#__PURE__*/createElement("svg", _extends$z({
|
|
944
1078
|
viewBox: "0 0 24 24",
|
|
945
1079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
946
1080
|
"aria-labelledby": titleId
|
|
947
1081
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
948
1082
|
id: titleId
|
|
949
|
-
}, title) : null, _path$
|
|
1083
|
+
}, title) : null, _path$w || (_path$w = /*#__PURE__*/createElement("path", {
|
|
950
1084
|
fillRule: "evenodd",
|
|
951
1085
|
clipRule: "evenodd",
|
|
952
1086
|
d: "M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-1.671 7.743A9.958 9.958 0 0110 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10a9.958 9.958 0 01-2.257 6.329l5.96 5.96a1 1 0 01-1.414 1.414l-5.96-5.96z"
|
|
953
1087
|
})));
|
|
954
1088
|
}
|
|
955
1089
|
|
|
956
|
-
var _path$
|
|
1090
|
+
var _path$x;
|
|
957
1091
|
|
|
958
|
-
var _excluded$
|
|
1092
|
+
var _excluded$z = ["title", "titleId"];
|
|
959
1093
|
|
|
960
|
-
function _extends$
|
|
1094
|
+
function _extends$A() { _extends$A = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$A.apply(this, arguments); }
|
|
961
1095
|
|
|
962
|
-
function _objectWithoutProperties$
|
|
1096
|
+
function _objectWithoutProperties$z(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$A(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
963
1097
|
|
|
964
|
-
function _objectWithoutPropertiesLoose$
|
|
1098
|
+
function _objectWithoutPropertiesLoose$A(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
965
1099
|
|
|
966
1100
|
function SvgSocialFacebook(_ref) {
|
|
967
1101
|
var title = _ref.title,
|
|
968
1102
|
titleId = _ref.titleId,
|
|
969
|
-
props = _objectWithoutProperties$
|
|
1103
|
+
props = _objectWithoutProperties$z(_ref, _excluded$z);
|
|
970
1104
|
|
|
971
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1105
|
+
return /*#__PURE__*/createElement("svg", _extends$A({
|
|
972
1106
|
viewBox: "0 0 36 36",
|
|
973
1107
|
xmlns: "http://www.w3.org/2000/svg",
|
|
974
1108
|
"aria-labelledby": titleId
|
|
975
1109
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
976
1110
|
id: titleId
|
|
977
|
-
}, title) : null, _path$
|
|
1111
|
+
}, title) : null, _path$x || (_path$x = /*#__PURE__*/createElement("path", {
|
|
978
1112
|
fillRule: "evenodd",
|
|
979
1113
|
clipRule: "evenodd",
|
|
980
1114
|
d: "M19.229 36H1.987A1.987 1.987 0 010 34.013V1.987C0 .889.89 0 1.987 0h32.026C35.111 0 36 .89 36 1.987v32.026C36 35.11 35.11 36 34.013 36H24.84V22.059h4.679l.7-5.433h-5.38v-3.469c0-1.573.437-2.645 2.693-2.645l2.877-.001V5.65c-.498-.066-2.205-.214-4.192-.214-4.148 0-6.988 2.532-6.988 7.182v4.007h-4.692v5.433h4.692V36z"
|
|
@@ -983,20 +1117,20 @@ function SvgSocialFacebook(_ref) {
|
|
|
983
1117
|
|
|
984
1118
|
var _g;
|
|
985
1119
|
|
|
986
|
-
var _excluded$
|
|
1120
|
+
var _excluded$A = ["title", "titleId"];
|
|
987
1121
|
|
|
988
|
-
function _extends$
|
|
1122
|
+
function _extends$B() { _extends$B = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$B.apply(this, arguments); }
|
|
989
1123
|
|
|
990
|
-
function _objectWithoutProperties$
|
|
1124
|
+
function _objectWithoutProperties$A(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$B(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
991
1125
|
|
|
992
|
-
function _objectWithoutPropertiesLoose$
|
|
1126
|
+
function _objectWithoutPropertiesLoose$B(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
993
1127
|
|
|
994
1128
|
function SvgSocialInstagram(_ref) {
|
|
995
1129
|
var title = _ref.title,
|
|
996
1130
|
titleId = _ref.titleId,
|
|
997
|
-
props = _objectWithoutProperties$
|
|
1131
|
+
props = _objectWithoutProperties$A(_ref, _excluded$A);
|
|
998
1132
|
|
|
999
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1133
|
+
return /*#__PURE__*/createElement("svg", _extends$B({
|
|
1000
1134
|
viewBox: "0 0 37 37",
|
|
1001
1135
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1002
1136
|
"aria-labelledby": titleId
|
|
@@ -1015,20 +1149,20 @@ function SvgSocialInstagram(_ref) {
|
|
|
1015
1149
|
|
|
1016
1150
|
var _g$1;
|
|
1017
1151
|
|
|
1018
|
-
var _excluded$
|
|
1152
|
+
var _excluded$B = ["title", "titleId"];
|
|
1019
1153
|
|
|
1020
|
-
function _extends$
|
|
1154
|
+
function _extends$C() { _extends$C = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$C.apply(this, arguments); }
|
|
1021
1155
|
|
|
1022
|
-
function _objectWithoutProperties$
|
|
1156
|
+
function _objectWithoutProperties$B(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$C(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1023
1157
|
|
|
1024
|
-
function _objectWithoutPropertiesLoose$
|
|
1158
|
+
function _objectWithoutPropertiesLoose$C(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1025
1159
|
|
|
1026
1160
|
function SvgSocialTumblr(_ref) {
|
|
1027
1161
|
var title = _ref.title,
|
|
1028
1162
|
titleId = _ref.titleId,
|
|
1029
|
-
props = _objectWithoutProperties$
|
|
1163
|
+
props = _objectWithoutProperties$B(_ref, _excluded$B);
|
|
1030
1164
|
|
|
1031
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1165
|
+
return /*#__PURE__*/createElement("svg", _extends$C({
|
|
1032
1166
|
viewBox: "0 0 36 36",
|
|
1033
1167
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1034
1168
|
"aria-labelledby": titleId
|
|
@@ -1043,28 +1177,28 @@ function SvgSocialTumblr(_ref) {
|
|
|
1043
1177
|
}))));
|
|
1044
1178
|
}
|
|
1045
1179
|
|
|
1046
|
-
var _path$
|
|
1180
|
+
var _path$y;
|
|
1047
1181
|
|
|
1048
|
-
var _excluded$
|
|
1182
|
+
var _excluded$C = ["title", "titleId"];
|
|
1049
1183
|
|
|
1050
|
-
function _extends$
|
|
1184
|
+
function _extends$D() { _extends$D = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$D.apply(this, arguments); }
|
|
1051
1185
|
|
|
1052
|
-
function _objectWithoutProperties$
|
|
1186
|
+
function _objectWithoutProperties$C(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$D(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1053
1187
|
|
|
1054
|
-
function _objectWithoutPropertiesLoose$
|
|
1188
|
+
function _objectWithoutPropertiesLoose$D(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1055
1189
|
|
|
1056
1190
|
function SvgSocialTwitter(_ref) {
|
|
1057
1191
|
var title = _ref.title,
|
|
1058
1192
|
titleId = _ref.titleId,
|
|
1059
|
-
props = _objectWithoutProperties$
|
|
1193
|
+
props = _objectWithoutProperties$C(_ref, _excluded$C);
|
|
1060
1194
|
|
|
1061
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1195
|
+
return /*#__PURE__*/createElement("svg", _extends$D({
|
|
1062
1196
|
viewBox: "0 0 36 36",
|
|
1063
1197
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1064
1198
|
"aria-labelledby": titleId
|
|
1065
1199
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1066
1200
|
id: titleId
|
|
1067
|
-
}, title) : null, _path$
|
|
1201
|
+
}, title) : null, _path$y || (_path$y = /*#__PURE__*/createElement("path", {
|
|
1068
1202
|
fillRule: "evenodd",
|
|
1069
1203
|
clipRule: "evenodd",
|
|
1070
1204
|
d: "M36 6.551a14.427 14.427 0 01-4.24 1.192 7.557 7.557 0 003.247-4.188 14.548 14.548 0 01-4.693 1.835A7.284 7.284 0 0024.924 3c-4.077 0-7.384 3.391-7.384 7.573 0 .594.064 1.17.19 1.725-6.138-.316-11.579-3.328-15.224-7.916a7.711 7.711 0 00-1 3.812 7.623 7.623 0 003.286 6.303 7.252 7.252 0 01-3.347-.944v.093c0 3.67 2.547 6.732 5.927 7.425a7.042 7.042 0 01-1.946.267c-.475 0-.94-.046-1.39-.134.94 3.007 3.666 5.198 6.899 5.256a14.584 14.584 0 01-9.173 3.244c-.596 0-1.185-.034-1.762-.104A20.563 20.563 0 0011.322 33c13.587 0 21.014-11.538 21.014-21.547 0-.33-.006-.659-.02-.982A15.158 15.158 0 0036 6.551z"
|
|
@@ -1073,20 +1207,20 @@ function SvgSocialTwitter(_ref) {
|
|
|
1073
1207
|
|
|
1074
1208
|
var _g$2;
|
|
1075
1209
|
|
|
1076
|
-
var _excluded$
|
|
1210
|
+
var _excluded$D = ["title", "titleId"];
|
|
1077
1211
|
|
|
1078
|
-
function _extends$
|
|
1212
|
+
function _extends$E() { _extends$E = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$E.apply(this, arguments); }
|
|
1079
1213
|
|
|
1080
|
-
function _objectWithoutProperties$
|
|
1214
|
+
function _objectWithoutProperties$D(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$E(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1081
1215
|
|
|
1082
|
-
function _objectWithoutPropertiesLoose$
|
|
1216
|
+
function _objectWithoutPropertiesLoose$E(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1083
1217
|
|
|
1084
1218
|
function SvgSocialYoutube(_ref) {
|
|
1085
1219
|
var title = _ref.title,
|
|
1086
1220
|
titleId = _ref.titleId,
|
|
1087
|
-
props = _objectWithoutProperties$
|
|
1221
|
+
props = _objectWithoutProperties$D(_ref, _excluded$D);
|
|
1088
1222
|
|
|
1089
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1223
|
+
return /*#__PURE__*/createElement("svg", _extends$E({
|
|
1090
1224
|
viewBox: "0 0 36 36",
|
|
1091
1225
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1092
1226
|
"aria-labelledby": titleId
|
|
@@ -1101,94 +1235,94 @@ function SvgSocialYoutube(_ref) {
|
|
|
1101
1235
|
}))));
|
|
1102
1236
|
}
|
|
1103
1237
|
|
|
1104
|
-
var _path$
|
|
1238
|
+
var _path$z;
|
|
1105
1239
|
|
|
1106
|
-
var _excluded$
|
|
1240
|
+
var _excluded$E = ["title", "titleId"];
|
|
1107
1241
|
|
|
1108
|
-
function _extends$
|
|
1242
|
+
function _extends$F() { _extends$F = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$F.apply(this, arguments); }
|
|
1109
1243
|
|
|
1110
|
-
function _objectWithoutProperties$
|
|
1244
|
+
function _objectWithoutProperties$E(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$F(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1111
1245
|
|
|
1112
|
-
function _objectWithoutPropertiesLoose$
|
|
1246
|
+
function _objectWithoutPropertiesLoose$F(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1113
1247
|
|
|
1114
1248
|
function SvgSpeakerNotes(_ref) {
|
|
1115
1249
|
var title = _ref.title,
|
|
1116
1250
|
titleId = _ref.titleId,
|
|
1117
|
-
props = _objectWithoutProperties$
|
|
1251
|
+
props = _objectWithoutProperties$E(_ref, _excluded$E);
|
|
1118
1252
|
|
|
1119
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1253
|
+
return /*#__PURE__*/createElement("svg", _extends$F({
|
|
1120
1254
|
viewBox: "0 0 24 24",
|
|
1121
1255
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1122
1256
|
"aria-labelledby": titleId
|
|
1123
1257
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1124
1258
|
id: titleId
|
|
1125
|
-
}, title) : null, _path$
|
|
1259
|
+
}, title) : null, _path$z || (_path$z = /*#__PURE__*/createElement("path", {
|
|
1126
1260
|
fillRule: "evenodd",
|
|
1127
1261
|
clipRule: "evenodd",
|
|
1128
1262
|
d: "M4 2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H6l-4 4 .01-18c0-1.1.89-2 1.99-2zm1.17 14H20V4H4v13.17l.58-.58.59-.59zM6 12h2v2H6v-2zm2-3H6v2h2V9zM6 6h2v2H6V6zm9 6h-5v2h5v-2zm-5-3h8v2h-8V9zm8-3h-8v2h8V6z"
|
|
1129
1263
|
})));
|
|
1130
1264
|
}
|
|
1131
1265
|
|
|
1132
|
-
var _path$
|
|
1266
|
+
var _path$A, _path2$d;
|
|
1133
1267
|
|
|
1134
|
-
var _excluded$
|
|
1268
|
+
var _excluded$F = ["title", "titleId"];
|
|
1135
1269
|
|
|
1136
|
-
function _extends$
|
|
1270
|
+
function _extends$G() { _extends$G = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$G.apply(this, arguments); }
|
|
1137
1271
|
|
|
1138
|
-
function _objectWithoutProperties$
|
|
1272
|
+
function _objectWithoutProperties$F(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$G(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1139
1273
|
|
|
1140
|
-
function _objectWithoutPropertiesLoose$
|
|
1274
|
+
function _objectWithoutPropertiesLoose$G(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1141
1275
|
|
|
1142
1276
|
function SvgUtilityAccountFilled(_ref) {
|
|
1143
1277
|
var title = _ref.title,
|
|
1144
1278
|
titleId = _ref.titleId,
|
|
1145
|
-
props = _objectWithoutProperties$
|
|
1279
|
+
props = _objectWithoutProperties$F(_ref, _excluded$F);
|
|
1146
1280
|
|
|
1147
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1281
|
+
return /*#__PURE__*/createElement("svg", _extends$G({
|
|
1148
1282
|
viewBox: "0 0 24 24",
|
|
1149
1283
|
fill: "none",
|
|
1150
1284
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1151
1285
|
"aria-labelledby": titleId
|
|
1152
1286
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1153
1287
|
id: titleId
|
|
1154
|
-
}, title) : null, _path$
|
|
1288
|
+
}, title) : null, _path$A || (_path$A = /*#__PURE__*/createElement("path", {
|
|
1155
1289
|
clipRule: "evenodd",
|
|
1156
1290
|
d: "M18.25 7.866c0 3.136-2.798 5.678-6.25 5.678s-6.25-2.542-6.25-5.678S8.548 2.188 12 2.188s6.25 2.542 6.25 5.678z"
|
|
1157
|
-
})), _path2$
|
|
1291
|
+
})), _path2$d || (_path2$d = /*#__PURE__*/createElement("path", {
|
|
1158
1292
|
clipRule: "evenodd",
|
|
1159
1293
|
d: "M11.225 12.993c-6.245.466-8.974 5.763-9.23 9.206h20s-3.078-9.78-10.77-9.206z"
|
|
1160
1294
|
})));
|
|
1161
1295
|
}
|
|
1162
1296
|
|
|
1163
|
-
var _path$
|
|
1297
|
+
var _path$B, _path2$e;
|
|
1164
1298
|
|
|
1165
|
-
var _excluded$
|
|
1299
|
+
var _excluded$G = ["title", "titleId"];
|
|
1166
1300
|
|
|
1167
|
-
function _extends$
|
|
1301
|
+
function _extends$H() { _extends$H = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$H.apply(this, arguments); }
|
|
1168
1302
|
|
|
1169
|
-
function _objectWithoutProperties$
|
|
1303
|
+
function _objectWithoutProperties$G(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$H(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1170
1304
|
|
|
1171
|
-
function _objectWithoutPropertiesLoose$
|
|
1305
|
+
function _objectWithoutPropertiesLoose$H(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1172
1306
|
|
|
1173
1307
|
function SvgUtilityAccountUnfilled(_ref) {
|
|
1174
1308
|
var title = _ref.title,
|
|
1175
1309
|
titleId = _ref.titleId,
|
|
1176
|
-
props = _objectWithoutProperties$
|
|
1310
|
+
props = _objectWithoutProperties$G(_ref, _excluded$G);
|
|
1177
1311
|
|
|
1178
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1312
|
+
return /*#__PURE__*/createElement("svg", _extends$H({
|
|
1179
1313
|
viewBox: "0 0 24 24",
|
|
1180
1314
|
fill: "none",
|
|
1181
1315
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1182
1316
|
"aria-labelledby": titleId
|
|
1183
1317
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1184
1318
|
id: titleId
|
|
1185
|
-
}, title) : null, _path$
|
|
1319
|
+
}, title) : null, _path$B || (_path$B = /*#__PURE__*/createElement("path", {
|
|
1186
1320
|
fillRule: "evenodd",
|
|
1187
1321
|
clipRule: "evenodd",
|
|
1188
1322
|
d: "M17.8 7.807c0 2.87-2.558 5.263-5.8 5.263s-5.8-2.393-5.8-5.263S8.758 2.544 12 2.544s5.8 2.393 5.8 5.263z",
|
|
1189
1323
|
fill: "#fff",
|
|
1190
1324
|
stroke: "#000"
|
|
1191
|
-
})), _path2$
|
|
1325
|
+
})), _path2$e || (_path2$e = /*#__PURE__*/createElement("path", {
|
|
1192
1326
|
fillRule: "evenodd",
|
|
1193
1327
|
clipRule: "evenodd",
|
|
1194
1328
|
d: "M11.225 13.071c-6.245.466-8.974 5.763-9.23 9.207h20s-3.078-9.78-10.77-9.207z",
|
|
@@ -1197,28 +1331,28 @@ function SvgUtilityAccountUnfilled(_ref) {
|
|
|
1197
1331
|
})));
|
|
1198
1332
|
}
|
|
1199
1333
|
|
|
1200
|
-
var _path$
|
|
1334
|
+
var _path$C;
|
|
1201
1335
|
|
|
1202
|
-
var _excluded$
|
|
1336
|
+
var _excluded$H = ["title", "titleId"];
|
|
1203
1337
|
|
|
1204
|
-
function _extends$
|
|
1338
|
+
function _extends$I() { _extends$I = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$I.apply(this, arguments); }
|
|
1205
1339
|
|
|
1206
|
-
function _objectWithoutProperties$
|
|
1340
|
+
function _objectWithoutProperties$H(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$I(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1207
1341
|
|
|
1208
|
-
function _objectWithoutPropertiesLoose$
|
|
1342
|
+
function _objectWithoutPropertiesLoose$I(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1209
1343
|
|
|
1210
1344
|
function SvgUtilityHamburger(_ref) {
|
|
1211
1345
|
var title = _ref.title,
|
|
1212
1346
|
titleId = _ref.titleId,
|
|
1213
|
-
props = _objectWithoutProperties$
|
|
1347
|
+
props = _objectWithoutProperties$H(_ref, _excluded$H);
|
|
1214
1348
|
|
|
1215
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1349
|
+
return /*#__PURE__*/createElement("svg", _extends$I({
|
|
1216
1350
|
viewBox: "0 0 24 24",
|
|
1217
1351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1218
1352
|
"aria-labelledby": titleId
|
|
1219
1353
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1220
1354
|
id: titleId
|
|
1221
|
-
}, title) : null, _path$
|
|
1355
|
+
}, title) : null, _path$C || (_path$C = /*#__PURE__*/createElement("path", {
|
|
1222
1356
|
fillRule: "evenodd",
|
|
1223
1357
|
clipRule: "evenodd",
|
|
1224
1358
|
stroke: "#000",
|
|
@@ -1233,11 +1367,13 @@ var iconSvgs = {
|
|
|
1233
1367
|
accessibilityFull: SvgAccessibilityFull,
|
|
1234
1368
|
accessibilityPartial: SvgAccessibilityPartial,
|
|
1235
1369
|
actionCheckCircle: SvgActionCheckCircle,
|
|
1370
|
+
actionCheckCircleFilled: SvgActionCheckCircleFilled,
|
|
1236
1371
|
actionExit: SvgActionExit,
|
|
1237
1372
|
actionHelpDefault: SvgActionHelpDefault,
|
|
1238
1373
|
actionHelpOutline: SvgActionHelpOutline,
|
|
1239
1374
|
actionLaunch: SvgActionLaunch,
|
|
1240
1375
|
actionPower: SvgActionPower,
|
|
1376
|
+
actionRegistration: SvgActionRegistration,
|
|
1241
1377
|
actionSettings: SvgActionSettings,
|
|
1242
1378
|
alertNotificationImportant: SvgAlertNotificationImportant,
|
|
1243
1379
|
arrow: SvgArrow,
|
|
@@ -1245,6 +1381,9 @@ var iconSvgs = {
|
|
|
1245
1381
|
check: SvgCheck,
|
|
1246
1382
|
clock: SvgClock,
|
|
1247
1383
|
close: SvgClose,
|
|
1384
|
+
decorativeEnvelope: SvgDecorativeEnvelope,
|
|
1385
|
+
decorativeLibraryCard: SvgDecorativeLibraryCard,
|
|
1386
|
+
decorativeShoppingBag: SvgDecorativeShoppingBag,
|
|
1248
1387
|
download: SvgDownload,
|
|
1249
1388
|
errorFilled: SvgErrorFilled,
|
|
1250
1389
|
errorOutline: SvgErrorOutline,
|
|
@@ -1272,7 +1411,7 @@ var iconSvgs = {
|
|
|
1272
1411
|
utilitySearch: SvgSearch
|
|
1273
1412
|
};
|
|
1274
1413
|
|
|
1275
|
-
var _excluded$
|
|
1414
|
+
var _excluded$I = ["align", "children", "className", "color", "decorative", "iconRotation", "id", "name", "size", "title", "type"];
|
|
1276
1415
|
/**
|
|
1277
1416
|
* Renders SVG-based icons.
|
|
1278
1417
|
*/
|
|
@@ -1298,7 +1437,7 @@ var Icon = /*#__PURE__*/chakra(function (props) {
|
|
|
1298
1437
|
title = _props$title === void 0 ? name + " icon" : _props$title,
|
|
1299
1438
|
_props$type = props.type,
|
|
1300
1439
|
type = _props$type === void 0 ? "default" : _props$type,
|
|
1301
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1440
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$I);
|
|
1302
1441
|
|
|
1303
1442
|
var styles = useStyleConfig("Icon", {
|
|
1304
1443
|
align: align,
|
|
@@ -1357,7 +1496,7 @@ var Icon = /*#__PURE__*/chakra(function (props) {
|
|
|
1357
1496
|
}
|
|
1358
1497
|
});
|
|
1359
1498
|
|
|
1360
|
-
var _excluded$
|
|
1499
|
+
var _excluded$J = ["accordionData", "id", "isDefaultOpen"];
|
|
1361
1500
|
/**
|
|
1362
1501
|
* Get the minus or plus icon depending on whether the accordion
|
|
1363
1502
|
* is open or closed.
|
|
@@ -1448,7 +1587,7 @@ var Accordion = /*#__PURE__*/chakra(function (props) {
|
|
|
1448
1587
|
id = props.id,
|
|
1449
1588
|
_props$isDefaultOpen = props.isDefaultOpen,
|
|
1450
1589
|
isDefaultOpen = _props$isDefaultOpen === void 0 ? false : _props$isDefaultOpen,
|
|
1451
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1590
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$J); // Pass `0` to open the first accordion in the 0-index based array.
|
|
1452
1591
|
|
|
1453
1592
|
|
|
1454
1593
|
var openFirstAccordion = isDefaultOpen ? [0] : undefined;
|
|
@@ -1459,7 +1598,7 @@ var Accordion = /*#__PURE__*/chakra(function (props) {
|
|
|
1459
1598
|
}, rest), getElementsFromData(accordionData, id));
|
|
1460
1599
|
});
|
|
1461
1600
|
|
|
1462
|
-
var _excluded$
|
|
1601
|
+
var _excluded$K = ["breadcrumbsData", "breadcrumbsType", "className", "id"];
|
|
1463
1602
|
|
|
1464
1603
|
var getElementsFromData$1 = function getElementsFromData(data, breadcrumbsID) {
|
|
1465
1604
|
if (!(data != null && data.length)) {
|
|
@@ -1492,7 +1631,7 @@ var Breadcrumbs = /*#__PURE__*/chakra(function (props) {
|
|
|
1492
1631
|
breadcrumbsType = _props$breadcrumbsTyp === void 0 ? "whatsOn" : _props$breadcrumbsTyp,
|
|
1493
1632
|
className = props.className,
|
|
1494
1633
|
id = props.id,
|
|
1495
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1634
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$K);
|
|
1496
1635
|
|
|
1497
1636
|
if (!breadcrumbsData || breadcrumbsData.length === 0) {
|
|
1498
1637
|
throw new Error("NYPL Reservoir Breadcrumbs: No data was passed to the `breadcrumbsData` prop.");
|
|
@@ -1510,7 +1649,7 @@ var Breadcrumbs = /*#__PURE__*/chakra(function (props) {
|
|
|
1510
1649
|
}, rest), breadcrumbItems);
|
|
1511
1650
|
});
|
|
1512
1651
|
|
|
1513
|
-
var _excluded$
|
|
1652
|
+
var _excluded$L = ["buttonType", "children", "className", "id", "isDisabled", "mouseDown", "onClick", "type"];
|
|
1514
1653
|
/**
|
|
1515
1654
|
* Renders a simple `button` element with custom variant styles.
|
|
1516
1655
|
*/
|
|
@@ -1529,7 +1668,7 @@ var Button = /*#__PURE__*/chakra(function (props) {
|
|
|
1529
1668
|
onClick = props.onClick,
|
|
1530
1669
|
_props$type = props.type,
|
|
1531
1670
|
type = _props$type === void 0 ? "button" : _props$type,
|
|
1532
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1671
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$L);
|
|
1533
1672
|
|
|
1534
1673
|
var btnCallback = mouseDown ? {
|
|
1535
1674
|
onMouseDown: onClick
|
|
@@ -1582,24 +1721,43 @@ var Button = /*#__PURE__*/chakra(function (props) {
|
|
|
1582
1721
|
*/
|
|
1583
1722
|
|
|
1584
1723
|
var useNYPLBreakpoints = function useNYPLBreakpoints() {
|
|
1724
|
+
// Local state is used and updated with the `useEffect` hook so that the
|
|
1725
|
+
// initial breakpoint values are the same on the server and client side.
|
|
1726
|
+
var _useState = useState({
|
|
1727
|
+
isLargerThanSmall: false,
|
|
1728
|
+
isLargerThanMedium: false,
|
|
1729
|
+
isLargerThanLarge: false,
|
|
1730
|
+
isLargerThanXLarge: false
|
|
1731
|
+
}),
|
|
1732
|
+
layoutSize = _useState[0],
|
|
1733
|
+
setLayoutSize = _useState[1];
|
|
1734
|
+
|
|
1585
1735
|
var _useMediaQuery = useMediaQuery(["(min-width: 320px)", "(min-width: 600px)", "(min-width: 960px)", "(min-width: 1280px)"]),
|
|
1586
1736
|
isLargerThanSmall = _useMediaQuery[0],
|
|
1587
1737
|
isLargerThanMedium = _useMediaQuery[1],
|
|
1588
1738
|
isLargerThanLarge = _useMediaQuery[2],
|
|
1589
1739
|
isLargerThanXLarge = _useMediaQuery[3];
|
|
1590
1740
|
|
|
1741
|
+
useEffect(function () {
|
|
1742
|
+
setLayoutSize({
|
|
1743
|
+
isLargerThanSmall: isLargerThanSmall,
|
|
1744
|
+
isLargerThanMedium: isLargerThanMedium,
|
|
1745
|
+
isLargerThanLarge: isLargerThanLarge,
|
|
1746
|
+
isLargerThanXLarge: isLargerThanXLarge
|
|
1747
|
+
});
|
|
1748
|
+
}, [isLargerThanSmall, isLargerThanMedium, isLargerThanLarge, isLargerThanXLarge]);
|
|
1591
1749
|
return {
|
|
1592
|
-
isLargerThanSmall: isLargerThanSmall,
|
|
1593
|
-
isLargerThanMedium: isLargerThanMedium,
|
|
1750
|
+
isLargerThanSmall: layoutSize.isLargerThanSmall,
|
|
1751
|
+
isLargerThanMedium: layoutSize.isLargerThanMedium,
|
|
1594
1752
|
// NYPL uses the medium 600px breakpoint to determine if the screen is
|
|
1595
1753
|
// in the mobile view. This is the recommended boolean value to use.
|
|
1596
|
-
isLargerThanMobile: isLargerThanMedium,
|
|
1597
|
-
isLargerThanLarge: isLargerThanLarge,
|
|
1598
|
-
isLargerThanXLarge: isLargerThanXLarge
|
|
1754
|
+
isLargerThanMobile: layoutSize.isLargerThanMedium,
|
|
1755
|
+
isLargerThanLarge: layoutSize.isLargerThanLarge,
|
|
1756
|
+
isLargerThanXLarge: layoutSize.isLargerThanXLarge
|
|
1599
1757
|
};
|
|
1600
1758
|
};
|
|
1601
1759
|
|
|
1602
|
-
var _excluded$
|
|
1760
|
+
var _excluded$M = ["buttonWidth", "children", "className", "id", "isDisabled", "layout"];
|
|
1603
1761
|
/**
|
|
1604
1762
|
* A simple wrapper to group `Button` components together. The layout can be set
|
|
1605
1763
|
* to row or column and the width of internal `Button` components can be set to
|
|
@@ -1618,7 +1776,7 @@ var ButtonGroup = /*#__PURE__*/chakra(function (props) {
|
|
|
1618
1776
|
isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
|
|
1619
1777
|
_props$layout = props.layout,
|
|
1620
1778
|
layout = _props$layout === void 0 ? "row" : _props$layout,
|
|
1621
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1779
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$M);
|
|
1622
1780
|
|
|
1623
1781
|
var newChildren = [];
|
|
1624
1782
|
|
|
@@ -1656,7 +1814,7 @@ var ButtonGroup = /*#__PURE__*/chakra(function (props) {
|
|
|
1656
1814
|
}, rest), newChildren);
|
|
1657
1815
|
});
|
|
1658
1816
|
|
|
1659
|
-
var _excluded$
|
|
1817
|
+
var _excluded$N = ["children", "className", "href", "id", "type"];
|
|
1660
1818
|
/**
|
|
1661
1819
|
* Renders the `Link` children components with a direction arrow icon based
|
|
1662
1820
|
* on the `"backwards"` or `"forwards"` `linkType` value.
|
|
@@ -1712,7 +1870,7 @@ var Link = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1712
1870
|
id = props.id,
|
|
1713
1871
|
_props$type = props.type,
|
|
1714
1872
|
type = _props$type === void 0 ? "default" : _props$type,
|
|
1715
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1873
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$N); // Merge the necessary props alongside any extra props for the
|
|
1716
1874
|
// anchor element.
|
|
1717
1875
|
|
|
1718
1876
|
|
|
@@ -1777,7 +1935,7 @@ var Link = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1777
1935
|
}
|
|
1778
1936
|
}));
|
|
1779
1937
|
|
|
1780
|
-
var _excluded$
|
|
1938
|
+
var _excluded$O = ["className", "id", "isCapitalized", "isUppercase", "isLowercase", "level", "noSpace", "size", "text", "url", "urlClass"];
|
|
1781
1939
|
/** Map the word heading level to the number heading level. The default is 2. */
|
|
1782
1940
|
|
|
1783
1941
|
var getMappedLevel = function getMappedLevel(level) {
|
|
@@ -1809,7 +1967,7 @@ var Heading = /*#__PURE__*/chakra(function (props) {
|
|
|
1809
1967
|
text = props.text,
|
|
1810
1968
|
url = props.url,
|
|
1811
1969
|
urlClass = props.urlClass,
|
|
1812
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1970
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$O);
|
|
1813
1971
|
|
|
1814
1972
|
var finalLevel = getMappedLevel(level);
|
|
1815
1973
|
var variant = size ? size : "h" + finalLevel;
|
|
@@ -1865,7 +2023,7 @@ var Heading = /*#__PURE__*/chakra(function (props) {
|
|
|
1865
2023
|
}, rest), content);
|
|
1866
2024
|
});
|
|
1867
2025
|
|
|
1868
|
-
var _excluded$
|
|
2026
|
+
var _excluded$P = ["additionalWrapperStyles", "className", "children", "aspectRatio", "size"],
|
|
1869
2027
|
_excluded2 = ["additionalFigureStyles", "additionalImageStyles", "additionalWrapperStyles", "alt", "aspectRatio", "caption", "className", "component", "credit", "imageType", "size", "src"];
|
|
1870
2028
|
var ImageWrapper = /*#__PURE__*/chakra(function (props) {
|
|
1871
2029
|
var _props$additionalWrap = props.additionalWrapperStyles,
|
|
@@ -1877,7 +2035,7 @@ var ImageWrapper = /*#__PURE__*/chakra(function (props) {
|
|
|
1877
2035
|
aspectRatio = _props$aspectRatio === void 0 ? "original" : _props$aspectRatio,
|
|
1878
2036
|
_props$size = props.size,
|
|
1879
2037
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
1880
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2038
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$P);
|
|
1881
2039
|
|
|
1882
2040
|
var styles = useMultiStyleConfig("CustomImageWrapper", {
|
|
1883
2041
|
ratio: aspectRatio,
|
|
@@ -1974,7 +2132,7 @@ var Image = /*#__PURE__*/chakra(function (props) {
|
|
|
1974
2132
|
}, credit))) : finalImage);
|
|
1975
2133
|
});
|
|
1976
2134
|
|
|
1977
|
-
var _excluded$
|
|
2135
|
+
var _excluded$Q = ["children"],
|
|
1978
2136
|
_excluded2$1 = ["bottomBorder", "children", "isCentered", "layout", "topBorder"],
|
|
1979
2137
|
_excluded3 = ["className", "children", "id", "mainActionLink", "styles"],
|
|
1980
2138
|
_excluded4 = ["backgroundColor", "children", "className", "foregroundColor", "id", "imageProps", "isAlignedRightActions", "isBordered", "isCentered", "layout", "mainActionLink"];
|
|
@@ -2020,7 +2178,7 @@ var CardHeading = /*#__PURE__*/chakra(Heading); // CardContent child-component
|
|
|
2020
2178
|
|
|
2021
2179
|
var CardContent = /*#__PURE__*/chakra(function (props) {
|
|
2022
2180
|
var children = props.children,
|
|
2023
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2181
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$Q);
|
|
2024
2182
|
|
|
2025
2183
|
var styles = useStyleConfig("CardContent");
|
|
2026
2184
|
return children ? createElement(Box, Object.assign({
|
|
@@ -2202,7 +2360,7 @@ var Card = /*#__PURE__*/chakra(function (props) {
|
|
|
2202
2360
|
}, cardRightContents) : null);
|
|
2203
2361
|
});
|
|
2204
2362
|
|
|
2205
|
-
var _excluded$
|
|
2363
|
+
var _excluded$R = ["ariaAtomic", "ariaLive", "className", "id", "isInvalid", "text"];
|
|
2206
2364
|
/**
|
|
2207
2365
|
* Helper or error text for forms components.
|
|
2208
2366
|
*/
|
|
@@ -2218,7 +2376,7 @@ var HelperErrorText = /*#__PURE__*/chakra(function (_ref) {
|
|
|
2218
2376
|
_ref$isInvalid = _ref.isInvalid,
|
|
2219
2377
|
isInvalid = _ref$isInvalid === void 0 ? false : _ref$isInvalid,
|
|
2220
2378
|
text = _ref.text,
|
|
2221
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2379
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$R);
|
|
2222
2380
|
|
|
2223
2381
|
// Only announce the text in the invalid state.
|
|
2224
2382
|
var announceAriaLive = isInvalid;
|
|
@@ -2242,7 +2400,7 @@ var HelperErrorText = /*#__PURE__*/chakra(function (_ref) {
|
|
|
2242
2400
|
})) : createElement(Box, Object.assign({}, props), text);
|
|
2243
2401
|
});
|
|
2244
2402
|
|
|
2245
|
-
var _excluded$
|
|
2403
|
+
var _excluded$S = ["children", "className", "isBold", "isItalic", "isCapitalized", "isUppercase", "isLowercase", "noSpace", "size"];
|
|
2246
2404
|
var Text = /*#__PURE__*/chakra(function (props) {
|
|
2247
2405
|
var children = props.children,
|
|
2248
2406
|
_props$className = props.className,
|
|
@@ -2255,7 +2413,7 @@ var Text = /*#__PURE__*/chakra(function (props) {
|
|
|
2255
2413
|
noSpace = props.noSpace,
|
|
2256
2414
|
_props$size = props.size,
|
|
2257
2415
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
2258
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2416
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$S);
|
|
2259
2417
|
|
|
2260
2418
|
var styles = useStyleConfig("Text", {
|
|
2261
2419
|
variant: size,
|
|
@@ -2295,7 +2453,7 @@ var Text = /*#__PURE__*/chakra(function (props) {
|
|
|
2295
2453
|
}, rest), children);
|
|
2296
2454
|
});
|
|
2297
2455
|
|
|
2298
|
-
var _excluded$
|
|
2456
|
+
var _excluded$T = ["children", "className", "descriptionText", "headingText", "helperText", "helperTextStyles", "id", "invalidText", "isInvalid", "showHelperInvalidText"];
|
|
2299
2457
|
var ComponentWrapper = /*#__PURE__*/chakra(function (props) {
|
|
2300
2458
|
var children = props.children,
|
|
2301
2459
|
className = props.className,
|
|
@@ -2310,7 +2468,7 @@ var ComponentWrapper = /*#__PURE__*/chakra(function (props) {
|
|
|
2310
2468
|
isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
|
|
2311
2469
|
_props$showHelperInva = props.showHelperInvalidText,
|
|
2312
2470
|
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
2313
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2471
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$T);
|
|
2314
2472
|
|
|
2315
2473
|
var hasChildren = !!children;
|
|
2316
2474
|
var styles = useMultiStyleConfig("ComponentWrapper", {
|
|
@@ -2384,14 +2542,14 @@ var getAriaAttrs = function getAriaAttrs(_ref) {
|
|
|
2384
2542
|
return ariaAttributes;
|
|
2385
2543
|
};
|
|
2386
2544
|
|
|
2387
|
-
var _excluded$
|
|
2545
|
+
var _excluded$U = ["isIndeterminate", "isChecked"],
|
|
2388
2546
|
_excluded2$2 = ["className", "invalidText", "helperText", "id", "isChecked", "isDisabled", "isIndeterminate", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
|
|
2389
2547
|
|
|
2390
2548
|
function CheckboxIcon(props) {
|
|
2391
2549
|
// We don't need the `isIndeterminate` or `isChecked` props but it
|
|
2392
2550
|
// causes rendering issues on the SVG element, so we remove them
|
|
2393
2551
|
// before passing all the props to the `Icon` component.
|
|
2394
|
-
var rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2552
|
+
var rest = _objectWithoutPropertiesLoose(props, _excluded$U);
|
|
2395
2553
|
|
|
2396
2554
|
return createElement(Icon$2, Object.assign({
|
|
2397
2555
|
viewBox: "0 0 24 24"
|
|
@@ -2470,7 +2628,7 @@ var Checkbox = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
2470
2628
|
}, ariaAttributes), showLabel && labelText));
|
|
2471
2629
|
}));
|
|
2472
2630
|
|
|
2473
|
-
var _excluded$
|
|
2631
|
+
var _excluded$V = ["children", "className", "id", "isLegendHidden", "isRequired", "legendText", "showRequiredLabel"];
|
|
2474
2632
|
/**
|
|
2475
2633
|
* A wrapper component that renders a `fieldset` element along with a `legend`
|
|
2476
2634
|
* element as its first child. Commonly used to wrap form components.
|
|
@@ -2487,7 +2645,7 @@ var Fieldset = /*#__PURE__*/chakra(function (_ref) {
|
|
|
2487
2645
|
legendText = _ref.legendText,
|
|
2488
2646
|
_ref$showRequiredLabe = _ref.showRequiredLabel,
|
|
2489
2647
|
showRequiredLabel = _ref$showRequiredLabe === void 0 ? true : _ref$showRequiredLabe,
|
|
2490
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2648
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$V);
|
|
2491
2649
|
|
|
2492
2650
|
var styles = useMultiStyleConfig("Fieldset", {
|
|
2493
2651
|
isLegendHidden: isLegendHidden
|
|
@@ -2639,7 +2797,7 @@ var reservoirSpacingTokens = {
|
|
|
2639
2797
|
};
|
|
2640
2798
|
var spacing = /*#__PURE__*/_extends({}, chakraSpacingTokens, reservoirSpacingTokens);
|
|
2641
2799
|
|
|
2642
|
-
var _excluded$
|
|
2800
|
+
var _excluded$W = ["children", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
2643
2801
|
/**
|
|
2644
2802
|
* Wrapper component to wrap `Checkbox` components. Can be displayed in a
|
|
2645
2803
|
* column or in a row. The `CheckboxGroup` component renders all the necessary
|
|
@@ -2674,7 +2832,7 @@ var CheckboxGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
2674
2832
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
2675
2833
|
_props$showRequiredLa = props.showRequiredLabel,
|
|
2676
2834
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
2677
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2835
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$W);
|
|
2678
2836
|
|
|
2679
2837
|
var footnote = isInvalid ? invalidText : helperText;
|
|
2680
2838
|
var newChildren = [];
|
|
@@ -2736,37 +2894,269 @@ var CheckboxGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
2736
2894
|
}));
|
|
2737
2895
|
}));
|
|
2738
2896
|
|
|
2739
|
-
var _excluded$
|
|
2740
|
-
var SimpleGrid = /*#__PURE__*/chakra(function (props) {
|
|
2741
|
-
var children = props.children,
|
|
2742
|
-
columns = props.columns,
|
|
2743
|
-
className = props.className,
|
|
2744
|
-
_props$gap = props.gap,
|
|
2745
|
-
gap = _props$gap === void 0 ? "grid.l" : _props$gap,
|
|
2746
|
-
id = props.id,
|
|
2747
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2897
|
+
var _excluded$X = ["children", "columns", "className", "gap", "id"];
|
|
2898
|
+
var SimpleGrid = /*#__PURE__*/chakra(function (props) {
|
|
2899
|
+
var children = props.children,
|
|
2900
|
+
columns = props.columns,
|
|
2901
|
+
className = props.className,
|
|
2902
|
+
_props$gap = props.gap,
|
|
2903
|
+
gap = _props$gap === void 0 ? "grid.l" : _props$gap,
|
|
2904
|
+
id = props.id,
|
|
2905
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$X);
|
|
2906
|
+
|
|
2907
|
+
var responsiveCols = columns ? {
|
|
2908
|
+
base: 1,
|
|
2909
|
+
md: columns
|
|
2910
|
+
} : {
|
|
2911
|
+
base: 1,
|
|
2912
|
+
md: 2,
|
|
2913
|
+
lg: 3
|
|
2914
|
+
};
|
|
2915
|
+
return createElement(SimpleGrid$1, Object.assign({
|
|
2916
|
+
columns: responsiveCols,
|
|
2917
|
+
gap: gap,
|
|
2918
|
+
id: id,
|
|
2919
|
+
className: className
|
|
2920
|
+
}, rest), children);
|
|
2921
|
+
}, {
|
|
2922
|
+
shouldForwardProp: function shouldForwardProp() {
|
|
2923
|
+
return true;
|
|
2924
|
+
}
|
|
2925
|
+
});
|
|
2926
|
+
|
|
2927
|
+
/**
|
|
2928
|
+
* React hook used to get the window size on device resizing.
|
|
2929
|
+
* Based on https://usehooks-typescript.com/react-hook/use-window-size
|
|
2930
|
+
*/
|
|
2931
|
+
|
|
2932
|
+
function useWindowSize() {
|
|
2933
|
+
var _React$useState = React__default.useState({
|
|
2934
|
+
width: 0,
|
|
2935
|
+
height: 0
|
|
2936
|
+
}),
|
|
2937
|
+
windowSize = _React$useState[0],
|
|
2938
|
+
setWindowSize = _React$useState[1];
|
|
2939
|
+
|
|
2940
|
+
React__default.useEffect(function () {
|
|
2941
|
+
var handler = function handler() {
|
|
2942
|
+
setWindowSize({
|
|
2943
|
+
width: window.innerWidth,
|
|
2944
|
+
height: window.innerHeight
|
|
2945
|
+
});
|
|
2946
|
+
}; // Set size at the first client-side load
|
|
2947
|
+
|
|
2948
|
+
|
|
2949
|
+
handler();
|
|
2950
|
+
window.addEventListener("resize", handler); // Remove event listener on cleanup
|
|
2951
|
+
|
|
2952
|
+
return function () {
|
|
2953
|
+
window.removeEventListener("resize", handler);
|
|
2954
|
+
};
|
|
2955
|
+
}, []);
|
|
2956
|
+
return windowSize;
|
|
2957
|
+
}
|
|
2958
|
+
|
|
2959
|
+
var _excluded$Y = ["className", "columnHeaders", "columnHeadersBackgroundColor", "columnHeadersTextColor", "id", "showRowDividers", "tableData", "titleText", "useRowHeaders"];
|
|
2960
|
+
/**
|
|
2961
|
+
* Basic `Table` component used to organize and display tabular data in
|
|
2962
|
+
* rows and columns.
|
|
2963
|
+
*/
|
|
2964
|
+
|
|
2965
|
+
var Table = /*#__PURE__*/chakra(function (props) {
|
|
2966
|
+
var className = props.className,
|
|
2967
|
+
_props$columnHeaders = props.columnHeaders,
|
|
2968
|
+
columnHeaders = _props$columnHeaders === void 0 ? [] : _props$columnHeaders,
|
|
2969
|
+
columnHeadersBackgroundColor = props.columnHeadersBackgroundColor,
|
|
2970
|
+
columnHeadersTextColor = props.columnHeadersTextColor,
|
|
2971
|
+
id = props.id,
|
|
2972
|
+
_props$showRowDivider = props.showRowDividers,
|
|
2973
|
+
showRowDividers = _props$showRowDivider === void 0 ? false : _props$showRowDivider,
|
|
2974
|
+
tableData = props.tableData,
|
|
2975
|
+
titleText = props.titleText,
|
|
2976
|
+
_props$useRowHeaders = props.useRowHeaders,
|
|
2977
|
+
useRowHeaders = _props$useRowHeaders === void 0 ? false : _props$useRowHeaders,
|
|
2978
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$Y);
|
|
2979
|
+
|
|
2980
|
+
var customColors = {};
|
|
2981
|
+
columnHeadersBackgroundColor && (customColors["backgroundColor"] = columnHeadersBackgroundColor);
|
|
2982
|
+
columnHeadersTextColor && (customColors["color"] = columnHeadersTextColor);
|
|
2983
|
+
var styles = useMultiStyleConfig("CustomTable", {
|
|
2984
|
+
columnHeadersBackgroundColor: columnHeadersBackgroundColor,
|
|
2985
|
+
columnHeadersTextColor: columnHeadersTextColor,
|
|
2986
|
+
showRowDividers: showRowDividers,
|
|
2987
|
+
useRowHeaders: useRowHeaders
|
|
2988
|
+
}); // Based on --nypl-breakpoint-medium
|
|
2989
|
+
|
|
2990
|
+
var breakpointMedium = 600;
|
|
2991
|
+
var windowDimensions = useWindowSize();
|
|
2992
|
+
var tableCaption = titleText && createElement(TableCaption, null, titleText);
|
|
2993
|
+
var columnHeadersElems = columnHeaders.length > 0 ? createElement(Thead, null, createElement(Tr, null, columnHeaders.map(function (child, key) {
|
|
2994
|
+
return createElement(Th, {
|
|
2995
|
+
key: key,
|
|
2996
|
+
scope: "col",
|
|
2997
|
+
sx: customColors
|
|
2998
|
+
}, child);
|
|
2999
|
+
}))) : console.warn("NYPL Reservoir Table: Column headers have not been set. For improved accessibility, " + "column headers are required.");
|
|
3000
|
+
/**
|
|
3001
|
+
* This renders a normal `tbody` DOM element structure if the `tableData`
|
|
3002
|
+
* passed is a two-dimensional array. This is to render the appropriate
|
|
3003
|
+
* row and column structure for a table.
|
|
3004
|
+
*/
|
|
3005
|
+
|
|
3006
|
+
var tableBodyElems = function tableBodyElems() {
|
|
3007
|
+
if (!Array.isArray(tableData) || tableData.length <= 0 || tableData[0].constructor !== Array) {
|
|
3008
|
+
console.warn("NYPL Reservoir Table: Data in the `tableData` prop must be a two dimensional array.");
|
|
3009
|
+
return null;
|
|
3010
|
+
}
|
|
2748
3011
|
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
3012
|
+
for (var i = 1; i < tableData.length; i++) {
|
|
3013
|
+
if (tableData[0].length !== tableData[i].length) {
|
|
3014
|
+
console.warn("NYPL Reservoir Table: The number of columns in each row of the data table are not identical. " + "The `Table` component may not render properly.");
|
|
3015
|
+
break;
|
|
3016
|
+
}
|
|
3017
|
+
}
|
|
3018
|
+
|
|
3019
|
+
var cellContent = function cellContent(key, column) {
|
|
3020
|
+
return windowDimensions.width <= breakpointMedium ? createElement(Fragment, null, createElement("span", null, columnHeaders[key]), createElement("span", null, column)) : column;
|
|
3021
|
+
};
|
|
3022
|
+
|
|
3023
|
+
return createElement(Tbody, null, tableData.map(function (row, index) {
|
|
3024
|
+
return createElement(Tr, {
|
|
3025
|
+
key: index
|
|
3026
|
+
}, row.map(function (column, key) {
|
|
3027
|
+
return key === 0 && useRowHeaders ? createElement(Th, {
|
|
3028
|
+
scope: "row",
|
|
3029
|
+
key: key
|
|
3030
|
+
}, cellContent(key, column)) : createElement(Td, {
|
|
3031
|
+
key: key
|
|
3032
|
+
}, cellContent(key, column));
|
|
3033
|
+
}));
|
|
3034
|
+
}));
|
|
2756
3035
|
};
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
3036
|
+
|
|
3037
|
+
for (var j = 0; j < tableData.length; j++) {
|
|
3038
|
+
if (columnHeaders.length && columnHeaders.length !== tableData[j].length) {
|
|
3039
|
+
console.warn("NYPL Reservoir Table: The number of column headers in the `columnHeaders` prop is not equal " + "to the number of columns in the data table. " + "The `Table` component may not render properly.");
|
|
3040
|
+
break;
|
|
3041
|
+
}
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
return createElement(Table$1, Object.assign({
|
|
2760
3045
|
id: id,
|
|
3046
|
+
sx: styles,
|
|
2761
3047
|
className: className
|
|
2762
|
-
}, rest),
|
|
2763
|
-
}, {
|
|
2764
|
-
shouldForwardProp: function shouldForwardProp() {
|
|
2765
|
-
return true;
|
|
2766
|
-
}
|
|
3048
|
+
}, rest), tableCaption, columnHeadersElems, tableBodyElems());
|
|
2767
3049
|
});
|
|
2768
3050
|
|
|
2769
|
-
var
|
|
3051
|
+
var DataTable = function DataTable(props) {
|
|
3052
|
+
var _props$dataBlack = props.dataBlack,
|
|
3053
|
+
dataBlack = _props$dataBlack === void 0 ? ["--", "--", "--"] : _props$dataBlack,
|
|
3054
|
+
_props$dataWhite = props.dataWhite,
|
|
3055
|
+
dataWhite = _props$dataWhite === void 0 ? ["--", "--", "--"] : _props$dataWhite,
|
|
3056
|
+
_props$textColor = props.textColor,
|
|
3057
|
+
textColor = _props$textColor === void 0 ? "ui.white" : _props$textColor;
|
|
3058
|
+
|
|
3059
|
+
var SuccessIcon = function SuccessIcon() {
|
|
3060
|
+
return createElement(Icon, {
|
|
3061
|
+
color: textColor,
|
|
3062
|
+
decorative: true,
|
|
3063
|
+
marginLeft: "xxs",
|
|
3064
|
+
name: "check",
|
|
3065
|
+
size: "medium",
|
|
3066
|
+
type: "default",
|
|
3067
|
+
verticalAlign: "text-bottom"
|
|
3068
|
+
});
|
|
3069
|
+
};
|
|
3070
|
+
|
|
3071
|
+
var columnHeaders = ["Color", "Ratio", "16px", "36px"];
|
|
3072
|
+
var whiteSmallTextSuccess = (dataWhite[1] === "AA" || dataWhite[1] === "AAA") && createElement(SuccessIcon, null);
|
|
3073
|
+
var whiteLargeTextSuccess = (dataWhite[2] === "AA" || dataWhite[2] === "AAA") && createElement(SuccessIcon, null);
|
|
3074
|
+
var blackSmallTextSuccess = (dataBlack[1] === "AA" || dataBlack[1] === "AAA") && createElement(SuccessIcon, null);
|
|
3075
|
+
var blackLargeTextSuccess = (dataBlack[2] === "AA" || dataBlack[2] === "AAA") && createElement(SuccessIcon, null);
|
|
3076
|
+
var tableData = [[createElement("span", {
|
|
3077
|
+
key: "colorUiWhite",
|
|
3078
|
+
style: {
|
|
3079
|
+
color: "white",
|
|
3080
|
+
padding: 0
|
|
3081
|
+
}
|
|
3082
|
+
}, "ui.white"), dataWhite[0] + ":1", createElement(Fragment, null, dataWhite[1], whiteSmallTextSuccess), createElement(Fragment, null, dataWhite[2], whiteLargeTextSuccess)], [createElement("span", {
|
|
3083
|
+
key: "colorUiBlack",
|
|
3084
|
+
style: {
|
|
3085
|
+
color: "black",
|
|
3086
|
+
padding: 0
|
|
3087
|
+
}
|
|
3088
|
+
}, "ui.black"), dataBlack[0] + ":1", createElement(Fragment, null, dataBlack[1], blackSmallTextSuccess), createElement(Fragment, null, dataBlack[2], blackLargeTextSuccess)]];
|
|
3089
|
+
var cellStyles = {
|
|
3090
|
+
borderColor: textColor === "ui.white" ? "white !important" : "black !important",
|
|
3091
|
+
fontWeight: "medium",
|
|
3092
|
+
py: "xs"
|
|
3093
|
+
};
|
|
3094
|
+
var tableStyles = {
|
|
3095
|
+
tbody: {
|
|
3096
|
+
td: _extends({
|
|
3097
|
+
fontSize: "text.caption"
|
|
3098
|
+
}, cellStyles),
|
|
3099
|
+
th: _extends({
|
|
3100
|
+
fontSize: "text.caption",
|
|
3101
|
+
textTransform: "none"
|
|
3102
|
+
}, cellStyles)
|
|
3103
|
+
},
|
|
3104
|
+
thead: {
|
|
3105
|
+
th: _extends({
|
|
3106
|
+
color: textColor,
|
|
3107
|
+
fontSize: "text.tag"
|
|
3108
|
+
}, cellStyles)
|
|
3109
|
+
}
|
|
3110
|
+
};
|
|
3111
|
+
return createElement(Table, {
|
|
3112
|
+
columnHeaders: columnHeaders,
|
|
3113
|
+
showRowDividers: true,
|
|
3114
|
+
sx: tableStyles,
|
|
3115
|
+
tableData: tableData,
|
|
3116
|
+
useRowHeaders: true
|
|
3117
|
+
});
|
|
3118
|
+
};
|
|
3119
|
+
var ColorCard = function ColorCard(props) {
|
|
3120
|
+
var backgroundColor = props.backgroundColor,
|
|
3121
|
+
_props$colorName = props.colorName,
|
|
3122
|
+
colorName = _props$colorName === void 0 ? "" : _props$colorName,
|
|
3123
|
+
colorSource = props.colorSource,
|
|
3124
|
+
_props$dataBlack2 = props.dataBlack,
|
|
3125
|
+
dataBlack = _props$dataBlack2 === void 0 ? ["--", "--", "--"] : _props$dataBlack2,
|
|
3126
|
+
_props$dataWhite2 = props.dataWhite,
|
|
3127
|
+
dataWhite = _props$dataWhite2 === void 0 ? ["--", "--", "--"] : _props$dataWhite2,
|
|
3128
|
+
_props$textColor2 = props.textColor,
|
|
3129
|
+
textColor = _props$textColor2 === void 0 ? "ui.white" : _props$textColor2;
|
|
3130
|
+
var cssVarName = "--nypl-colors-" + colorName.replace(/\./g, "-");
|
|
3131
|
+
var border = backgroundColor === "ui.white" ? "1px solid var(--nypl-colors-ui-gray-light-cool)" : undefined;
|
|
3132
|
+
return createElement(Box, {
|
|
3133
|
+
bg: backgroundColor,
|
|
3134
|
+
color: textColor,
|
|
3135
|
+
px: "m",
|
|
3136
|
+
paddingBottom: "m",
|
|
3137
|
+
paddingTop: "s",
|
|
3138
|
+
border: border
|
|
3139
|
+
}, createElement(SimpleGrid, {
|
|
3140
|
+
columns: 2
|
|
3141
|
+
}, createElement(Box, null, createElement(Heading, {
|
|
3142
|
+
noSpace: true,
|
|
3143
|
+
size: "tertiary"
|
|
3144
|
+
}, backgroundColor), createElement(Text, {
|
|
3145
|
+
fontWeight: "medium",
|
|
3146
|
+
noSpace: true,
|
|
3147
|
+
size: "tag"
|
|
3148
|
+
}, "CSS: var(" + cssVarName + ")"), colorSource && createElement(Text, {
|
|
3149
|
+
fontWeight: "medium",
|
|
3150
|
+
noSpace: true,
|
|
3151
|
+
size: "tag"
|
|
3152
|
+
}, "Base: ", colorSource)), createElement(DataTable, {
|
|
3153
|
+
dataBlack: dataBlack,
|
|
3154
|
+
dataWhite: dataWhite,
|
|
3155
|
+
textColor: textColor
|
|
3156
|
+
})));
|
|
3157
|
+
};
|
|
3158
|
+
|
|
3159
|
+
var _excluded$Z = ["children", "className", "gap", "id"],
|
|
2770
3160
|
_excluded2$3 = ["children", "className", "gap", "id"],
|
|
2771
3161
|
_excluded3$1 = ["action", "children", "className", "gap", "id", "method", "onSubmit"];
|
|
2772
3162
|
/** FormRow child-component */
|
|
@@ -2776,7 +3166,7 @@ var FormRow = /*#__PURE__*/chakra(function (props) {
|
|
|
2776
3166
|
className = props.className,
|
|
2777
3167
|
gap = props.gap,
|
|
2778
3168
|
id = props.id,
|
|
2779
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3169
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$Z);
|
|
2780
3170
|
|
|
2781
3171
|
var count = Children.count(children);
|
|
2782
3172
|
var alteredChildren = Children.map(children, function (child, i) {
|
|
@@ -2856,7 +3246,7 @@ var Form = /*#__PURE__*/chakra(function (props) {
|
|
|
2856
3246
|
}
|
|
2857
3247
|
});
|
|
2858
3248
|
|
|
2859
|
-
var _excluded$
|
|
3249
|
+
var _excluded$_ = ["children", "className", "htmlFor", "id", "isInlined", "isRequired"];
|
|
2860
3250
|
/**
|
|
2861
3251
|
* A label for form inputs. It should never be used alone.
|
|
2862
3252
|
*/
|
|
@@ -2870,7 +3260,7 @@ var Label = /*#__PURE__*/chakra(function (props) {
|
|
|
2870
3260
|
isInlined = _props$isInlined === void 0 ? false : _props$isInlined,
|
|
2871
3261
|
_props$isRequired = props.isRequired,
|
|
2872
3262
|
isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
|
|
2873
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3263
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$_);
|
|
2874
3264
|
|
|
2875
3265
|
var styles = useStyleConfig("Label", {
|
|
2876
3266
|
isInlined: isInlined
|
|
@@ -2889,7 +3279,7 @@ var Label = /*#__PURE__*/chakra(function (props) {
|
|
|
2889
3279
|
}, rest), children, isRequired && createElement("span", null, " (Required)"));
|
|
2890
3280
|
});
|
|
2891
3281
|
|
|
2892
|
-
var _excluded
|
|
3282
|
+
var _excluded$$ = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "max", "maxLength", "min", "name", "onChange", "onClick", "onFocus", "placeholder", "showHelperInvalidText", "showLabel", "showRequiredLabel", "step", "textInputType", "type", "value"];
|
|
2893
3283
|
|
|
2894
3284
|
var TextInputFormats = {
|
|
2895
3285
|
email: "jdoe@domain.com",
|
|
@@ -2940,7 +3330,7 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
2940
3330
|
_props$type = props.type,
|
|
2941
3331
|
type = _props$type === void 0 ? "text" : _props$type,
|
|
2942
3332
|
value = props.value,
|
|
2943
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded
|
|
3333
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$$);
|
|
2944
3334
|
|
|
2945
3335
|
var styles = useMultiStyleConfig("TextInput", {
|
|
2946
3336
|
variant: textInputType
|
|
@@ -3031,7 +3421,7 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
3031
3421
|
}, labelText), fieldOutput);
|
|
3032
3422
|
}));
|
|
3033
3423
|
|
|
3034
|
-
var _excluded$
|
|
3424
|
+
var _excluded$10 = ["dsRef", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "onClick", "showLabel", "showHelperInvalidText", "showRequiredLabel", "value"],
|
|
3035
3425
|
_excluded2$4 = ["children", "className", "id", "isDateRange", "isRequired", "labelText", "showLabel", "showRequiredLabel"],
|
|
3036
3426
|
_excluded3$2 = ["className", "dateFormat", "dateType", "helperText", "helperTextFrom", "helperTextTo", "id", "initialDate", "initialDateTo", "invalidText", "isDateRange", "isDisabled", "isInvalid", "isRequired", "labelText", "maxDate", "minDate", "nameFrom", "nameTo", "onChange", "refTo", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
3037
3427
|
/**
|
|
@@ -3059,7 +3449,7 @@ var CustomTextInput = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
3059
3449
|
showHelperInvalidText = _ref.showHelperInvalidText,
|
|
3060
3450
|
showRequiredLabel = _ref.showRequiredLabel,
|
|
3061
3451
|
value = _ref.value,
|
|
3062
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3452
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$10);
|
|
3063
3453
|
|
|
3064
3454
|
// The `react-datepicker` passes `disabled=false` to its custom
|
|
3065
3455
|
// input element. We don't need it, so remove it.
|
|
@@ -4381,8 +4771,8 @@ var baseStyleIcon = {
|
|
|
4381
4771
|
var baseStyleControl = {
|
|
4382
4772
|
border: "2px solid",
|
|
4383
4773
|
borderRadius: "sm",
|
|
4384
|
-
borderColor: "ui.
|
|
4385
|
-
backgroundColor: "ui.
|
|
4774
|
+
borderColor: "ui.gray.dark",
|
|
4775
|
+
backgroundColor: "ui.gray.xx-light-cool",
|
|
4386
4776
|
color: "ui.black",
|
|
4387
4777
|
outline: "none",
|
|
4388
4778
|
transitionProperty: "box-shadow",
|
|
@@ -4392,10 +4782,10 @@ var baseStyleControl = {
|
|
|
4392
4782
|
borderColor: "ui.focus",
|
|
4393
4783
|
color: "ui.focus",
|
|
4394
4784
|
_hover: {
|
|
4395
|
-
bg: "ui.
|
|
4785
|
+
bg: "ui.gray.xx-light-cool"
|
|
4396
4786
|
},
|
|
4397
4787
|
_disabled: {
|
|
4398
|
-
bg: "ui.
|
|
4788
|
+
bg: "ui.gray.xx-light-cool",
|
|
4399
4789
|
borderColor: "ui.disabled.primary",
|
|
4400
4790
|
svg: {
|
|
4401
4791
|
color: "ui.disabled.primary"
|
|
@@ -4415,7 +4805,6 @@ var baseStyleControl = {
|
|
|
4415
4805
|
borderColor: "ui.disabled.primary"
|
|
4416
4806
|
},
|
|
4417
4807
|
_focus: {
|
|
4418
|
-
borderColor: "ui.focus",
|
|
4419
4808
|
boxShadow: "none",
|
|
4420
4809
|
outlineColor: "ui.focus"
|
|
4421
4810
|
},
|
|
@@ -5559,17 +5948,17 @@ var baseStyleControl$1 = {
|
|
|
5559
5948
|
transitionDuration: "normal",
|
|
5560
5949
|
border: "2px solid",
|
|
5561
5950
|
borderRadius: "round",
|
|
5562
|
-
borderColor: "ui.
|
|
5563
|
-
backgroundColor: "ui.
|
|
5951
|
+
borderColor: "ui.gray.dark",
|
|
5952
|
+
backgroundColor: "ui.gray.xx-light-cool",
|
|
5564
5953
|
color: "ui.white",
|
|
5565
5954
|
outline: "none",
|
|
5566
5955
|
_checked: {
|
|
5567
|
-
bg: "ui.
|
|
5956
|
+
bg: "ui.gray.xx-light-cool",
|
|
5568
5957
|
borderColor: "ui.focus",
|
|
5569
5958
|
color: "ui.white",
|
|
5570
5959
|
_disabled: {
|
|
5571
5960
|
borderColor: "ui.disabled.primary",
|
|
5572
|
-
bg: "ui.
|
|
5961
|
+
bg: "ui.gray.xx-light-cool",
|
|
5573
5962
|
_before: {
|
|
5574
5963
|
bg: "ui.disabled.primary"
|
|
5575
5964
|
}
|
|
@@ -5584,7 +5973,7 @@ var baseStyleControl$1 = {
|
|
|
5584
5973
|
}
|
|
5585
5974
|
},
|
|
5586
5975
|
_hover: {
|
|
5587
|
-
bg: "ui.
|
|
5976
|
+
bg: "ui.gray.xx-light-cool"
|
|
5588
5977
|
},
|
|
5589
5978
|
_before: {
|
|
5590
5979
|
content: "\"\"",
|
|
@@ -5597,7 +5986,7 @@ var baseStyleControl$1 = {
|
|
|
5597
5986
|
},
|
|
5598
5987
|
_disabled: {
|
|
5599
5988
|
borderColor: "ui.disabled.primary",
|
|
5600
|
-
bg: "ui.
|
|
5989
|
+
bg: "ui.gray.xx-light-cool"
|
|
5601
5990
|
},
|
|
5602
5991
|
_focus: /*#__PURE__*/_extends({}, /*#__PURE__*/activeFocus(), {
|
|
5603
5992
|
boxShadow: "outline",
|
|
@@ -5612,6 +6001,8 @@ var baseStyleLabel$1 = checkboxRadioLabelStyles; // Style object for the Radio's
|
|
|
5612
6001
|
|
|
5613
6002
|
var baseStyleHelperErrorText$1 = checkboxRadioHelperErrorTextStyle;
|
|
5614
6003
|
var baseStyle$2 = {
|
|
6004
|
+
bg: "red",
|
|
6005
|
+
fontSize: "40px",
|
|
5615
6006
|
// Chakra-inserted elements in the Chakra Radio component
|
|
5616
6007
|
control: baseStyleControl$1,
|
|
5617
6008
|
label: baseStyleLabel$1,
|
|
@@ -6881,7 +7272,7 @@ var DSProvider = function DSProvider(_ref) {
|
|
|
6881
7272
|
}, children);
|
|
6882
7273
|
};
|
|
6883
7274
|
|
|
6884
|
-
var _excluded$
|
|
7275
|
+
var _excluded$11 = ["backgroundColor", "backgroundImageSrc", "foregroundColor", "heading", "heroType", "imageProps", "locationDetails", "subHeaderText"];
|
|
6885
7276
|
|
|
6886
7277
|
var heroSecondaryTypes = ["secondary", "secondaryBooksAndMore", "secondaryLocations", "secondaryResearch", "secondaryWhatsOn"];
|
|
6887
7278
|
var Hero$1 = /*#__PURE__*/chakra(function (props) {
|
|
@@ -6897,7 +7288,7 @@ var Hero$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
6897
7288
|
} : _props$imageProps,
|
|
6898
7289
|
locationDetails = props.locationDetails,
|
|
6899
7290
|
subHeaderText = props.subHeaderText,
|
|
6900
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
7291
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$11);
|
|
6901
7292
|
|
|
6902
7293
|
var styles = useMultiStyleConfig("Hero", {
|
|
6903
7294
|
variant: heroType
|
|
@@ -6994,11 +7385,11 @@ var Hero$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
6994
7385
|
}
|
|
6995
7386
|
});
|
|
6996
7387
|
|
|
6997
|
-
var _excluded$
|
|
7388
|
+
var _excluded$12 = ["align", "className"];
|
|
6998
7389
|
var HorizontalRule$1 = /*#__PURE__*/chakra(function (props) {
|
|
6999
7390
|
var align = props.align,
|
|
7000
7391
|
className = props.className,
|
|
7001
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
7392
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$12);
|
|
7002
7393
|
|
|
7003
7394
|
var styles = useStyleConfig("HorizontalRule", {
|
|
7004
7395
|
align: align
|
|
@@ -7016,7 +7407,7 @@ var HorizontalRule$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
7016
7407
|
}, rest));
|
|
7017
7408
|
});
|
|
7018
7409
|
|
|
7019
|
-
var _excluded$
|
|
7410
|
+
var _excluded$13 = ["children", "className", "id", "inline", "listItems", "noStyling", "title", "type"];
|
|
7020
7411
|
/**
|
|
7021
7412
|
* A component that renders list item `li` elements or description item `dt`
|
|
7022
7413
|
* and `dd` elements based on the `type` prop. Note that the `title` prop will
|
|
@@ -7035,7 +7426,7 @@ var List$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
7035
7426
|
title = props.title,
|
|
7036
7427
|
_props$type = props.type,
|
|
7037
7428
|
type = _props$type === void 0 ? "ul" : _props$type,
|
|
7038
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
7429
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$13);
|
|
7039
7430
|
|
|
7040
7431
|
var styles = useStyleConfig("List", {
|
|
7041
7432
|
inline: inline,
|
|
@@ -7142,32 +7533,32 @@ var List$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
7142
7533
|
return listElement;
|
|
7143
7534
|
});
|
|
7144
7535
|
|
|
7145
|
-
var _path$
|
|
7536
|
+
var _path$D, _path2$f, _path3$7;
|
|
7146
7537
|
|
|
7147
|
-
var _excluded$
|
|
7538
|
+
var _excluded$14 = ["title", "titleId"];
|
|
7148
7539
|
|
|
7149
|
-
function _extends$
|
|
7540
|
+
function _extends$J() { _extends$J = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$J.apply(this, arguments); }
|
|
7150
7541
|
|
|
7151
|
-
function _objectWithoutProperties$
|
|
7542
|
+
function _objectWithoutProperties$I(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$J(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7152
7543
|
|
|
7153
|
-
function _objectWithoutPropertiesLoose$
|
|
7544
|
+
function _objectWithoutPropertiesLoose$J(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7154
7545
|
|
|
7155
7546
|
function SvgLogoAppleAppStoreBlack(_ref) {
|
|
7156
7547
|
var title = _ref.title,
|
|
7157
7548
|
titleId = _ref.titleId,
|
|
7158
|
-
props = _objectWithoutProperties$
|
|
7549
|
+
props = _objectWithoutProperties$I(_ref, _excluded$14);
|
|
7159
7550
|
|
|
7160
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7551
|
+
return /*#__PURE__*/createElement("svg", _extends$J({
|
|
7161
7552
|
viewBox: "0 0 200 67",
|
|
7162
7553
|
fill: "none",
|
|
7163
7554
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7164
7555
|
"aria-labelledby": titleId
|
|
7165
7556
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7166
7557
|
id: titleId
|
|
7167
|
-
}, title) : null, _path$
|
|
7558
|
+
}, title) : null, _path$D || (_path$D = /*#__PURE__*/createElement("path", {
|
|
7168
7559
|
d: "M184.072 0H12.569c-1.12.017-2.238.118-3.343.301A11.248 11.248 0 006.05 1.357 10.147 10.147 0 003.344 3.35 10.166 10.166 0 001.37 6.064 11.306 11.306 0 00.318 9.245a20.444 20.444 0 00-.285 3.35V54.404c.003 1.123.098 2.243.285 3.35.19 1.113.545 2.191 1.053 3.2.507 1 1.173 1.91 1.972 2.696a10.147 10.147 0 002.708 1.976c1 .509 2.07.864 3.175 1.056 1.105.183 2.223.284 3.343.301h174.862a22.35 22.35 0 003.343-.301c1.11-.194 2.185-.55 3.192-1.056a10.425 10.425 0 002.708-1.976 11.2 11.2 0 001.972-2.697c.495-1.012.844-2.089 1.036-3.199.184-1.107.285-2.227.301-3.35V14.137v-1.541a22.388 22.388 0 00-.301-3.35 11.777 11.777 0 00-1.036-3.183c-.514-1-1.179-1.915-1.972-2.713-.79-.8-1.705-1.468-2.708-1.977a11.526 11.526 0 00-3.192-1.055 22.337 22.337 0 00-3.343-.301h-3.343L184.072 0z",
|
|
7169
7560
|
fill: "#B7B7B7"
|
|
7170
|
-
})), _path2$
|
|
7561
|
+
})), _path2$f || (_path2$f = /*#__PURE__*/createElement("path", {
|
|
7171
7562
|
d: "M14.107 65.526h-1.505c-1.045.018-2.09-.05-3.125-.201a9.832 9.832 0 01-2.792-1.005 8.626 8.626 0 01-2.323-1.675A8.694 8.694 0 012.691 60.3a9.714 9.714 0 01-.92-2.78 20.312 20.312 0 01-.267-3.133v-40.25-1.49c.008-1.05.097-2.098.268-3.133.153-.98.457-1.929.902-2.814a8.475 8.475 0 011.672-2.345 9.227 9.227 0 012.34-1.675 9.663 9.663 0 012.774-.921c1.039-.171 2.09-.261 3.142-.268h174.812a20.15 20.15 0 013.109.268c.971.168 1.911.478 2.791.921a9.182 9.182 0 014.028 4.02c.435.872.739 1.803.903 2.764.167 1.042.262 2.094.284 3.149v41.774a21.893 21.893 0 01-.284 3.099 9.806 9.806 0 01-.903 2.797 9.058 9.058 0 01-1.671 2.328 8.675 8.675 0 01-2.34 1.676 9.328 9.328 0 01-2.791 1.038 19.225 19.225 0 01-3.126.268H14.107v-.067z",
|
|
7172
7563
|
fill: "#000"
|
|
7173
7564
|
})), _path3$7 || (_path3$7 = /*#__PURE__*/createElement("path", {
|
|
@@ -7176,32 +7567,32 @@ function SvgLogoAppleAppStoreBlack(_ref) {
|
|
|
7176
7567
|
})));
|
|
7177
7568
|
}
|
|
7178
7569
|
|
|
7179
|
-
var _path$
|
|
7570
|
+
var _path$E, _path2$g, _path3$8;
|
|
7180
7571
|
|
|
7181
|
-
var _excluded
|
|
7572
|
+
var _excluded$15 = ["title", "titleId"];
|
|
7182
7573
|
|
|
7183
|
-
function _extends$
|
|
7574
|
+
function _extends$K() { _extends$K = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$K.apply(this, arguments); }
|
|
7184
7575
|
|
|
7185
|
-
function _objectWithoutProperties$
|
|
7576
|
+
function _objectWithoutProperties$J(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$K(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7186
7577
|
|
|
7187
|
-
function _objectWithoutPropertiesLoose$
|
|
7578
|
+
function _objectWithoutPropertiesLoose$K(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7188
7579
|
|
|
7189
7580
|
function SvgLogoAppleAppStoreWhite(_ref) {
|
|
7190
7581
|
var title = _ref.title,
|
|
7191
7582
|
titleId = _ref.titleId,
|
|
7192
|
-
props = _objectWithoutProperties$
|
|
7583
|
+
props = _objectWithoutProperties$J(_ref, _excluded$15);
|
|
7193
7584
|
|
|
7194
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7585
|
+
return /*#__PURE__*/createElement("svg", _extends$K({
|
|
7195
7586
|
viewBox: "0 0 200 67",
|
|
7196
7587
|
fill: "none",
|
|
7197
7588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7198
7589
|
"aria-labelledby": titleId
|
|
7199
7590
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7200
7591
|
id: titleId
|
|
7201
|
-
}, title) : null, _path$
|
|
7592
|
+
}, title) : null, _path$E || (_path$E = /*#__PURE__*/createElement("path", {
|
|
7202
7593
|
d: "M184.072 0H12.569a22.58 22.58 0 00-3.343.3A11.265 11.265 0 006.05 1.355a10.145 10.145 0 00-2.707 1.989A10.145 10.145 0 001.37 6.05C.863 7.05.509 8.121.318 9.226a20.358 20.358 0 00-.285 3.343V54.287c.003 1.12.098 2.238.285 3.343.19 1.11.545 2.186 1.053 3.192a10.346 10.346 0 001.972 2.691c.787.803 1.702 1.47 2.708 1.973 1 .507 2.07.861 3.175 1.052 1.105.184 2.223.284 3.343.301h174.862a22.389 22.389 0 003.343-.3 11.543 11.543 0 003.192-1.053 10.423 10.423 0 002.708-1.973 11.18 11.18 0 001.972-2.69 11.85 11.85 0 001.036-3.193c.184-1.105.285-2.223.301-3.343v-40.18-1.538a22.293 22.293 0 00-.301-3.343 11.734 11.734 0 00-1.036-3.176 10.91 10.91 0 00-1.972-2.707 10.423 10.423 0 00-2.708-1.972 11.544 11.544 0 00-3.192-1.053 22.383 22.383 0 00-3.343-.301h-3.343L184.072 0z",
|
|
7203
7594
|
fill: "#000"
|
|
7204
|
-
})), _path2$
|
|
7595
|
+
})), _path2$g || (_path2$g = /*#__PURE__*/createElement("path", {
|
|
7205
7596
|
d: "M14.107 65.385h-1.505a19.26 19.26 0 01-3.125-.2 9.845 9.845 0 01-2.792-1.003 8.624 8.624 0 01-2.323-1.672 8.674 8.674 0 01-1.671-2.34 9.678 9.678 0 01-.92-2.774 20.227 20.227 0 01-.267-3.126V14.107v-1.488c.008-1.047.097-2.092.268-3.125a9.51 9.51 0 01.902-2.808c.42-.87.985-1.662 1.672-2.34a9.226 9.226 0 012.34-1.672 9.678 9.678 0 012.774-.919c1.039-.17 2.09-.26 3.142-.267h174.812a20.19 20.19 0 013.109.267 10.02 10.02 0 012.791.92 9.172 9.172 0 014.028 4.01c.435.87.739 1.8.903 2.758.167 1.04.262 2.09.284 3.143V54.27a21.8 21.8 0 01-.284 3.092 9.771 9.771 0 01-.903 2.792 9.037 9.037 0 01-1.671 2.323 8.674 8.674 0 01-2.34 1.671 9.34 9.34 0 01-2.791 1.037 19.258 19.258 0 01-3.126.267H14.107v-.067z",
|
|
7206
7597
|
fill: "#fff"
|
|
7207
7598
|
})), _path3$8 || (_path3$8 = /*#__PURE__*/createElement("path", {
|
|
@@ -7210,83 +7601,83 @@ function SvgLogoAppleAppStoreWhite(_ref) {
|
|
|
7210
7601
|
})));
|
|
7211
7602
|
}
|
|
7212
7603
|
|
|
7213
|
-
var _path$
|
|
7604
|
+
var _path$F, _path2$h, _path3$9;
|
|
7214
7605
|
|
|
7215
|
-
var _excluded$
|
|
7606
|
+
var _excluded$16 = ["title", "titleId"];
|
|
7216
7607
|
|
|
7217
|
-
function _extends$
|
|
7608
|
+
function _extends$L() { _extends$L = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$L.apply(this, arguments); }
|
|
7218
7609
|
|
|
7219
|
-
function _objectWithoutProperties$
|
|
7610
|
+
function _objectWithoutProperties$K(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$L(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7220
7611
|
|
|
7221
|
-
function _objectWithoutPropertiesLoose$
|
|
7612
|
+
function _objectWithoutPropertiesLoose$L(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7222
7613
|
|
|
7223
7614
|
function SvgLogoBplBlack(_ref) {
|
|
7224
7615
|
var title = _ref.title,
|
|
7225
7616
|
titleId = _ref.titleId,
|
|
7226
|
-
props = _objectWithoutProperties$
|
|
7617
|
+
props = _objectWithoutProperties$K(_ref, _excluded$16);
|
|
7227
7618
|
|
|
7228
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7619
|
+
return /*#__PURE__*/createElement("svg", _extends$L({
|
|
7229
7620
|
viewBox: "0 0 328 120",
|
|
7230
7621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7231
7622
|
"aria-labelledby": titleId
|
|
7232
7623
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7233
7624
|
id: titleId
|
|
7234
|
-
}, title) : null, _path$
|
|
7625
|
+
}, title) : null, _path$F || (_path$F = /*#__PURE__*/createElement("path", {
|
|
7235
7626
|
d: "M277.596 75.851c0-8.969-.046-17.9-.046-26.856-.017-6.498 1.196-19.651-11.682-24.62a21.793 21.793 0 00-3.504-.857 26.033 26.033 0 00-9.896.857 22.683 22.683 0 00-6.023 3.272c-.433.31-1.281 1.032-1.839 1.528a37.42 37.42 0 00-3.353 3.46c-.026 0 .271-7.03.304-8.416h-47.732c-.104.227-6.666 24.573-7.274 26.683-.514-2.001-7.572-25.973-7.748-26.683h-25.154V0h-25.465v24.455c-.027.02-27.162 0-27.324 0-.047.048-12.675 10.12-13.121 10.465 0-12.655.003-34.704.003-34.885C79.384.035 70.97 0 62.612 0l.003 14.073a17.495 17.495 0 00-5.506-7.93c-.265-.22-.914-.769-1.43-1.115-3.792-2.545-5.283-3.012-9.714-4.107-1.293-.25-2.599-.428-3.912-.532-.714-.067-3.53-.218-4.05-.233a511.856 511.856 0 00-8.722-.078H0c0 25.333.016 50.656.047 75.97.716 0 34.158-.142 34.76-.142 1.346 0 2.306-.06 3.593-.06a54.641 54.641 0 008.575-.913 22.543 22.543 0 009.106-4.218c5.638-4.787 6.307-8.214 6.529-8.579l-.012 13.608h24.978V61.406c.345-.284 2.788-2.312 2.84-2.312.998 1.287 12.898 15.798 13.608 16.65h49.625V29.749c.026 0 19.356 42.224 19.62 42.873-.63 1.275-18.374 38.247-18.374 38.273h27.074c.365-.877 35.612-80.465 35.612-80.517.026 0-.02 18.05-.02 45.473h25.574v-22.78c0-5.166-.943-9.81 5.232-9.633 2.316.067 3.614 2.61 3.711 3.975v28.438h25.518zM37.066 55.633c-2.638 2.797-7.72 2.224-11.953 2.224V46.128c7.693 0 8.73.014 9.917.52a5.163 5.163 0 013.279 4.881c0 2.353-.525 3.341-1.244 4.104zm0-28.068c-2.638 2.798-7.72 2.224-11.953 2.224V18.06c7.693 0 8.73.014 9.917.521a5.161 5.161 0 013.279 4.88c0 2.353-.525 3.341-1.244 4.104zM62.55 48.67c-.521-2.765-4.888-7.078-7.423-8.7a28.146 28.146 0 00-2.657-1.48c-.37-.184-1.21-.522-1.237-.548a21.838 21.838 0 008.863-6.267 12.437 12.437 0 002.481-4.32c0 6.93-.002 21.315-.027 21.315zm65.599 21.213c-.026 0-20.484-26.864-20.51-26.864.717-.568 20.484-15.963 20.51-15.963v42.827z"
|
|
7236
|
-
})), _path2$
|
|
7627
|
+
})), _path2$h || (_path2$h = /*#__PURE__*/createElement("path", {
|
|
7237
7628
|
d: "M143.024 91.463a9.616 9.616 0 014.517.779c.238.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.676 4.676 0 00-2.07 2.289 6.187 6.187 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.235 6.235 0 002.336-1.557v6.619c-.851.416-1.737.755-2.648 1.012a11.662 11.662 0 01-8.177-1.479c-2.858-1.686-5.447-6.505-3.816-11.526a10.187 10.187 0 015.607-5.996 15.995 15.995 0 013.505-.78zM73.247 92.086h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.904 2.904 0 002.492.779 3.415 3.415 0 001.635-.623c.762-.778.7-2.44.7-3.972v-8.8h7.243c0 .646.153 11.962-.233 13.784-.358 1.991-2.237 4.1-5.218 5.062-.806.229-1.632.378-2.468.444a22.52 22.52 0 01-3.92-.027 11.616 11.616 0 01-4.733-1.325 7.206 7.206 0 01-2.825-3.407 20.363 20.363 0 01-.539-5.653v-8.878zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.908 7.908 0 00-6.896-6.605c-2.204-.324-13.694-.15-13.878-.15v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738.513-.944.88-1.96 1.087-3.015.061-.324.197-1.088.207-1.331.051-1.2.01-2.404-.126-3.597zm-8.4 4.367c-1.085.974-2.94.77-4.592.77v-5.567c3.061.041 3.627.287 4.075.518a2.552 2.552 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zM115.861 98.816a9.561 9.561 0 00-6.368-6.922 8.678 8.678 0 00-7.821 1.282V81.028H94.43v29.826h7.242v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.964 9.964 0 006.029-8.456 14.998 14.998 0 00-.296-3.55zm-10.803 6.252a3.607 3.607 0 01-2.008-.61 3.61 3.61 0 01-.548-5.562 3.614 3.614 0 115.112 5.113 3.612 3.612 0 01-2.556 1.059zM129.029 89.763a4.035 4.035 0 100-8.07 4.035 4.035 0 000 8.07zM116.931 81.058h7.23v29.799h-7.23s-.03-29.83 0-29.8zM125.368 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM223.562 89.763a4.034 4.034 0 100-8.068 4.034 4.034 0 000 8.068zM219.901 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM249.872 98.87a9.56 9.56 0 00-6.368-6.922 8.676 8.676 0 00-7.82 1.282V81.082h-7.243v29.826h7.243v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.967 9.967 0 006.029-8.456 14.997 14.997 0 00-.297-3.55zm-10.802 6.252a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM279.092 92.093l.001 1.063c-.231-.137-.575-.427-.913-.62a6.268 6.268 0 00-2.292-.862c-5.628-.588-8.082 2.038-9.532 3.934a9.069 9.069 0 00-.973 2.13h-.094v-5.645c-5.361-.32-6.973 2.197-7.024 2.197v-2.197h-7.305v18.761l7.267-.005c.159-5.709-.388-9.522.788-11.215a3.866 3.866 0 012.457-1.318 7.012 7.012 0 011.893.06c.525.149 1.038.337 1.535.563a24.451 24.451 0 00-.234 3.504c.538 4.526 2.694 6.926 6.074 8.411 2.552 1.06 7.019.69 8.241-1.151h.162c0 .39.008 1.004.008 1.151h7.242V92.093h-7.301zm-3.356 13.029a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM202.876 83.728v27.121h15.981v-6.719l-8.166.027v-20.43s-7.842-.026-7.815 0zM302.06 99.127c-.508-.165-1.39-.624-1.947-.737a6.497 6.497 0 00-1.736-.06 3.731 3.731 0 00-2.614 1.318c-1.176 1.693-.588 5.495-.747 11.204h-7.308V92.093h7.305v2.21c.051 0 1.693-2.21 7.024-2.21 0 .359.036 5.216.036 5.641l-.013 1.393zm-14.352 11.725V92.093h7.242"
|
|
7238
7629
|
})), _path3$9 || (_path3$9 = /*#__PURE__*/createElement("path", {
|
|
7239
7630
|
d: "M301.248 92.093l9.194 15.863-6.274 11.735h8.167l14.709-27.598h-8.206l-4.381 8.643-4.516-8.643s-8.679-.014-8.693 0z"
|
|
7240
7631
|
})));
|
|
7241
7632
|
}
|
|
7242
7633
|
|
|
7243
|
-
var _path$
|
|
7634
|
+
var _path$G, _path2$i, _path3$a;
|
|
7244
7635
|
|
|
7245
|
-
var _excluded$
|
|
7636
|
+
var _excluded$17 = ["title", "titleId"];
|
|
7246
7637
|
|
|
7247
|
-
function _extends$
|
|
7638
|
+
function _extends$M() { _extends$M = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$M.apply(this, arguments); }
|
|
7248
7639
|
|
|
7249
|
-
function _objectWithoutProperties$
|
|
7640
|
+
function _objectWithoutProperties$L(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$M(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7250
7641
|
|
|
7251
|
-
function _objectWithoutPropertiesLoose$
|
|
7642
|
+
function _objectWithoutPropertiesLoose$M(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7252
7643
|
|
|
7253
7644
|
function SvgLogoBplWhite(_ref) {
|
|
7254
7645
|
var title = _ref.title,
|
|
7255
7646
|
titleId = _ref.titleId,
|
|
7256
|
-
props = _objectWithoutProperties$
|
|
7647
|
+
props = _objectWithoutProperties$L(_ref, _excluded$17);
|
|
7257
7648
|
|
|
7258
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7649
|
+
return /*#__PURE__*/createElement("svg", _extends$M({
|
|
7259
7650
|
viewBox: "0 0 328 120",
|
|
7260
7651
|
fill: "#fff",
|
|
7261
7652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7262
7653
|
"aria-labelledby": titleId
|
|
7263
7654
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7264
7655
|
id: titleId
|
|
7265
|
-
}, title) : null, _path$
|
|
7656
|
+
}, title) : null, _path$G || (_path$G = /*#__PURE__*/createElement("path", {
|
|
7266
7657
|
d: "M277.596 75.851c0-8.969-.046-17.9-.046-26.856-.017-6.498 1.196-19.651-11.682-24.62a21.793 21.793 0 00-3.504-.857 26.033 26.033 0 00-9.896.857 22.683 22.683 0 00-6.023 3.272c-.433.31-1.281 1.032-1.839 1.528a37.42 37.42 0 00-3.353 3.46c-.026 0 .271-7.03.304-8.416h-47.732c-.104.227-6.666 24.573-7.274 26.683-.514-2.001-7.572-25.973-7.748-26.683h-25.154V0h-25.465v24.455c-.027.02-27.162 0-27.324 0-.047.048-12.675 10.12-13.121 10.465 0-12.655.003-34.704.003-34.885C79.384.035 70.97 0 62.612 0l.003 14.073a17.495 17.495 0 00-5.506-7.93c-.265-.22-.914-.769-1.43-1.115-3.792-2.545-5.283-3.012-9.714-4.107-1.293-.25-2.599-.428-3.912-.532-.714-.067-3.53-.218-4.05-.233a511.856 511.856 0 00-8.722-.078H0c0 25.333.016 50.656.047 75.97.716 0 34.158-.142 34.76-.142 1.346 0 2.306-.06 3.593-.06a54.641 54.641 0 008.575-.913 22.543 22.543 0 009.106-4.218c5.638-4.787 6.307-8.214 6.529-8.579l-.012 13.608h24.978V61.406c.345-.284 2.788-2.312 2.84-2.312.998 1.287 12.898 15.798 13.608 16.65h49.625V29.749c.026 0 19.356 42.224 19.62 42.873-.63 1.275-18.374 38.247-18.374 38.273h27.074c.365-.877 35.612-80.465 35.612-80.517.026 0-.02 18.05-.02 45.473h25.574v-22.78c0-5.166-.943-9.81 5.232-9.633 2.316.067 3.614 2.61 3.711 3.975v28.438h25.518zM37.066 55.633c-2.638 2.797-7.72 2.224-11.953 2.224V46.128c7.693 0 8.73.014 9.917.52a5.163 5.163 0 013.279 4.881c0 2.353-.525 3.341-1.244 4.104zm0-28.068c-2.638 2.798-7.72 2.224-11.953 2.224V18.06c7.693 0 8.73.014 9.917.521a5.161 5.161 0 013.279 4.88c0 2.353-.525 3.341-1.244 4.104zM62.55 48.67c-.521-2.765-4.888-7.078-7.423-8.7a28.146 28.146 0 00-2.657-1.48c-.37-.184-1.21-.522-1.237-.548a21.838 21.838 0 008.863-6.267 12.437 12.437 0 002.481-4.32c0 6.93-.002 21.315-.027 21.315zm65.599 21.213c-.026 0-20.484-26.864-20.51-26.864.717-.568 20.484-15.963 20.51-15.963v42.827z"
|
|
7267
|
-
})), _path2$
|
|
7658
|
+
})), _path2$i || (_path2$i = /*#__PURE__*/createElement("path", {
|
|
7268
7659
|
d: "M143.024 91.463a9.616 9.616 0 014.517.779c.238.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.676 4.676 0 00-2.07 2.289 6.187 6.187 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.235 6.235 0 002.336-1.557v6.619c-.851.416-1.737.755-2.648 1.012a11.662 11.662 0 01-8.177-1.479c-2.858-1.686-5.447-6.505-3.816-11.526a10.187 10.187 0 015.607-5.996 15.995 15.995 0 013.505-.78zM73.247 92.086h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.904 2.904 0 002.492.779 3.415 3.415 0 001.635-.623c.762-.778.7-2.44.7-3.972v-8.8h7.243c0 .646.153 11.962-.233 13.784-.358 1.991-2.237 4.1-5.218 5.062-.806.229-1.632.378-2.468.444a22.52 22.52 0 01-3.92-.027 11.616 11.616 0 01-4.733-1.325 7.206 7.206 0 01-2.825-3.407 20.363 20.363 0 01-.539-5.653v-8.878zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.908 7.908 0 00-6.896-6.605c-2.204-.324-13.694-.15-13.878-.15v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738.513-.944.88-1.96 1.087-3.015.061-.324.197-1.088.207-1.331.051-1.2.01-2.404-.126-3.597zm-8.4 4.367c-1.085.974-2.94.77-4.592.77v-5.567c3.061.041 3.627.287 4.075.518a2.552 2.552 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zM115.861 98.816a9.561 9.561 0 00-6.368-6.922 8.678 8.678 0 00-7.821 1.282V81.028H94.43v29.826h7.242v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.964 9.964 0 006.029-8.456 14.998 14.998 0 00-.296-3.55zm-10.803 6.252a3.607 3.607 0 01-2.008-.61 3.61 3.61 0 01-.548-5.562 3.614 3.614 0 115.112 5.113 3.612 3.612 0 01-2.556 1.059zM129.029 89.763a4.035 4.035 0 100-8.07 4.035 4.035 0 000 8.07zM116.931 81.058h7.23v29.799h-7.23s-.03-29.83 0-29.8zM125.368 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM223.562 89.763a4.034 4.034 0 100-8.068 4.034 4.034 0 000 8.068zM219.901 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM249.872 98.87a9.56 9.56 0 00-6.368-6.922 8.676 8.676 0 00-7.82 1.282V81.082h-7.243v29.826h7.243v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.967 9.967 0 006.029-8.456 14.997 14.997 0 00-.297-3.55zm-10.802 6.252a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM279.092 92.093l.001 1.063c-.231-.137-.575-.427-.913-.62a6.268 6.268 0 00-2.292-.862c-5.628-.588-8.082 2.038-9.532 3.934a9.069 9.069 0 00-.973 2.13h-.094v-5.645c-5.361-.32-6.973 2.197-7.024 2.197v-2.197h-7.305v18.761l7.267-.005c.159-5.709-.388-9.522.788-11.215a3.866 3.866 0 012.457-1.318 7.012 7.012 0 011.893.06c.525.149 1.038.337 1.535.563a24.451 24.451 0 00-.234 3.504c.538 4.526 2.694 6.926 6.074 8.411 2.552 1.06 7.019.69 8.241-1.151h.162c0 .39.008 1.004.008 1.151h7.242V92.093h-7.301zm-3.356 13.029a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM202.876 83.728v27.121h15.981v-6.719l-8.166.027v-20.43s-7.842-.026-7.815 0zM302.06 99.127c-.508-.165-1.39-.624-1.947-.737a6.497 6.497 0 00-1.736-.06 3.731 3.731 0 00-2.614 1.318c-1.176 1.693-.588 5.495-.747 11.204h-7.308V92.093h7.305v2.21c.051 0 1.693-2.21 7.024-2.21 0 .359.036 5.216.036 5.641l-.013 1.393zm-14.352 11.725V92.093h7.242"
|
|
7269
7660
|
})), _path3$a || (_path3$a = /*#__PURE__*/createElement("path", {
|
|
7270
7661
|
d: "M301.248 92.093l9.194 15.863-6.274 11.735h8.167l14.709-27.598h-8.206l-4.381 8.643-4.516-8.643s-8.679-.014-8.693 0z"
|
|
7271
7662
|
})));
|
|
7272
7663
|
}
|
|
7273
7664
|
|
|
7274
|
-
var _rect$2, _path$
|
|
7665
|
+
var _rect$2, _path$H;
|
|
7275
7666
|
|
|
7276
|
-
var _excluded$
|
|
7667
|
+
var _excluded$18 = ["title", "titleId"];
|
|
7277
7668
|
|
|
7278
|
-
function _extends$
|
|
7669
|
+
function _extends$N() { _extends$N = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$N.apply(this, arguments); }
|
|
7279
7670
|
|
|
7280
|
-
function _objectWithoutProperties$
|
|
7671
|
+
function _objectWithoutProperties$M(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$N(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7281
7672
|
|
|
7282
|
-
function _objectWithoutPropertiesLoose$
|
|
7673
|
+
function _objectWithoutPropertiesLoose$N(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7283
7674
|
|
|
7284
7675
|
function SvgLogoCleverBadgeColor(_ref) {
|
|
7285
7676
|
var title = _ref.title,
|
|
7286
7677
|
titleId = _ref.titleId,
|
|
7287
|
-
props = _objectWithoutProperties$
|
|
7678
|
+
props = _objectWithoutProperties$M(_ref, _excluded$18);
|
|
7288
7679
|
|
|
7289
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7680
|
+
return /*#__PURE__*/createElement("svg", _extends$N({
|
|
7290
7681
|
viewBox: "0 0 118 119",
|
|
7291
7682
|
fill: "none",
|
|
7292
7683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -7299,7 +7690,7 @@ function SvgLogoCleverBadgeColor(_ref) {
|
|
|
7299
7690
|
height: 118,
|
|
7300
7691
|
rx: 20,
|
|
7301
7692
|
fill: "#436CF2"
|
|
7302
|
-
})), _path$
|
|
7693
|
+
})), _path$H || (_path$H = /*#__PURE__*/createElement("path", {
|
|
7303
7694
|
fillRule: "evenodd",
|
|
7304
7695
|
clipRule: "evenodd",
|
|
7305
7696
|
d: "M17.177 60.223c0-26.536 19.426-48.07 47.275-48.07 17.078 0 27.311 5.817 35.733 14.254L87.502 41.342c-6.979-6.464-14.125-10.444-23.184-10.444-15.267 0-26.305 12.927-26.305 28.78 0 16.126 10.736 29.325 26.305 29.325 10.367 0 16.709-4.218 23.822-10.818l12.682 13.064c-9.327 10.171-19.695 16.499-37.175 16.499-26.675 0-46.47-20.99-46.47-47.525z",
|
|
@@ -7307,90 +7698,90 @@ function SvgLogoCleverBadgeColor(_ref) {
|
|
|
7307
7698
|
})));
|
|
7308
7699
|
}
|
|
7309
7700
|
|
|
7310
|
-
var _path$
|
|
7701
|
+
var _path$I;
|
|
7311
7702
|
|
|
7312
|
-
var _excluded$
|
|
7703
|
+
var _excluded$19 = ["title", "titleId"];
|
|
7313
7704
|
|
|
7314
|
-
function _extends$
|
|
7705
|
+
function _extends$O() { _extends$O = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$O.apply(this, arguments); }
|
|
7315
7706
|
|
|
7316
|
-
function _objectWithoutProperties$
|
|
7707
|
+
function _objectWithoutProperties$N(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$O(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7317
7708
|
|
|
7318
|
-
function _objectWithoutPropertiesLoose$
|
|
7709
|
+
function _objectWithoutPropertiesLoose$O(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7319
7710
|
|
|
7320
7711
|
function SvgLogoCleverColor(_ref) {
|
|
7321
7712
|
var title = _ref.title,
|
|
7322
7713
|
titleId = _ref.titleId,
|
|
7323
|
-
props = _objectWithoutProperties$
|
|
7714
|
+
props = _objectWithoutProperties$N(_ref, _excluded$19);
|
|
7324
7715
|
|
|
7325
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7716
|
+
return /*#__PURE__*/createElement("svg", _extends$O({
|
|
7326
7717
|
viewBox: "0 0 312 88",
|
|
7327
7718
|
fill: "#436CF2",
|
|
7328
7719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7329
7720
|
"aria-labelledby": titleId
|
|
7330
7721
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7331
7722
|
id: titleId
|
|
7332
|
-
}, title) : null, _path$
|
|
7723
|
+
}, title) : null, _path$I || (_path$I = /*#__PURE__*/createElement("path", {
|
|
7333
7724
|
fillRule: "evenodd",
|
|
7334
7725
|
clipRule: "evenodd",
|
|
7335
7726
|
d: "M0 44.275C0 20.342 17.667.92 42.993.92c15.532 0 24.838 5.247 32.497 12.856l-11.534 13.47c-6.347-5.83-12.846-9.42-21.085-9.42-13.883 0-23.922 11.66-23.922 25.958 0 14.543 9.764 26.448 23.922 26.448 9.43 0 15.196-3.805 21.665-9.757L76.07 72.257c-8.483 9.174-17.911 14.88-33.809 14.88C18.003 87.138 0 68.208 0 44.276zM77.718 0H95.63v86.954H77.718V0zM128.828 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.514 24.884h-43.94c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.375-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.948 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.244 4.51zM193.638 86.8h-16.264l-24.838-64.31h18.949l14.127 42.772 14.25-42.772h18.614L193.638 86.8zM241.665 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.513 24.884h-43.939c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.374-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.949 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.245 4.51zM311.054 40.87c-11.9 0-19.193 7.27-19.193 22.52v23.595H273.95V23.104h17.911V35.96c3.662-8.806 9.551-14.544 20.139-14.053v18.931h-.946"
|
|
7336
7727
|
})));
|
|
7337
7728
|
}
|
|
7338
7729
|
|
|
7339
|
-
var _path$
|
|
7730
|
+
var _path$J;
|
|
7340
7731
|
|
|
7341
|
-
var _excluded$
|
|
7732
|
+
var _excluded$1a = ["title", "titleId"];
|
|
7342
7733
|
|
|
7343
|
-
function _extends$
|
|
7734
|
+
function _extends$P() { _extends$P = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$P.apply(this, arguments); }
|
|
7344
7735
|
|
|
7345
|
-
function _objectWithoutProperties$
|
|
7736
|
+
function _objectWithoutProperties$O(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$P(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7346
7737
|
|
|
7347
|
-
function _objectWithoutPropertiesLoose$
|
|
7738
|
+
function _objectWithoutPropertiesLoose$P(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7348
7739
|
|
|
7349
7740
|
function SvgLogoCleverWhite(_ref) {
|
|
7350
7741
|
var title = _ref.title,
|
|
7351
7742
|
titleId = _ref.titleId,
|
|
7352
|
-
props = _objectWithoutProperties$
|
|
7743
|
+
props = _objectWithoutProperties$O(_ref, _excluded$1a);
|
|
7353
7744
|
|
|
7354
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7745
|
+
return /*#__PURE__*/createElement("svg", _extends$P({
|
|
7355
7746
|
viewBox: "0 0 312 88",
|
|
7356
7747
|
fill: "#fff",
|
|
7357
7748
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7358
7749
|
"aria-labelledby": titleId
|
|
7359
7750
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7360
7751
|
id: titleId
|
|
7361
|
-
}, title) : null, _path$
|
|
7752
|
+
}, title) : null, _path$J || (_path$J = /*#__PURE__*/createElement("path", {
|
|
7362
7753
|
fillRule: "evenodd",
|
|
7363
7754
|
clipRule: "evenodd",
|
|
7364
7755
|
d: "M0 44.275C0 20.342 17.667.92 42.993.92c15.532 0 24.838 5.247 32.497 12.856l-11.534 13.47c-6.347-5.83-12.846-9.42-21.085-9.42-13.883 0-23.922 11.66-23.922 25.958 0 14.543 9.764 26.448 23.922 26.448 9.43 0 15.196-3.805 21.665-9.757L76.07 72.257c-8.483 9.174-17.911 14.88-33.809 14.88C18.003 87.138 0 68.208 0 44.276zM77.718 0H95.63v86.954H77.718V0zM128.828 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.514 24.884h-43.94c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.375-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.948 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.244 4.51zM193.638 86.8h-16.264l-24.838-64.31h18.949l14.127 42.772 14.25-42.772h18.614L193.638 86.8zM241.665 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.513 24.884h-43.939c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.374-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.949 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.245 4.51zM311.054 40.87c-11.9 0-19.193 7.27-19.193 22.52v23.595H273.95V23.104h17.911V35.96c3.662-8.806 9.551-14.544 20.139-14.053v18.931h-.946"
|
|
7365
7756
|
})));
|
|
7366
7757
|
}
|
|
7367
7758
|
|
|
7368
|
-
var _path$
|
|
7759
|
+
var _path$K, _path2$j, _path3$b, _path4$1, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13;
|
|
7369
7760
|
|
|
7370
|
-
var _excluded$
|
|
7761
|
+
var _excluded$1b = ["title", "titleId"];
|
|
7371
7762
|
|
|
7372
|
-
function _extends$
|
|
7763
|
+
function _extends$Q() { _extends$Q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Q.apply(this, arguments); }
|
|
7373
7764
|
|
|
7374
|
-
function _objectWithoutProperties$
|
|
7765
|
+
function _objectWithoutProperties$P(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Q(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7375
7766
|
|
|
7376
|
-
function _objectWithoutPropertiesLoose$
|
|
7767
|
+
function _objectWithoutPropertiesLoose$Q(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7377
7768
|
|
|
7378
7769
|
function SvgLogoFirstbookColor(_ref) {
|
|
7379
7770
|
var title = _ref.title,
|
|
7380
7771
|
titleId = _ref.titleId,
|
|
7381
|
-
props = _objectWithoutProperties$
|
|
7772
|
+
props = _objectWithoutProperties$P(_ref, _excluded$1b);
|
|
7382
7773
|
|
|
7383
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7774
|
+
return /*#__PURE__*/createElement("svg", _extends$Q({
|
|
7384
7775
|
viewBox: "0 0 172 152",
|
|
7385
7776
|
fill: "none",
|
|
7386
7777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7387
7778
|
"aria-labelledby": titleId
|
|
7388
7779
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7389
7780
|
id: titleId
|
|
7390
|
-
}, title) : null, _path$
|
|
7781
|
+
}, title) : null, _path$K || (_path$K = /*#__PURE__*/createElement("path", {
|
|
7391
7782
|
d: "M154.516 34.244l-46.123 6.988 44.085-9.731a.68.68 0 00.411-.344.736.736 0 00.057-.547.726.726 0 00-.289-.395.677.677 0 00-.463-.112l-46.156 9.784 43.418-12.51a.655.655 0 00.237-.123.705.705 0 00.254-.474.715.715 0 00-.024-.276.714.714 0 00-.317-.434.66.66 0 00-.518-.073l-43.601 12.23 40.546-14.501a.696.696 0 00.396-.36.749.749 0 00.038-.549.712.712 0 00-.345-.415.658.658 0 00-.524-.039l-42.666 14.659 39.026-16.965a.704.704 0 00.373-.386.753.753 0 00.003-.549.705.705 0 00-.369-.39.658.658 0 00-.525-.003L99.893 36.393l37.172-19.813a.714.714 0 00.319-.435.749.749 0 00-.068-.543.71.71 0 00-.382-.317.673.673 0 00-.487.02l-38.575 19.97 33.95-21.822a.76.76 0 00.233-.891.674.674 0 00-.697-.344.665.665 0 00-.254.1L94.766 35.03l31.144-24.46a.715.715 0 00.253-.746.73.73 0 00-.119-.25.694.694 0 00-.194-.193.646.646 0 00-.758.036L92.128 34.593l27.42-26.609a.757.757 0 00-.038-.976.68.68 0 00-.931-.072L89.523 34.331l23.262-28.583a.745.745 0 00-.067-1.013.668.668 0 00-.969.07l-24.08 28.617 18.486-29.404a.752.752 0 00.005-.797.676.676 0 00-.702-.31.697.697 0 00-.438.302l-20.04 30.49 14.111-31.1a.746.746 0 00-.03-.544.697.697 0 00-.387-.364.656.656 0 00-.447-.005.69.69 0 00-.355.284L83.195 32.76l9.168-31.134a.73.73 0 00-.084-.528.687.687 0 00-.417-.31.658.658 0 00-.456.066.705.705 0 00-.312.353l-10.02 31.308 4.61-31.448a.742.742 0 00-.122-.534.662.662 0 00-.957-.16.722.722 0 00-.274.467l-5.444 32.2L78.719.715a.733.733 0 00-.2-.506.67.67 0 00-.485-.21.67.67 0 00-.484.21.733.733 0 00-.2.506l-.518 32.532L71.605.786a.72.72 0 00-.278-.444.661.661 0 00-.932.145.74.74 0 00-.143.509l4.459 32.531L64.274 1.24a.704.704 0 00-.341-.372.657.657 0 00-.492-.036.69.69 0 00-.387.32.745.745 0 00-.083.508l9.502 31.867L57.11 2.08a.69.69 0 00-.416-.334.658.658 0 00-.519.072.73.73 0 00-.303.4.766.766 0 00.02.509l14.444 31.098L49.93 3.39a.706.706 0 00-.194-.196.672.672 0 00-.52-.099.675.675 0 00-.247.112.741.741 0 00-.282.746c.02.093.056.18.107.259l19.054 29.578L43.033 5.05a.69.69 0 00-.474-.236.658.658 0 00-.495.184.716.716 0 00-.225.496.75.75 0 00.175.517L65.66 34.296 36.253 7.181a.668.668 0 00-.968.052.738.738 0 00.05 1.013L62.42 34 30.175 9.54a.656.656 0 00-.508-.133.65.65 0 00-.25.098.681.681 0 00-.194.193.712.712 0 00-.136.527.72.72 0 00.27.468l30.776 23.971-35.72-22.38a.65.65 0 00-.517-.087.657.657 0 00-.241.12.691.691 0 00-.177.21.745.745 0 00-.083.537c.041.183.149.342.3.442L58.08 35.624l-39.126-20.18a.657.657 0 00-.504-.015.696.696 0 00-.378.35.747.747 0 00-.046.525c.049.175.16.324.31.416l36.788 19.498L14.16 18.747a.659.659 0 00-.746.16.721.721 0 00-.198.508.746.746 0 00.204.505c.063.066.14.119.223.154l39.81 17.454L9.835 22.503a.66.66 0 00-.735.21.727.727 0 00-.167.522c.007.094.03.186.071.27.082.171.224.3.397.36L51.399 38.77 6.128 26.539a.66.66 0 00-.49.1.715.715 0 00-.295.42.746.746 0 00.057.52c.08.158.215.28.377.34l43.819 12.23-46.49-9.487a.658.658 0 00-.523.06.73.73 0 00-.352.709.743.743 0 00.253.482c.07.059.15.103.237.13h.1l43.535 9.294-45.421-6.64a.663.663 0 00-.487.15.742.742 0 00-.138.975c.1.15.252.255.424.291l32.68 5.084 44.303 5.434 37.84-4.7 39.159-6.272a.666.666 0 00.466-.258.732.732 0 00.126-.248c.026-.091.035-.186.026-.28a.742.742 0 00-.247-.487.674.674 0 00-.505-.16l-.066.018z",
|
|
7392
7783
|
fill: "#ED1C24"
|
|
7393
|
-
})), _path2$
|
|
7784
|
+
})), _path2$j || (_path2$j = /*#__PURE__*/createElement("path", {
|
|
7394
7785
|
d: "M167.41 138.023a1.828 1.828 0 00-.484-.402c.338-.034.652-.195.885-.454.205-.246.313-.565.3-.891a1.428 1.428 0 00-.2-.734 1.032 1.032 0 00-.518-.454 3.043 3.043 0 00-1.052-.122h-1.67v4.699h.819v-1.747h.167c.133-.016.267-.016.4 0a.756.756 0 01.234.175c.15.192.284.402.418.612l.567.891h1.119l-.551-.891a4.553 4.553 0 00-.434-.682zm-1.336-.908h-.518v-1.276h.552c.195.106.414.154.634.14a.494.494 0 01.334.175.559.559 0 01.117.367.586.586 0 010 .332.446.446 0 01-.234.192 3.21 3.21 0 01-.885.07z",
|
|
7395
7786
|
fill: "#00ACE4"
|
|
7396
7787
|
})), _path3$b || (_path3$b = /*#__PURE__*/createElement("path", {
|
|
@@ -7431,20 +7822,20 @@ function SvgLogoFirstbookColor(_ref) {
|
|
|
7431
7822
|
|
|
7432
7823
|
var _g$3;
|
|
7433
7824
|
|
|
7434
|
-
var _excluded$
|
|
7825
|
+
var _excluded$1c = ["title", "titleId"];
|
|
7435
7826
|
|
|
7436
|
-
function _extends$
|
|
7827
|
+
function _extends$R() { _extends$R = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$R.apply(this, arguments); }
|
|
7437
7828
|
|
|
7438
|
-
function _objectWithoutProperties$
|
|
7829
|
+
function _objectWithoutProperties$Q(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$R(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7439
7830
|
|
|
7440
|
-
function _objectWithoutPropertiesLoose$
|
|
7831
|
+
function _objectWithoutPropertiesLoose$R(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7441
7832
|
|
|
7442
7833
|
function SvgLogoFirstbookColorNegative(_ref) {
|
|
7443
7834
|
var title = _ref.title,
|
|
7444
7835
|
titleId = _ref.titleId,
|
|
7445
|
-
props = _objectWithoutProperties$
|
|
7836
|
+
props = _objectWithoutProperties$Q(_ref, _excluded$1c);
|
|
7446
7837
|
|
|
7447
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7838
|
+
return /*#__PURE__*/createElement("svg", _extends$R({
|
|
7448
7839
|
viewBox: "0 0 170 150",
|
|
7449
7840
|
fill: "none",
|
|
7450
7841
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -7500,20 +7891,20 @@ function SvgLogoFirstbookColorNegative(_ref) {
|
|
|
7500
7891
|
|
|
7501
7892
|
var _g$4, _defs;
|
|
7502
7893
|
|
|
7503
|
-
var _excluded$
|
|
7894
|
+
var _excluded$1d = ["title", "titleId"];
|
|
7504
7895
|
|
|
7505
|
-
function _extends$
|
|
7896
|
+
function _extends$S() { _extends$S = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$S.apply(this, arguments); }
|
|
7506
7897
|
|
|
7507
|
-
function _objectWithoutProperties$
|
|
7898
|
+
function _objectWithoutProperties$R(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$S(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7508
7899
|
|
|
7509
|
-
function _objectWithoutPropertiesLoose$
|
|
7900
|
+
function _objectWithoutPropertiesLoose$S(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7510
7901
|
|
|
7511
7902
|
function SvgLogoGooglePlayBlack(_ref) {
|
|
7512
7903
|
var title = _ref.title,
|
|
7513
7904
|
titleId = _ref.titleId,
|
|
7514
|
-
props = _objectWithoutProperties$
|
|
7905
|
+
props = _objectWithoutProperties$R(_ref, _excluded$1d);
|
|
7515
7906
|
|
|
7516
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7907
|
+
return /*#__PURE__*/createElement("svg", _extends$S({
|
|
7517
7908
|
viewBox: "0 0 200 60",
|
|
7518
7909
|
fill: "none",
|
|
7519
7910
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -7644,106 +8035,106 @@ function SvgLogoGooglePlayBlack(_ref) {
|
|
|
7644
8035
|
})))));
|
|
7645
8036
|
}
|
|
7646
8037
|
|
|
7647
|
-
var _path$
|
|
8038
|
+
var _path$L, _path2$k;
|
|
7648
8039
|
|
|
7649
|
-
var _excluded$
|
|
8040
|
+
var _excluded$1e = ["title", "titleId"];
|
|
7650
8041
|
|
|
7651
|
-
function _extends$
|
|
8042
|
+
function _extends$T() { _extends$T = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$T.apply(this, arguments); }
|
|
7652
8043
|
|
|
7653
|
-
function _objectWithoutProperties$
|
|
8044
|
+
function _objectWithoutProperties$S(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$T(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7654
8045
|
|
|
7655
|
-
function _objectWithoutPropertiesLoose$
|
|
8046
|
+
function _objectWithoutPropertiesLoose$T(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7656
8047
|
|
|
7657
8048
|
function SvgLogoLpaColor(_ref) {
|
|
7658
8049
|
var title = _ref.title,
|
|
7659
8050
|
titleId = _ref.titleId,
|
|
7660
|
-
props = _objectWithoutProperties$
|
|
8051
|
+
props = _objectWithoutProperties$S(_ref, _excluded$1e);
|
|
7661
8052
|
|
|
7662
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8053
|
+
return /*#__PURE__*/createElement("svg", _extends$T({
|
|
7663
8054
|
viewBox: "0 0 186 74",
|
|
7664
8055
|
fill: "none",
|
|
7665
8056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7666
8057
|
"aria-labelledby": titleId
|
|
7667
8058
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7668
8059
|
id: titleId
|
|
7669
|
-
}, title) : null, _path$
|
|
8060
|
+
}, title) : null, _path$L || (_path$L = /*#__PURE__*/createElement("path", {
|
|
7670
8061
|
d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476z",
|
|
7671
8062
|
fill: "#008375"
|
|
7672
|
-
})), _path2$
|
|
8063
|
+
})), _path2$k || (_path2$k = /*#__PURE__*/createElement("path", {
|
|
7673
8064
|
d: "M84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z",
|
|
7674
8065
|
fill: "#000"
|
|
7675
8066
|
})));
|
|
7676
8067
|
}
|
|
7677
8068
|
|
|
7678
|
-
var _path$
|
|
8069
|
+
var _path$M;
|
|
7679
8070
|
|
|
7680
|
-
var _excluded$
|
|
8071
|
+
var _excluded$1f = ["title", "titleId"];
|
|
7681
8072
|
|
|
7682
|
-
function _extends$
|
|
8073
|
+
function _extends$U() { _extends$U = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$U.apply(this, arguments); }
|
|
7683
8074
|
|
|
7684
|
-
function _objectWithoutProperties$
|
|
8075
|
+
function _objectWithoutProperties$T(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$U(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7685
8076
|
|
|
7686
|
-
function _objectWithoutPropertiesLoose$
|
|
8077
|
+
function _objectWithoutPropertiesLoose$U(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7687
8078
|
|
|
7688
8079
|
function SvgLogoLpaBlack(_ref) {
|
|
7689
8080
|
var title = _ref.title,
|
|
7690
8081
|
titleId = _ref.titleId,
|
|
7691
|
-
props = _objectWithoutProperties$
|
|
8082
|
+
props = _objectWithoutProperties$T(_ref, _excluded$1f);
|
|
7692
8083
|
|
|
7693
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8084
|
+
return /*#__PURE__*/createElement("svg", _extends$U({
|
|
7694
8085
|
viewBox: "0 0 186 74",
|
|
7695
8086
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7696
8087
|
"aria-labelledby": titleId
|
|
7697
8088
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7698
8089
|
id: titleId
|
|
7699
|
-
}, title) : null, _path$
|
|
8090
|
+
}, title) : null, _path$M || (_path$M = /*#__PURE__*/createElement("path", {
|
|
7700
8091
|
d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"
|
|
7701
8092
|
})));
|
|
7702
8093
|
}
|
|
7703
8094
|
|
|
7704
|
-
var _path$
|
|
8095
|
+
var _path$N;
|
|
7705
8096
|
|
|
7706
|
-
var _excluded$
|
|
8097
|
+
var _excluded$1g = ["title", "titleId"];
|
|
7707
8098
|
|
|
7708
|
-
function _extends$
|
|
8099
|
+
function _extends$V() { _extends$V = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$V.apply(this, arguments); }
|
|
7709
8100
|
|
|
7710
|
-
function _objectWithoutProperties$
|
|
8101
|
+
function _objectWithoutProperties$U(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$V(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7711
8102
|
|
|
7712
|
-
function _objectWithoutPropertiesLoose$
|
|
8103
|
+
function _objectWithoutPropertiesLoose$V(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7713
8104
|
|
|
7714
8105
|
function SvgLogoLpaWhite(_ref) {
|
|
7715
8106
|
var title = _ref.title,
|
|
7716
8107
|
titleId = _ref.titleId,
|
|
7717
|
-
props = _objectWithoutProperties$
|
|
8108
|
+
props = _objectWithoutProperties$U(_ref, _excluded$1g);
|
|
7718
8109
|
|
|
7719
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8110
|
+
return /*#__PURE__*/createElement("svg", _extends$V({
|
|
7720
8111
|
viewBox: "0 0 186 74",
|
|
7721
8112
|
fill: "#fff",
|
|
7722
8113
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7723
8114
|
"aria-labelledby": titleId
|
|
7724
8115
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7725
8116
|
id: titleId
|
|
7726
|
-
}, title) : null, _path$
|
|
8117
|
+
}, title) : null, _path$N || (_path$N = /*#__PURE__*/createElement("path", {
|
|
7727
8118
|
d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"
|
|
7728
8119
|
})));
|
|
7729
8120
|
}
|
|
7730
8121
|
|
|
7731
8122
|
var _g$5;
|
|
7732
8123
|
|
|
7733
|
-
var _excluded$
|
|
8124
|
+
var _excluded$1h = ["title", "titleId"];
|
|
7734
8125
|
|
|
7735
|
-
function _extends$
|
|
8126
|
+
function _extends$W() { _extends$W = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$W.apply(this, arguments); }
|
|
7736
8127
|
|
|
7737
|
-
function _objectWithoutProperties$
|
|
8128
|
+
function _objectWithoutProperties$V(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$W(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7738
8129
|
|
|
7739
|
-
function _objectWithoutPropertiesLoose$
|
|
8130
|
+
function _objectWithoutPropertiesLoose$W(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7740
8131
|
|
|
7741
8132
|
function SvgLogoMlnBlack(_ref) {
|
|
7742
8133
|
var title = _ref.title,
|
|
7743
8134
|
titleId = _ref.titleId,
|
|
7744
|
-
props = _objectWithoutProperties$
|
|
8135
|
+
props = _objectWithoutProperties$V(_ref, _excluded$1h);
|
|
7745
8136
|
|
|
7746
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8137
|
+
return /*#__PURE__*/createElement("svg", _extends$W({
|
|
7747
8138
|
viewBox: "0 0 300 71",
|
|
7748
8139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7749
8140
|
"aria-labelledby": titleId
|
|
@@ -7758,20 +8149,20 @@ function SvgLogoMlnBlack(_ref) {
|
|
|
7758
8149
|
|
|
7759
8150
|
var _g$6;
|
|
7760
8151
|
|
|
7761
|
-
var _excluded$
|
|
8152
|
+
var _excluded$1i = ["title", "titleId"];
|
|
7762
8153
|
|
|
7763
|
-
function _extends$
|
|
8154
|
+
function _extends$X() { _extends$X = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$X.apply(this, arguments); }
|
|
7764
8155
|
|
|
7765
|
-
function _objectWithoutProperties$
|
|
8156
|
+
function _objectWithoutProperties$W(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$X(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7766
8157
|
|
|
7767
|
-
function _objectWithoutPropertiesLoose$
|
|
8158
|
+
function _objectWithoutPropertiesLoose$X(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7768
8159
|
|
|
7769
8160
|
function SvgLogoMlnColor(_ref) {
|
|
7770
8161
|
var title = _ref.title,
|
|
7771
8162
|
titleId = _ref.titleId,
|
|
7772
|
-
props = _objectWithoutProperties$
|
|
8163
|
+
props = _objectWithoutProperties$W(_ref, _excluded$1i);
|
|
7773
8164
|
|
|
7774
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8165
|
+
return /*#__PURE__*/createElement("svg", _extends$X({
|
|
7775
8166
|
viewBox: "0 0 300 71",
|
|
7776
8167
|
fill: "#C60917",
|
|
7777
8168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -7787,20 +8178,20 @@ function SvgLogoMlnColor(_ref) {
|
|
|
7787
8178
|
|
|
7788
8179
|
var _g$7;
|
|
7789
8180
|
|
|
7790
|
-
var _excluded$
|
|
8181
|
+
var _excluded$1j = ["title", "titleId"];
|
|
7791
8182
|
|
|
7792
|
-
function _extends$
|
|
8183
|
+
function _extends$Y() { _extends$Y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Y.apply(this, arguments); }
|
|
7793
8184
|
|
|
7794
|
-
function _objectWithoutProperties$
|
|
8185
|
+
function _objectWithoutProperties$X(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Y(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7795
8186
|
|
|
7796
|
-
function _objectWithoutPropertiesLoose$
|
|
8187
|
+
function _objectWithoutPropertiesLoose$Y(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7797
8188
|
|
|
7798
8189
|
function SvgLogoMlnWhite(_ref) {
|
|
7799
8190
|
var title = _ref.title,
|
|
7800
8191
|
titleId = _ref.titleId,
|
|
7801
|
-
props = _objectWithoutProperties$
|
|
8192
|
+
props = _objectWithoutProperties$X(_ref, _excluded$1j);
|
|
7802
8193
|
|
|
7803
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8194
|
+
return /*#__PURE__*/createElement("svg", _extends$Y({
|
|
7804
8195
|
viewBox: "0 0 300 71",
|
|
7805
8196
|
fill: "#fff",
|
|
7806
8197
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -7814,30 +8205,30 @@ function SvgLogoMlnWhite(_ref) {
|
|
|
7814
8205
|
}))));
|
|
7815
8206
|
}
|
|
7816
8207
|
|
|
7817
|
-
var _path$
|
|
8208
|
+
var _path$O, _path2$l, _path3$c, _path4$2, _path5$1, _path6$1, _path7$1;
|
|
7818
8209
|
|
|
7819
|
-
var _excluded$
|
|
8210
|
+
var _excluded$1k = ["title", "titleId"];
|
|
7820
8211
|
|
|
7821
|
-
function _extends$
|
|
8212
|
+
function _extends$Z() { _extends$Z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Z.apply(this, arguments); }
|
|
7822
8213
|
|
|
7823
|
-
function _objectWithoutProperties$
|
|
8214
|
+
function _objectWithoutProperties$Y(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Z(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7824
8215
|
|
|
7825
|
-
function _objectWithoutPropertiesLoose$
|
|
8216
|
+
function _objectWithoutPropertiesLoose$Z(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7826
8217
|
|
|
7827
8218
|
function SvgLogoNyplFullBlack(_ref) {
|
|
7828
8219
|
var title = _ref.title,
|
|
7829
8220
|
titleId = _ref.titleId,
|
|
7830
|
-
props = _objectWithoutProperties$
|
|
8221
|
+
props = _objectWithoutProperties$Y(_ref, _excluded$1k);
|
|
7831
8222
|
|
|
7832
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8223
|
+
return /*#__PURE__*/createElement("svg", _extends$Z({
|
|
7833
8224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7834
8225
|
viewBox: "0 0 966.787 543.733",
|
|
7835
8226
|
"aria-labelledby": titleId
|
|
7836
8227
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7837
8228
|
id: titleId
|
|
7838
|
-
}, title) : null, _path$
|
|
8229
|
+
}, title) : null, _path$O || (_path$O = /*#__PURE__*/createElement("path", {
|
|
7839
8230
|
d: "M485.288 7.284h7.269l53.44 77.4v-77.4h7v89.65h-6.867l-53.978-77.94v77.94h-6.864V7.284m126.535 49.67c-.134-9.691-5.114-19.652-17.365-19.652-11.171 0-17.634 8.614-19.518 19.653zm-44.692 7.27c0-18.172 10.5-32.98 27.597-32.98 16.422 0 25.442 13.192 24.094 31.498h-44.287v1.482c.136 14.673 6.328 28.134 21.674 28.134 8.21 0 15.076-3.366 18.576-6.059l2.96 5.52c-4.038 2.961-11.441 6.596-21.807 6.596-19.652 0-28.807-15.75-28.807-34.191m59.225-31.5h7.539l15.617 53.442 16.825-53.442h6.865L690.028 86.3l15.749-53.575h7.001l-19.385 64.21h-6.46l-17.366-54.112-17.365 54.112h-6.46l-19.386-64.21m148.337 30.422L744.676 7.284h8.345l25.44 48.459h.27l25.442-48.46h7.539l-29.75 55.863v33.788h-7.27V63.146m81.841 1.751c0-14.404-7.673-27.595-22.345-27.595-14.538 0-21.134 12.922-21.134 27.326 0 14.538 7.135 27.73 21.672 27.73 14.671 0 21.807-12.924 21.807-27.461zm-50.882 0c0-16.154 8.614-33.653 28.805-33.653 20.193 0 29.481 17.365 29.481 33.384 0 16.153-9.153 33.787-29.346 33.787-20.191 0-28.94-17.365-28.94-33.518m71.73-32.173h7v11.173c2.423-4.711 8.211-12.653 17.231-12.653 2.96 0 5.115.674 6.192 1.078l-1.75 6.594c-1.078-.404-2.558-.942-5.251-.942-8.884 0-14.673 10.5-16.421 14.27v44.69h-7.001v-64.21m51.013 28.134l28.135-28.134h8.75l-28.402 28.134 29.883 36.076h-8.75zM920.724.015h7v96.919h-7V.014m-416.725 187.38c17.095 0 24.094-7.808 24.094-19.654 0-11.173-6.73-19.25-23.826-19.25h-11.44v38.904zm-18.576-45.23h19.518c18.846 0 30.69 9.29 30.69 25.308 0 16.151-11.172 26.248-31.498 26.248h-11.307v38.094h-7.403v-89.65m61.513 70.805v-45.364h7v43.883c0 9.424 3.365 15.48 13.191 15.48 9.559 0 17.498-9.018 19.654-12.787v-46.576h6.999v51.825c0 5.115.538 9.962 1.212 12.384h-7.135c-.402-2.153-.942-7-.942-10.5-3.096 4.847-10.365 11.981-21.268 11.981-13.46 0-18.711-8.75-18.711-20.326m107.957-13.191c0-14-5.385-27.326-21-27.326-5.518 0-11.98 3.23-15.615 7.269v44.96c2.961 1.48 7.402 2.557 12.52 2.557 16.286 0 24.095-14.134 24.095-27.46zm-43.614 28.672v-93.555h6.999v38.634c3.904-4.443 10.232-7.404 16.827-7.404 18.305 0 27.19 14.672 27.19 33.383 0 18.038-12.115 33.787-31.768 33.787-7.672 0-14.806-1.884-19.248-4.845m65.416-93.555h7.001v96.92h-7v-96.92m27.862 32.71h7.134v64.21h-7.134zm-1.75-18.98c0-3.095 2.424-5.385 5.252-5.385 2.958 0 5.382 2.29 5.382 5.386s-2.424 5.52-5.382 5.52c-2.828 0-5.252-2.425-5.252-5.52m22.343 51.017c0-20.326 11.712-33.518 28.269-33.518 9.558 0 15.615 3.635 19.114 6.73l-3.635 5.115c-3.633-3.096-8.48-5.788-15.612-5.788-14.27 0-20.732 12.384-20.732 27.192 0 14.269 6.328 27.864 20.597 27.864 7.404 0 13.594-3.23 16.422-5.788l3.096 5.25c-3.5 3.096-10.23 6.595-19.923 6.595-18.441 0-27.596-16.422-27.596-33.652M483.403 366.697v-89.65h19.114v74.303H535.9v15.347h-52.498m66.689 0V301.14h18.036v65.558zm9.02-74.035c-6.328 0-10.906-4.981-10.906-10.77 0-5.654 4.578-10.5 10.905-10.5 6.327 0 11.037 4.846 11.037 10.5 0 5.789-4.71 10.77-11.037 10.77m42.67 60.17c1.21.403 4.037 1.482 9.018 1.482 9.961 0 15.883-7.404 15.883-20.865 0-12.25-4.17-19.788-13.864-19.788-5.652 0-9.961 3.634-11.037 4.98zm0-83.055v36.48c2.961-2.963 8.75-6.731 16.017-6.731 16.425 0 27.866 11.306 27.866 33.923 0 22.343-15.077 34.863-34.865 34.863-14.807 0-23.826-3.77-26.922-5.25v-93.285h17.904m94.224 47.114c-1.077-.672-3.097-1.482-6.868-1.482-7.94 0-12.651 7.002-14.267 9.961v41.327h-17.904V301.14h17.904v8.887c2.826-4.847 8.212-10.5 16.557-10.5 4.846 0 7.404.942 8.885 1.752l-4.307 15.613m45.362 20.728h-2.29c-10.498 0-17.767 3.1-17.767 10.77 0 4.846 3.905 6.865 7.941 6.865 6.463 0 10.232-3.77 12.116-5.787zm2.02 29.078c-.54-1.617-.942-4.98-1.079-7-2.96 3.5-9.153 8.615-18.44 8.615-11.174 0-19.788-6.73-19.788-18.442 0-17.096 17.634-23.288 34.998-23.288h2.289v-3.769c0-5.654-2.29-9.152-10.635-9.152-8.48 0-14.269 4.44-16.691 6.19l-7.808-10.901c3.904-3.5 12.52-9.424 26.52-9.424 17.903 0 26.383 6.866 26.383 24.23v23.557c0 8.883.941 15.209 1.884 19.384h-17.633m69.186-49.806c-1.076-.672-3.096-1.482-6.864-1.482-7.942 0-12.654 7.002-14.27 9.961v41.327h-17.904V301.14h17.904v8.887c2.828-4.847 8.212-10.5 16.558-10.5 4.844 0 7.403.942 8.884 1.752l-4.308 15.613m10.768-15.752h19.113l14.54 43.212h.673l13.326-43.212h18.442l-27.057 72.556c-5.789 15.48-12.654 24.499-30.556 24.499-5.52 0-8.75-.805-10.096-1.21l2.557-14.135c.942.27 2.423.672 6.327.672 9.153 0 12.384-4.44 14.94-11.441l2.423-6.73-24.632-64.21"
|
|
7840
|
-
})), _path2$
|
|
8231
|
+
})), _path2$l || (_path2$l = /*#__PURE__*/createElement("path", {
|
|
7841
8232
|
d: "M244.07 275.908c-.632 3.292-2.639 9.649-5.848 10.062-3.233.413-5.562-3.053-7.881-4.352-3.912-2.182-9.444-3.61-14.556-5.302-4.41-1.462-10.457-3.27-12.23-7.479-2.657-6.265 3.55-9.229 8.02-10.605 4.21-1.293 7.292-1.78 12.78-2.036 8.075-.388 15.784.768 18.495 5.844 1.635 3.057 2.133 9.122 1.22 13.868zm74.12 4.038c-14.064-6.882-32.33-10.33-45.62-17.713-10.522-5.834-18.59-15.471-29.913-20.664-11.552-5.656-28.94-11.341-35.586-12.98-23.496-5.78-43.231 1.747-50.076 7.164-12.781 10.1-22.766 26.516-18.87 50.134 1.65 9.984 4.723 18.383 9.607 25.29 19.818 27.99 56.91 37.084 86.295 54.742 1.036.705 2.118.517 2.78-.383 4.935-7.258 8.947-13.1 17.26-16.558 8.44-3.524 21.722-2.327 33.174-1.77 11.83.573 24.6-.538 28.891-6.655 5.127-7.301 4.828-22.013-2.997-26.508-4.199-2.42-10.459-2.53-15.025-4.635-3.332-1.54-5.901-4.422-7.739-8.428-1.54-3.352-2.973-8.856-.976-12.447 1.84-3.308 6.475-2.372 10.199-1.506 7.38 1.694 19.711 3.49 26.811.376 2.092-1.068-5.386-6.076-8.216-7.459M20.98 299.71c.424-2.396.609-3.063 2.052-4.947 2.286-3.418 30.024-34.543 73.016-42.085 5.658-.811 9.734-.419 10.661 1.849 1.625 3.976-1.667 6.266-5.629 8.56-68.952 41.21-64.064 102.472-64.725 127.532.208 10.252-7.195 12.118-9.043 7.288-8.092-22.074-14.896-56.673-6.333-98.197m46.657-90.251c1.413-1.499 2.334-2.187 4.43-2.778 26.481-6.578 53.046-2.39 72.177 6.14 4.294 1.902 6.229 4.596 3.409 6.405-3.587 2.084-14.456 9.154-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.175-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.086M111.209 183c-5.798-.66-5.88-4.902-3.428-6.553 6.3-4.414 16.521-9.743 26.804-13.82 3.078-1.22 4.668-1.537 7.487-1.255 7.578.759 20.125 5.86 34.522 16.133 17.266 12.32 32.626 35.725 22.354 33.83-6.497-1.125-3.668-.816-11.283-1.652-7.781-.69-12.888.11-16.475-.256-1.562-.128-2.793-1.168-3.893-2.07-14.573-13.067-31.407-21.36-56.088-24.357",
|
|
7842
8233
|
fill: "#fff"
|
|
7843
8234
|
})), _path3$c || (_path3$c = /*#__PURE__*/createElement("path", {
|
|
@@ -7858,20 +8249,20 @@ function SvgLogoNyplFullBlack(_ref) {
|
|
|
7858
8249
|
|
|
7859
8250
|
var _g$8, _defs$1;
|
|
7860
8251
|
|
|
7861
|
-
var _excluded$
|
|
8252
|
+
var _excluded$1l = ["title", "titleId"];
|
|
7862
8253
|
|
|
7863
|
-
function _extends$
|
|
8254
|
+
function _extends$_() { _extends$_ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$_.apply(this, arguments); }
|
|
7864
8255
|
|
|
7865
|
-
function _objectWithoutProperties$
|
|
8256
|
+
function _objectWithoutProperties$Z(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$_(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7866
8257
|
|
|
7867
|
-
function _objectWithoutPropertiesLoose$
|
|
8258
|
+
function _objectWithoutPropertiesLoose$_(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7868
8259
|
|
|
7869
8260
|
function SvgLogoNyplFullWhite(_ref) {
|
|
7870
8261
|
var title = _ref.title,
|
|
7871
8262
|
titleId = _ref.titleId,
|
|
7872
|
-
props = _objectWithoutProperties$
|
|
8263
|
+
props = _objectWithoutProperties$Z(_ref, _excluded$1l);
|
|
7873
8264
|
|
|
7874
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8265
|
+
return /*#__PURE__*/createElement("svg", _extends$_({
|
|
7875
8266
|
viewBox: "0 0 967 568",
|
|
7876
8267
|
fill: "none",
|
|
7877
8268
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -7897,32 +8288,32 @@ function SvgLogoNyplFullWhite(_ref) {
|
|
|
7897
8288
|
})))));
|
|
7898
8289
|
}
|
|
7899
8290
|
|
|
7900
|
-
var _path$
|
|
8291
|
+
var _path$P, _path2$m, _path3$d;
|
|
7901
8292
|
|
|
7902
|
-
var _excluded$
|
|
8293
|
+
var _excluded$1m = ["title", "titleId"];
|
|
7903
8294
|
|
|
7904
|
-
function _extends
|
|
8295
|
+
function _extends$$() { _extends$$ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$$.apply(this, arguments); }
|
|
7905
8296
|
|
|
7906
|
-
function _objectWithoutProperties$
|
|
8297
|
+
function _objectWithoutProperties$_(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$$(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7907
8298
|
|
|
7908
|
-
function _objectWithoutPropertiesLoose
|
|
8299
|
+
function _objectWithoutPropertiesLoose$$(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7909
8300
|
|
|
7910
8301
|
function SvgLogoNyplLionBlack(_ref) {
|
|
7911
8302
|
var title = _ref.title,
|
|
7912
8303
|
titleId = _ref.titleId,
|
|
7913
|
-
props = _objectWithoutProperties$
|
|
8304
|
+
props = _objectWithoutProperties$_(_ref, _excluded$1m);
|
|
7914
8305
|
|
|
7915
|
-
return /*#__PURE__*/createElement("svg", _extends
|
|
8306
|
+
return /*#__PURE__*/createElement("svg", _extends$$({
|
|
7916
8307
|
viewBox: "0 0 136 135",
|
|
7917
8308
|
fill: "none",
|
|
7918
8309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7919
8310
|
"aria-labelledby": titleId
|
|
7920
8311
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7921
8312
|
id: titleId
|
|
7922
|
-
}, title) : null, _path$
|
|
8313
|
+
}, title) : null, _path$P || (_path$P = /*#__PURE__*/createElement("path", {
|
|
7923
8314
|
d: "M80.251 43.353c-.87-1.65-3.396-2.04-6.052-1.91a16.55 16.55 0 00-4.18.651c-1.48.434-3.484 1.433-2.613 3.473.566 1.39 2.57 1.954 4.006 2.432 1.655.564 3.484.998 4.746 1.736.74.434 1.524 1.563 2.57 1.433 1.044-.13 1.698-2.214 1.915-3.256.305-1.607.175-3.56-.392-4.559z",
|
|
7924
8315
|
fill: "#000"
|
|
7925
|
-
})), _path2$
|
|
8316
|
+
})), _path2$m || (_path2$m = /*#__PURE__*/createElement("path", {
|
|
7926
8317
|
fillRule: "evenodd",
|
|
7927
8318
|
clipRule: "evenodd",
|
|
7928
8319
|
d: "M68.103.112C31.047.112.87 30.155.87 67.492c0 37.336 30.394 67.423 67.275 67.423 37.448 0 67.798-30.043 67.798-67.38C135.901 30.155 105.551.112 68.103.112zM28.652 114.77a10.757 10.757 0 01-2.482-3.039c-5.748-9.16-8.97-41.548-1.568-52.531 2.352-3.864 4.834-2.084 4.006.911-1.437 6.686-.566 10.42 2.7 17.67 3.631 7.609 12.59 17.32 19.008 24.279 2.664 2.887 4.89 5.301 6.117 6.893 7.185 9.29 9.58 16.063 9.536 17.887-.043 1.389-.305 2.3-2.787 2.083-12.932-.998-25.517-6.382-34.53-14.153zm99.052-30.575l.054-.162C138.6 47.52 111.647 4.497 64.837 6.19c-2.961.174-5.4 1.086-3.222 2.779 6.662 5.123 10.232 11.765 11.495 17.8.087.52.349.825 1.045 1.042 3.048.825 10.756 3.864 13.15 5.687.95.723 1.892 1.69 2.868 2.693 1.487 1.528 3.052 3.136 4.84 4.08 3.412 1.8 6.769 3.27 10.024 4.698h.003c1.77.777 3.511 1.54 5.213 2.335 2.134.955 6.053 3.56 5.792 6.642-.041.485-.157.952-.269 1.404-.13.518-.254 1.018-.254 1.505 0 .562.232 1.19.45 1.783.136.368.267.723.334 1.039.446 2.111.563 4.279.348 6.425-.305 2.301-1.045 5.948-2.351 8.075-.134.207-.282.4-.429.592-.375.49-.74.967-.834 1.623a11.233 11.233 0 01-.697 2.518c-.13.217-.13.608.131.65 5.138 1.911 10.494 5.34 12.889 7.12 1.22.881 1.83-.951 2.341-2.485zm-18.975-20.828a13.058 13.058 0 01-.13-1.215c0-.359.593-.806 1.046-1.147.095-.072.184-.139.26-.2a13.999 13.999 0 011.785-1.258c.14-.07.223.055.273.13.013.02.023.035.032.044 1.742 2.604 1.089 9.073-.174 12.156-.131.303-.392.434-.523.217-.653-1.39-1.567-2.649-2.656-3.3a.689.689 0 01-.218-.52c.435-1.599.538-3.268.305-4.907zM68.495 32.24c-7.708-1.867-14.152.564-16.373 2.344-4.18 3.3-7.446 8.64-6.14 16.238.523 3.256 1.524 5.99 3.136 8.248 4.45 6.297 11.622 9.674 18.79 13.048 3.21 1.512 6.42 3.023 9.382 4.796a.632.632 0 00.915-.13l.016-.024c1.604-2.334 2.91-4.235 5.601-5.36 2.43-1 6.123-.808 9.537-.63h.004c.44.023.874.046 1.302.066 3.875.173 8.055-.174 9.449-2.171 1.698-2.388 1.611-7.163-.958-8.64-.742-.415-1.668-.622-2.595-.83-.816-.181-1.633-.364-2.326-.69-1.088-.477-1.916-1.432-2.525-2.734-.48-1.086-.958-2.866-.305-4.038.556-1.066 2.037-.75 3.246-.49l.063.013c2.395.564 6.445 1.128 8.752.13.654-.347-1.785-1.997-2.699-2.431-2.15-1.062-4.607-1.873-7.06-2.684-2.765-.913-5.525-1.825-7.832-3.09-1.545-.858-2.923-1.961-4.307-3.07-1.7-1.36-3.408-2.727-5.447-3.66a74.478 74.478 0 00-11.626-4.211zM37.186 17.391c-1.872-.217-1.915-1.606-1.132-2.127a47.598 47.598 0 018.753-4.515 4.145 4.145 0 012.438-.391c2.482.26 6.575 1.91 11.278 5.253 5.617 3.994 10.668 11.635 7.315 11.027a34.483 34.483 0 00-3.7-.52c-1.441-.124-2.612-.093-3.57-.067-.723.02-1.325.036-1.83-.02a2.276 2.276 0 01-1.263-.695c-4.746-4.255-10.233-6.946-18.288-7.945zm51.818 59.652a3.828 3.828 0 00-1.655 2.214c-.027.09-.069.215-.118.361-.187.558-.473 1.413-.404 1.723.067.37.58.897.969 1.297.113.116.215.221.293.31a35.34 35.34 0 002.744 2.908 7.351 7.351 0 001.61 1.26c.604.3 1.44.37 2.348.445.273.022.55.045.832.075l.034.004c3.344.346 7.026.728 8.892-1.176.218-.217.305-.868.348-1.302.206-1.336.871-2.37 1.537-3.406.741-1.154 1.484-2.31 1.599-3.888a6.11 6.11 0 00-.349-2.605 2.827 2.827 0 00-1.437-1.737c-1.213-.509-2.098.102-2.896.652-.291.2-.57.393-.849.52-1.622.769-4 .934-6.289 1.094l-.503.035c-.296.02-.594.04-.89.058h-.001c-2.234.14-4.432.277-5.815 1.158zM22.948 26.03c.385-.43.883-.746 1.437-.912a37.386 37.386 0 0123.557 1.997c1.393.608 2.046 1.476 1.132 2.084-1.176.695-4.703 2.996-6.662 4.819-.566.478-1.568.521-2.177.434l-.246-.032c-7.157-.935-11.025-1.44-21.875 2.68-1.698.695-3.222-.26-2.438-1.563 1.437-2.648 4.833-7.033 7.272-9.507zM8.36 53.816a2.946 2.946 0 00-.653 1.606c-2.787 13.502-.566 24.79 2.09 31.997.61 1.563 3.048.955 2.961-2.388.017-.605.023-1.275.03-2.002.082-9.085.246-27.125 21.09-39.546 1.262-.738 2.35-1.476 1.828-2.778-.305-.738-1.655-.868-3.484-.608-14.064 2.475-23.121 12.59-23.862 13.72zm27.738 17.28c-3.963-9.639-1.393-18.279.392-21.578.87-1.65 1.741-2.735 2.874-2.431 1.219.347 1.524 1.606 1.698 3.907 1.263 19.233 12.932 25.702 27.563 32.518 11.583 5.904 24.733 12.633 35.75 28.957 1.654 2.345 1.916 3.777.043 5.123-6.705 4.559-12.802 7.771-21.728 9.855-1.35.304-2.743.087-3.919-2.995-6.742-17.265-15.964-24.728-24.497-31.632-7.174-5.805-13.86-11.216-18.176-21.725zm73.067 38.334c.609 1.172 1.698 2.649 3.57.782 3.223-3.17 7.795-9.291 9.319-12.243.035-.077.074-.154.115-.235.258-.511.56-1.11.146-1.936-.74-1.52-4.877-6.165-7.664-8.292l-.033-.025c-1.086-.823-2.55-1.933-3.929-2.32a3.246 3.246 0 00-1.089-.13c-1.025.118-1.158.592-1.561 2.034l-.137.484c-.74 2.518-2.177 4.298-3.44 4.82a6.957 6.957 0 01-3.745.607c-1.088-.087-1.654.912-.914 1.65 4.136 4.515 6.705 9.204 9.362 14.804z",
|
|
@@ -7933,29 +8324,29 @@ function SvgLogoNyplLionBlack(_ref) {
|
|
|
7933
8324
|
})));
|
|
7934
8325
|
}
|
|
7935
8326
|
|
|
7936
|
-
var _path$
|
|
8327
|
+
var _path$Q;
|
|
7937
8328
|
|
|
7938
|
-
var _excluded$
|
|
8329
|
+
var _excluded$1n = ["title", "titleId"];
|
|
7939
8330
|
|
|
7940
|
-
function _extends$
|
|
8331
|
+
function _extends$10() { _extends$10 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$10.apply(this, arguments); }
|
|
7941
8332
|
|
|
7942
|
-
function _objectWithoutProperties
|
|
8333
|
+
function _objectWithoutProperties$$(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$10(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7943
8334
|
|
|
7944
|
-
function _objectWithoutPropertiesLoose$
|
|
8335
|
+
function _objectWithoutPropertiesLoose$10(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7945
8336
|
|
|
7946
8337
|
function SvgLogoNyplLionWhite(_ref) {
|
|
7947
8338
|
var title = _ref.title,
|
|
7948
8339
|
titleId = _ref.titleId,
|
|
7949
|
-
props = _objectWithoutProperties
|
|
8340
|
+
props = _objectWithoutProperties$$(_ref, _excluded$1n);
|
|
7950
8341
|
|
|
7951
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8342
|
+
return /*#__PURE__*/createElement("svg", _extends$10({
|
|
7952
8343
|
viewBox: "0 0 125 126",
|
|
7953
8344
|
fill: "none",
|
|
7954
8345
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7955
8346
|
"aria-labelledby": titleId
|
|
7956
8347
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7957
8348
|
id: titleId
|
|
7958
|
-
}, title) : null, _path$
|
|
8349
|
+
}, title) : null, _path$Q || (_path$Q = /*#__PURE__*/createElement("path", {
|
|
7959
8350
|
fillRule: "evenodd",
|
|
7960
8351
|
clipRule: "evenodd",
|
|
7961
8352
|
d: "M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z",
|
|
@@ -7963,32 +8354,32 @@ function SvgLogoNyplLionWhite(_ref) {
|
|
|
7963
8354
|
})));
|
|
7964
8355
|
}
|
|
7965
8356
|
|
|
7966
|
-
var _path$
|
|
8357
|
+
var _path$R, _path2$n, _path3$e, _path4$3, _path5$2, _path6$2, _path7$2, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14, _path15;
|
|
7967
8358
|
|
|
7968
|
-
var _excluded$
|
|
8359
|
+
var _excluded$1o = ["title", "titleId"];
|
|
7969
8360
|
|
|
7970
|
-
function _extends$
|
|
8361
|
+
function _extends$11() { _extends$11 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$11.apply(this, arguments); }
|
|
7971
8362
|
|
|
7972
|
-
function _objectWithoutProperties$
|
|
8363
|
+
function _objectWithoutProperties$10(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$11(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7973
8364
|
|
|
7974
|
-
function _objectWithoutPropertiesLoose$
|
|
8365
|
+
function _objectWithoutPropertiesLoose$11(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7975
8366
|
|
|
7976
8367
|
function SvgLogoNyplTextBlack(_ref) {
|
|
7977
8368
|
var title = _ref.title,
|
|
7978
8369
|
titleId = _ref.titleId,
|
|
7979
|
-
props = _objectWithoutProperties$
|
|
8370
|
+
props = _objectWithoutProperties$10(_ref, _excluded$1o);
|
|
7980
8371
|
|
|
7981
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8372
|
+
return /*#__PURE__*/createElement("svg", _extends$11({
|
|
7982
8373
|
viewBox: "0 0 201 165",
|
|
7983
8374
|
fill: "none",
|
|
7984
8375
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7985
8376
|
"aria-labelledby": titleId
|
|
7986
8377
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7987
8378
|
id: titleId
|
|
7988
|
-
}, title) : null, _path$
|
|
8379
|
+
}, title) : null, _path$R || (_path$R = /*#__PURE__*/createElement("path", {
|
|
7989
8380
|
d: "M1.661 3.034h3.03l22.094 32.05V3.034h2.865v37.07h-2.81L4.526 7.834v32.27h-2.81V3.034h-.055z",
|
|
7990
8381
|
fill: "#000"
|
|
7991
|
-
})), _path2$
|
|
8382
|
+
})), _path2$n || (_path2$n = /*#__PURE__*/createElement("path", {
|
|
7992
8383
|
fillRule: "evenodd",
|
|
7993
8384
|
clipRule: "evenodd",
|
|
7994
8385
|
d: "M46.895 12.963c-7.052 0-11.405 6.124-11.405 13.626 0 7.613 3.747 14.122 11.901 14.122 3.22.07 6.381-.876 9.036-2.703l-1.212-2.262a13.06 13.06 0 01-7.659 2.483c-6.39 0-8.925-5.572-8.98-11.64v-.607h18.292c.55-7.557-3.196-13.018-9.973-13.018zm-.11 2.538c5.069 0 7.107 4.082 7.163 8.11H38.74c.771-4.524 3.416-8.11 8.044-8.11z",
|
|
@@ -8047,32 +8438,32 @@ function SvgLogoNyplTextBlack(_ref) {
|
|
|
8047
8438
|
})));
|
|
8048
8439
|
}
|
|
8049
8440
|
|
|
8050
|
-
var _path$
|
|
8441
|
+
var _path$S, _path2$o, _path3$f, _path4$4, _path5$3, _path6$3, _path7$3, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$1, _path15$1;
|
|
8051
8442
|
|
|
8052
|
-
var _excluded$
|
|
8443
|
+
var _excluded$1p = ["title", "titleId"];
|
|
8053
8444
|
|
|
8054
|
-
function _extends$
|
|
8445
|
+
function _extends$12() { _extends$12 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$12.apply(this, arguments); }
|
|
8055
8446
|
|
|
8056
|
-
function _objectWithoutProperties$
|
|
8447
|
+
function _objectWithoutProperties$11(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$12(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8057
8448
|
|
|
8058
|
-
function _objectWithoutPropertiesLoose$
|
|
8449
|
+
function _objectWithoutPropertiesLoose$12(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8059
8450
|
|
|
8060
8451
|
function SvgLogoNyplTextWhite(_ref) {
|
|
8061
8452
|
var title = _ref.title,
|
|
8062
8453
|
titleId = _ref.titleId,
|
|
8063
|
-
props = _objectWithoutProperties$
|
|
8454
|
+
props = _objectWithoutProperties$11(_ref, _excluded$1p);
|
|
8064
8455
|
|
|
8065
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8456
|
+
return /*#__PURE__*/createElement("svg", _extends$12({
|
|
8066
8457
|
viewBox: "0 0 201 165",
|
|
8067
8458
|
fill: "none",
|
|
8068
8459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8069
8460
|
"aria-labelledby": titleId
|
|
8070
8461
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8071
8462
|
id: titleId
|
|
8072
|
-
}, title) : null, _path$
|
|
8463
|
+
}, title) : null, _path$S || (_path$S = /*#__PURE__*/createElement("path", {
|
|
8073
8464
|
d: "M1.661 3.034h3.03l22.094 32.05V3.034h2.865v37.07h-2.81L4.526 7.834v32.27h-2.81V3.034h-.055z",
|
|
8074
8465
|
fill: "#fff"
|
|
8075
|
-
})), _path2$
|
|
8466
|
+
})), _path2$o || (_path2$o = /*#__PURE__*/createElement("path", {
|
|
8076
8467
|
fillRule: "evenodd",
|
|
8077
8468
|
clipRule: "evenodd",
|
|
8078
8469
|
d: "M46.895 12.963c-7.052 0-11.405 6.124-11.405 13.626 0 7.613 3.747 14.122 11.901 14.122 3.22.07 6.381-.876 9.036-2.703l-1.212-2.262a13.06 13.06 0 01-7.659 2.483c-6.39 0-8.925-5.572-8.98-11.64v-.607h18.292c.55-7.557-3.196-13.018-9.973-13.018zm-.11 2.538c5.069 0 7.107 4.082 7.163 8.11H38.74c.771-4.524 3.416-8.11 8.044-8.11z",
|
|
@@ -8133,20 +8524,20 @@ function SvgLogoNyplTextWhite(_ref) {
|
|
|
8133
8524
|
|
|
8134
8525
|
var _g$9, _defs$2;
|
|
8135
8526
|
|
|
8136
|
-
var _excluded$
|
|
8527
|
+
var _excluded$1q = ["title", "titleId"];
|
|
8137
8528
|
|
|
8138
|
-
function _extends$
|
|
8529
|
+
function _extends$13() { _extends$13 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$13.apply(this, arguments); }
|
|
8139
8530
|
|
|
8140
|
-
function _objectWithoutProperties$
|
|
8531
|
+
function _objectWithoutProperties$12(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$13(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8141
8532
|
|
|
8142
|
-
function _objectWithoutPropertiesLoose$
|
|
8533
|
+
function _objectWithoutPropertiesLoose$13(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8143
8534
|
|
|
8144
8535
|
function SvgLogoOpenebooksColor(_ref) {
|
|
8145
8536
|
var title = _ref.title,
|
|
8146
8537
|
titleId = _ref.titleId,
|
|
8147
|
-
props = _objectWithoutProperties$
|
|
8538
|
+
props = _objectWithoutProperties$12(_ref, _excluded$1q);
|
|
8148
8539
|
|
|
8149
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8540
|
+
return /*#__PURE__*/createElement("svg", _extends$13({
|
|
8150
8541
|
viewBox: "0 0 152 139",
|
|
8151
8542
|
fill: "none",
|
|
8152
8543
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -8194,20 +8585,20 @@ function SvgLogoOpenebooksColor(_ref) {
|
|
|
8194
8585
|
|
|
8195
8586
|
var _g$a, _defs$3;
|
|
8196
8587
|
|
|
8197
|
-
var _excluded$
|
|
8588
|
+
var _excluded$1r = ["title", "titleId"];
|
|
8198
8589
|
|
|
8199
|
-
function _extends
|
|
8590
|
+
function _extends$14() { _extends$14 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$14.apply(this, arguments); }
|
|
8200
8591
|
|
|
8201
|
-
function _objectWithoutProperties$
|
|
8592
|
+
function _objectWithoutProperties$13(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$14(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8202
8593
|
|
|
8203
|
-
function _objectWithoutPropertiesLoose
|
|
8594
|
+
function _objectWithoutPropertiesLoose$14(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8204
8595
|
|
|
8205
8596
|
function SvgLogoOpenebooksNegative(_ref) {
|
|
8206
8597
|
var title = _ref.title,
|
|
8207
8598
|
titleId = _ref.titleId,
|
|
8208
|
-
props = _objectWithoutProperties$
|
|
8599
|
+
props = _objectWithoutProperties$13(_ref, _excluded$1r);
|
|
8209
8600
|
|
|
8210
|
-
return /*#__PURE__*/createElement("svg", _extends
|
|
8601
|
+
return /*#__PURE__*/createElement("svg", _extends$14({
|
|
8211
8602
|
viewBox: "0 0 155 139",
|
|
8212
8603
|
fill: "none",
|
|
8213
8604
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -8278,20 +8669,20 @@ function SvgLogoOpenebooksNegative(_ref) {
|
|
|
8278
8669
|
|
|
8279
8670
|
var _g$b, _defs$4;
|
|
8280
8671
|
|
|
8281
|
-
var _excluded$
|
|
8672
|
+
var _excluded$1s = ["title", "titleId"];
|
|
8282
8673
|
|
|
8283
|
-
function _extends$
|
|
8674
|
+
function _extends$15() { _extends$15 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$15.apply(this, arguments); }
|
|
8284
8675
|
|
|
8285
|
-
function _objectWithoutProperties
|
|
8676
|
+
function _objectWithoutProperties$14(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$15(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8286
8677
|
|
|
8287
|
-
function _objectWithoutPropertiesLoose$
|
|
8678
|
+
function _objectWithoutPropertiesLoose$15(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8288
8679
|
|
|
8289
8680
|
function SvgLogoOpenebooksWithTextColor(_ref) {
|
|
8290
8681
|
var title = _ref.title,
|
|
8291
8682
|
titleId = _ref.titleId,
|
|
8292
|
-
props = _objectWithoutProperties
|
|
8683
|
+
props = _objectWithoutProperties$14(_ref, _excluded$1s);
|
|
8293
8684
|
|
|
8294
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8685
|
+
return /*#__PURE__*/createElement("svg", _extends$15({
|
|
8295
8686
|
viewBox: "0 0 152 139",
|
|
8296
8687
|
fill: "none",
|
|
8297
8688
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -8339,20 +8730,20 @@ function SvgLogoOpenebooksWithTextColor(_ref) {
|
|
|
8339
8730
|
|
|
8340
8731
|
var _g$c, _defs$5;
|
|
8341
8732
|
|
|
8342
|
-
var _excluded$
|
|
8733
|
+
var _excluded$1t = ["title", "titleId"];
|
|
8343
8734
|
|
|
8344
|
-
function _extends$
|
|
8735
|
+
function _extends$16() { _extends$16 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$16.apply(this, arguments); }
|
|
8345
8736
|
|
|
8346
|
-
function _objectWithoutProperties$
|
|
8737
|
+
function _objectWithoutProperties$15(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$16(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8347
8738
|
|
|
8348
|
-
function _objectWithoutPropertiesLoose$
|
|
8739
|
+
function _objectWithoutPropertiesLoose$16(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8349
8740
|
|
|
8350
8741
|
function SvgLogoOpenebooksWithTextNegative(_ref) {
|
|
8351
8742
|
var title = _ref.title,
|
|
8352
8743
|
titleId = _ref.titleId,
|
|
8353
|
-
props = _objectWithoutProperties$
|
|
8744
|
+
props = _objectWithoutProperties$15(_ref, _excluded$1t);
|
|
8354
8745
|
|
|
8355
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8746
|
+
return /*#__PURE__*/createElement("svg", _extends$16({
|
|
8356
8747
|
viewBox: "0 0 155 139",
|
|
8357
8748
|
fill: "none",
|
|
8358
8749
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -8424,85 +8815,85 @@ function SvgLogoOpenebooksWithTextNegative(_ref) {
|
|
|
8424
8815
|
})))));
|
|
8425
8816
|
}
|
|
8426
8817
|
|
|
8427
|
-
var _path$
|
|
8818
|
+
var _path$T;
|
|
8428
8819
|
|
|
8429
|
-
var _excluded$
|
|
8820
|
+
var _excluded$1u = ["title", "titleId"];
|
|
8430
8821
|
|
|
8431
|
-
function _extends$
|
|
8822
|
+
function _extends$17() { _extends$17 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$17.apply(this, arguments); }
|
|
8432
8823
|
|
|
8433
|
-
function _objectWithoutProperties$
|
|
8824
|
+
function _objectWithoutProperties$16(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$17(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8434
8825
|
|
|
8435
|
-
function _objectWithoutPropertiesLoose$
|
|
8826
|
+
function _objectWithoutPropertiesLoose$17(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8436
8827
|
|
|
8437
8828
|
function SvgLogoQplAltBlack(_ref) {
|
|
8438
8829
|
var title = _ref.title,
|
|
8439
8830
|
titleId = _ref.titleId,
|
|
8440
|
-
props = _objectWithoutProperties$
|
|
8831
|
+
props = _objectWithoutProperties$16(_ref, _excluded$1u);
|
|
8441
8832
|
|
|
8442
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8833
|
+
return /*#__PURE__*/createElement("svg", _extends$17({
|
|
8443
8834
|
viewBox: "0 0 250 134",
|
|
8444
8835
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8445
8836
|
"aria-labelledby": titleId
|
|
8446
8837
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8447
8838
|
id: titleId
|
|
8448
|
-
}, title) : null, _path$
|
|
8839
|
+
}, title) : null, _path$T || (_path$T = /*#__PURE__*/createElement("path", {
|
|
8449
8840
|
d: "M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"
|
|
8450
8841
|
})));
|
|
8451
8842
|
}
|
|
8452
8843
|
|
|
8453
|
-
var _path$
|
|
8844
|
+
var _path$U;
|
|
8454
8845
|
|
|
8455
|
-
var _excluded$
|
|
8846
|
+
var _excluded$1v = ["title", "titleId"];
|
|
8456
8847
|
|
|
8457
|
-
function _extends$
|
|
8848
|
+
function _extends$18() { _extends$18 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$18.apply(this, arguments); }
|
|
8458
8849
|
|
|
8459
|
-
function _objectWithoutProperties$
|
|
8850
|
+
function _objectWithoutProperties$17(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$18(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8460
8851
|
|
|
8461
|
-
function _objectWithoutPropertiesLoose$
|
|
8852
|
+
function _objectWithoutPropertiesLoose$18(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8462
8853
|
|
|
8463
8854
|
function SvgLogoQplAltWhite(_ref) {
|
|
8464
8855
|
var title = _ref.title,
|
|
8465
8856
|
titleId = _ref.titleId,
|
|
8466
|
-
props = _objectWithoutProperties$
|
|
8857
|
+
props = _objectWithoutProperties$17(_ref, _excluded$1v);
|
|
8467
8858
|
|
|
8468
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8859
|
+
return /*#__PURE__*/createElement("svg", _extends$18({
|
|
8469
8860
|
viewBox: "0 0 250 134",
|
|
8470
8861
|
fill: "#fff",
|
|
8471
8862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8472
8863
|
"aria-labelledby": titleId
|
|
8473
8864
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8474
8865
|
id: titleId
|
|
8475
|
-
}, title) : null, _path$
|
|
8866
|
+
}, title) : null, _path$U || (_path$U = /*#__PURE__*/createElement("path", {
|
|
8476
8867
|
d: "M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"
|
|
8477
8868
|
})));
|
|
8478
8869
|
}
|
|
8479
8870
|
|
|
8480
|
-
var _path$
|
|
8871
|
+
var _path$V, _path2$p, _path3$g, _path4$5, _path5$4;
|
|
8481
8872
|
|
|
8482
|
-
var _excluded$
|
|
8873
|
+
var _excluded$1w = ["title", "titleId"];
|
|
8483
8874
|
|
|
8484
|
-
function _extends$
|
|
8875
|
+
function _extends$19() { _extends$19 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$19.apply(this, arguments); }
|
|
8485
8876
|
|
|
8486
|
-
function _objectWithoutProperties$
|
|
8877
|
+
function _objectWithoutProperties$18(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$19(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8487
8878
|
|
|
8488
|
-
function _objectWithoutPropertiesLoose$
|
|
8879
|
+
function _objectWithoutPropertiesLoose$19(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8489
8880
|
|
|
8490
8881
|
function SvgLogoQplBlack(_ref) {
|
|
8491
8882
|
var title = _ref.title,
|
|
8492
8883
|
titleId = _ref.titleId,
|
|
8493
|
-
props = _objectWithoutProperties$
|
|
8884
|
+
props = _objectWithoutProperties$18(_ref, _excluded$1w);
|
|
8494
8885
|
|
|
8495
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8886
|
+
return /*#__PURE__*/createElement("svg", _extends$19({
|
|
8496
8887
|
viewBox: "0 0 320 43",
|
|
8497
8888
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8498
8889
|
"aria-labelledby": titleId
|
|
8499
8890
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8500
8891
|
id: titleId
|
|
8501
|
-
}, title) : null, _path$
|
|
8892
|
+
}, title) : null, _path$V || (_path$V = /*#__PURE__*/createElement("path", {
|
|
8502
8893
|
fillRule: "evenodd",
|
|
8503
8894
|
clipRule: "evenodd",
|
|
8504
8895
|
d: "M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"
|
|
8505
|
-
})), _path2$
|
|
8896
|
+
})), _path2$p || (_path2$p = /*#__PURE__*/createElement("path", {
|
|
8506
8897
|
fillRule: "evenodd",
|
|
8507
8898
|
clipRule: "evenodd",
|
|
8508
8899
|
d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
|
|
@@ -8521,20 +8912,20 @@ function SvgLogoQplBlack(_ref) {
|
|
|
8521
8912
|
|
|
8522
8913
|
var _g$d, _defs$6;
|
|
8523
8914
|
|
|
8524
|
-
var _excluded$
|
|
8915
|
+
var _excluded$1x = ["title", "titleId"];
|
|
8525
8916
|
|
|
8526
|
-
function _extends$
|
|
8917
|
+
function _extends$1a() { _extends$1a = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1a.apply(this, arguments); }
|
|
8527
8918
|
|
|
8528
|
-
function _objectWithoutProperties$
|
|
8919
|
+
function _objectWithoutProperties$19(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1a(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8529
8920
|
|
|
8530
|
-
function _objectWithoutPropertiesLoose$
|
|
8921
|
+
function _objectWithoutPropertiesLoose$1a(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8531
8922
|
|
|
8532
8923
|
function SvgLogoQplColor(_ref) {
|
|
8533
8924
|
var title = _ref.title,
|
|
8534
8925
|
titleId = _ref.titleId,
|
|
8535
|
-
props = _objectWithoutProperties$
|
|
8926
|
+
props = _objectWithoutProperties$19(_ref, _excluded$1x);
|
|
8536
8927
|
|
|
8537
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8928
|
+
return /*#__PURE__*/createElement("svg", _extends$1a({
|
|
8538
8929
|
viewBox: "0 0 355 48",
|
|
8539
8930
|
fill: "none",
|
|
8540
8931
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -8580,33 +8971,33 @@ function SvgLogoQplColor(_ref) {
|
|
|
8580
8971
|
})))));
|
|
8581
8972
|
}
|
|
8582
8973
|
|
|
8583
|
-
var _path$
|
|
8974
|
+
var _path$W, _path2$q, _path3$h, _path4$6, _path5$5;
|
|
8584
8975
|
|
|
8585
|
-
var _excluded$
|
|
8976
|
+
var _excluded$1y = ["title", "titleId"];
|
|
8586
8977
|
|
|
8587
|
-
function _extends$
|
|
8978
|
+
function _extends$1b() { _extends$1b = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1b.apply(this, arguments); }
|
|
8588
8979
|
|
|
8589
|
-
function _objectWithoutProperties$
|
|
8980
|
+
function _objectWithoutProperties$1a(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1b(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8590
8981
|
|
|
8591
|
-
function _objectWithoutPropertiesLoose$
|
|
8982
|
+
function _objectWithoutPropertiesLoose$1b(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8592
8983
|
|
|
8593
8984
|
function SvgLogoQplWhite(_ref) {
|
|
8594
8985
|
var title = _ref.title,
|
|
8595
8986
|
titleId = _ref.titleId,
|
|
8596
|
-
props = _objectWithoutProperties$
|
|
8987
|
+
props = _objectWithoutProperties$1a(_ref, _excluded$1y);
|
|
8597
8988
|
|
|
8598
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8989
|
+
return /*#__PURE__*/createElement("svg", _extends$1b({
|
|
8599
8990
|
viewBox: "0 0 320 43",
|
|
8600
8991
|
fill: "#fff",
|
|
8601
8992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8602
8993
|
"aria-labelledby": titleId
|
|
8603
8994
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8604
8995
|
id: titleId
|
|
8605
|
-
}, title) : null, _path$
|
|
8996
|
+
}, title) : null, _path$W || (_path$W = /*#__PURE__*/createElement("path", {
|
|
8606
8997
|
fillRule: "evenodd",
|
|
8607
8998
|
clipRule: "evenodd",
|
|
8608
8999
|
d: "M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"
|
|
8609
|
-
})), _path2$
|
|
9000
|
+
})), _path2$q || (_path2$q = /*#__PURE__*/createElement("path", {
|
|
8610
9001
|
fillRule: "evenodd",
|
|
8611
9002
|
clipRule: "evenodd",
|
|
8612
9003
|
d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
|
|
@@ -8623,32 +9014,32 @@ function SvgLogoQplWhite(_ref) {
|
|
|
8623
9014
|
})));
|
|
8624
9015
|
}
|
|
8625
9016
|
|
|
8626
|
-
var _path$
|
|
9017
|
+
var _path$X, _path2$r, _path3$i, _path4$7, _path5$6;
|
|
8627
9018
|
|
|
8628
|
-
var _excluded$
|
|
9019
|
+
var _excluded$1z = ["title", "titleId"];
|
|
8629
9020
|
|
|
8630
|
-
function _extends$
|
|
9021
|
+
function _extends$1c() { _extends$1c = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1c.apply(this, arguments); }
|
|
8631
9022
|
|
|
8632
|
-
function _objectWithoutProperties$
|
|
9023
|
+
function _objectWithoutProperties$1b(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1c(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8633
9024
|
|
|
8634
|
-
function _objectWithoutPropertiesLoose$
|
|
9025
|
+
function _objectWithoutPropertiesLoose$1c(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8635
9026
|
|
|
8636
9027
|
function SvgLogoReservoirIconColor(_ref) {
|
|
8637
9028
|
var title = _ref.title,
|
|
8638
9029
|
titleId = _ref.titleId,
|
|
8639
|
-
props = _objectWithoutProperties$
|
|
9030
|
+
props = _objectWithoutProperties$1b(_ref, _excluded$1z);
|
|
8640
9031
|
|
|
8641
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9032
|
+
return /*#__PURE__*/createElement("svg", _extends$1c({
|
|
8642
9033
|
viewBox: "0 0 105 129",
|
|
8643
9034
|
fill: "none",
|
|
8644
9035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8645
9036
|
"aria-labelledby": titleId
|
|
8646
9037
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8647
9038
|
id: titleId
|
|
8648
|
-
}, title) : null, _path$
|
|
9039
|
+
}, title) : null, _path$X || (_path$X = /*#__PURE__*/createElement("path", {
|
|
8649
9040
|
d: "M57.736.066H27.298S17.876-1.02 9.18 5.622C.483 12.265.604 20.962.604 20.962h48.798S73.317 19.634 71.868 42.1c-1.45 22.466-22.466 19.446-22.466 19.446L40 61.667l9.146 19.688h.86s14.735 4.953 32.733-7.247C100.736 61.908 99.528 42.1 99.528 42.1s1.812-15.944-9.059-28.627C79.599.791 57.736.066 57.736.066z",
|
|
8650
9041
|
fill: "#0576D3"
|
|
8651
|
-
})), _path2$
|
|
9042
|
+
})), _path2$r || (_path2$r = /*#__PURE__*/createElement("path", {
|
|
8652
9043
|
d: "M49.146 81.355V61.546L57.736 68l12.79 13.355h-21.38z",
|
|
8653
9044
|
fill: "#fff"
|
|
8654
9045
|
})), _path3$i || (_path3$i = /*#__PURE__*/createElement("path", {
|
|
@@ -8665,20 +9056,20 @@ function SvgLogoReservoirIconColor(_ref) {
|
|
|
8665
9056
|
|
|
8666
9057
|
var _g$e;
|
|
8667
9058
|
|
|
8668
|
-
var _excluded$
|
|
9059
|
+
var _excluded$1A = ["title", "titleId"];
|
|
8669
9060
|
|
|
8670
|
-
function _extends$
|
|
9061
|
+
function _extends$1d() { _extends$1d = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1d.apply(this, arguments); }
|
|
8671
9062
|
|
|
8672
|
-
function _objectWithoutProperties$
|
|
9063
|
+
function _objectWithoutProperties$1c(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1d(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8673
9064
|
|
|
8674
|
-
function _objectWithoutPropertiesLoose$
|
|
9065
|
+
function _objectWithoutPropertiesLoose$1d(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8675
9066
|
|
|
8676
9067
|
function SvgLogoReservoirVerticalColor(_ref) {
|
|
8677
9068
|
var title = _ref.title,
|
|
8678
9069
|
titleId = _ref.titleId,
|
|
8679
|
-
props = _objectWithoutProperties$
|
|
9070
|
+
props = _objectWithoutProperties$1c(_ref, _excluded$1A);
|
|
8680
9071
|
|
|
8681
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9072
|
+
return /*#__PURE__*/createElement("svg", _extends$1d({
|
|
8682
9073
|
viewBox: "0 0 234 261",
|
|
8683
9074
|
fill: "none",
|
|
8684
9075
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -8702,30 +9093,30 @@ function SvgLogoReservoirVerticalColor(_ref) {
|
|
|
8702
9093
|
}))));
|
|
8703
9094
|
}
|
|
8704
9095
|
|
|
8705
|
-
var _path$
|
|
9096
|
+
var _path$Y, _path2$s, _path3$j, _path4$8, _path5$7;
|
|
8706
9097
|
|
|
8707
|
-
var _excluded$
|
|
9098
|
+
var _excluded$1B = ["title", "titleId"];
|
|
8708
9099
|
|
|
8709
|
-
function _extends$
|
|
9100
|
+
function _extends$1e() { _extends$1e = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1e.apply(this, arguments); }
|
|
8710
9101
|
|
|
8711
|
-
function _objectWithoutProperties$
|
|
9102
|
+
function _objectWithoutProperties$1d(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1e(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8712
9103
|
|
|
8713
|
-
function _objectWithoutPropertiesLoose$
|
|
9104
|
+
function _objectWithoutPropertiesLoose$1e(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8714
9105
|
|
|
8715
9106
|
function SvgLogoSchomburgBlack(_ref) {
|
|
8716
9107
|
var title = _ref.title,
|
|
8717
9108
|
titleId = _ref.titleId,
|
|
8718
|
-
props = _objectWithoutProperties$
|
|
9109
|
+
props = _objectWithoutProperties$1d(_ref, _excluded$1B);
|
|
8719
9110
|
|
|
8720
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9111
|
+
return /*#__PURE__*/createElement("svg", _extends$1e({
|
|
8721
9112
|
viewBox: "0 0 185 79",
|
|
8722
9113
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8723
9114
|
"aria-labelledby": titleId
|
|
8724
9115
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8725
9116
|
id: titleId
|
|
8726
|
-
}, title) : null, _path$
|
|
9117
|
+
}, title) : null, _path$Y || (_path$Y = /*#__PURE__*/createElement("path", {
|
|
8727
9118
|
d: "M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"
|
|
8728
|
-
})), _path2$
|
|
9119
|
+
})), _path2$s || (_path2$s = /*#__PURE__*/createElement("path", {
|
|
8729
9120
|
d: "M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"
|
|
8730
9121
|
})), _path3$j || (_path3$j = /*#__PURE__*/createElement("path", {
|
|
8731
9122
|
d: "M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"
|
|
@@ -8736,30 +9127,30 @@ function SvgLogoSchomburgBlack(_ref) {
|
|
|
8736
9127
|
})));
|
|
8737
9128
|
}
|
|
8738
9129
|
|
|
8739
|
-
var _path$
|
|
9130
|
+
var _path$Z, _path2$t, _path3$k, _path4$9, _path5$8;
|
|
8740
9131
|
|
|
8741
|
-
var _excluded$
|
|
9132
|
+
var _excluded$1C = ["title", "titleId"];
|
|
8742
9133
|
|
|
8743
|
-
function _extends$
|
|
9134
|
+
function _extends$1f() { _extends$1f = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1f.apply(this, arguments); }
|
|
8744
9135
|
|
|
8745
|
-
function _objectWithoutProperties$
|
|
9136
|
+
function _objectWithoutProperties$1e(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1f(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8746
9137
|
|
|
8747
|
-
function _objectWithoutPropertiesLoose$
|
|
9138
|
+
function _objectWithoutPropertiesLoose$1f(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8748
9139
|
|
|
8749
9140
|
function SvgLogoSchomburgCircleBlack(_ref) {
|
|
8750
9141
|
var title = _ref.title,
|
|
8751
9142
|
titleId = _ref.titleId,
|
|
8752
|
-
props = _objectWithoutProperties$
|
|
9143
|
+
props = _objectWithoutProperties$1e(_ref, _excluded$1C);
|
|
8753
9144
|
|
|
8754
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9145
|
+
return /*#__PURE__*/createElement("svg", _extends$1f({
|
|
8755
9146
|
viewBox: "0 0 67 67",
|
|
8756
9147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8757
9148
|
"aria-labelledby": titleId
|
|
8758
9149
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8759
9150
|
id: titleId
|
|
8760
|
-
}, title) : null, _path$
|
|
9151
|
+
}, title) : null, _path$Z || (_path$Z = /*#__PURE__*/createElement("path", {
|
|
8761
9152
|
d: "M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"
|
|
8762
|
-
})), _path2$
|
|
9153
|
+
})), _path2$t || (_path2$t = /*#__PURE__*/createElement("path", {
|
|
8763
9154
|
d: "M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"
|
|
8764
9155
|
})), _path3$k || (_path3$k = /*#__PURE__*/createElement("path", {
|
|
8765
9156
|
d: "M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"
|
|
@@ -8770,32 +9161,32 @@ function SvgLogoSchomburgCircleBlack(_ref) {
|
|
|
8770
9161
|
})));
|
|
8771
9162
|
}
|
|
8772
9163
|
|
|
8773
|
-
var _path$
|
|
9164
|
+
var _path$_, _path2$u, _path3$l, _path4$a, _path5$9;
|
|
8774
9165
|
|
|
8775
|
-
var _excluded$
|
|
9166
|
+
var _excluded$1D = ["title", "titleId"];
|
|
8776
9167
|
|
|
8777
|
-
function _extends$
|
|
9168
|
+
function _extends$1g() { _extends$1g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1g.apply(this, arguments); }
|
|
8778
9169
|
|
|
8779
|
-
function _objectWithoutProperties$
|
|
9170
|
+
function _objectWithoutProperties$1f(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1g(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8780
9171
|
|
|
8781
|
-
function _objectWithoutPropertiesLoose$
|
|
9172
|
+
function _objectWithoutPropertiesLoose$1g(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8782
9173
|
|
|
8783
9174
|
function SvgLogoSchomburgCircleColor(_ref) {
|
|
8784
9175
|
var title = _ref.title,
|
|
8785
9176
|
titleId = _ref.titleId,
|
|
8786
|
-
props = _objectWithoutProperties$
|
|
9177
|
+
props = _objectWithoutProperties$1f(_ref, _excluded$1D);
|
|
8787
9178
|
|
|
8788
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9179
|
+
return /*#__PURE__*/createElement("svg", _extends$1g({
|
|
8789
9180
|
viewBox: "0 0 67 67",
|
|
8790
9181
|
fill: "none",
|
|
8791
9182
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8792
9183
|
"aria-labelledby": titleId
|
|
8793
9184
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8794
9185
|
id: titleId
|
|
8795
|
-
}, title) : null, _path$
|
|
9186
|
+
}, title) : null, _path$_ || (_path$_ = /*#__PURE__*/createElement("path", {
|
|
8796
9187
|
d: "M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z",
|
|
8797
9188
|
fill: "#C54B38"
|
|
8798
|
-
})), _path2$
|
|
9189
|
+
})), _path2$u || (_path2$u = /*#__PURE__*/createElement("path", {
|
|
8799
9190
|
d: "M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z",
|
|
8800
9191
|
fill: "#C54B38"
|
|
8801
9192
|
})), _path3$l || (_path3$l = /*#__PURE__*/createElement("path", {
|
|
@@ -8810,31 +9201,31 @@ function SvgLogoSchomburgCircleColor(_ref) {
|
|
|
8810
9201
|
})));
|
|
8811
9202
|
}
|
|
8812
9203
|
|
|
8813
|
-
var _path
|
|
9204
|
+
var _path$$, _path2$v, _path3$m, _path4$b, _path5$a;
|
|
8814
9205
|
|
|
8815
|
-
var _excluded$
|
|
9206
|
+
var _excluded$1E = ["title", "titleId"];
|
|
8816
9207
|
|
|
8817
|
-
function _extends$
|
|
9208
|
+
function _extends$1h() { _extends$1h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1h.apply(this, arguments); }
|
|
8818
9209
|
|
|
8819
|
-
function _objectWithoutProperties$
|
|
9210
|
+
function _objectWithoutProperties$1g(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1h(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8820
9211
|
|
|
8821
|
-
function _objectWithoutPropertiesLoose$
|
|
9212
|
+
function _objectWithoutPropertiesLoose$1h(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8822
9213
|
|
|
8823
9214
|
function SvgLogoSchomburgCircleWhite(_ref) {
|
|
8824
9215
|
var title = _ref.title,
|
|
8825
9216
|
titleId = _ref.titleId,
|
|
8826
|
-
props = _objectWithoutProperties$
|
|
9217
|
+
props = _objectWithoutProperties$1g(_ref, _excluded$1E);
|
|
8827
9218
|
|
|
8828
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9219
|
+
return /*#__PURE__*/createElement("svg", _extends$1h({
|
|
8829
9220
|
viewBox: "0 0 67 67",
|
|
8830
9221
|
fill: "#fff",
|
|
8831
9222
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8832
9223
|
"aria-labelledby": titleId
|
|
8833
9224
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8834
9225
|
id: titleId
|
|
8835
|
-
}, title) : null, _path
|
|
9226
|
+
}, title) : null, _path$$ || (_path$$ = /*#__PURE__*/createElement("path", {
|
|
8836
9227
|
d: "M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"
|
|
8837
|
-
})), _path2$
|
|
9228
|
+
})), _path2$v || (_path2$v = /*#__PURE__*/createElement("path", {
|
|
8838
9229
|
d: "M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"
|
|
8839
9230
|
})), _path3$m || (_path3$m = /*#__PURE__*/createElement("path", {
|
|
8840
9231
|
d: "M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"
|
|
@@ -8845,32 +9236,32 @@ function SvgLogoSchomburgCircleWhite(_ref) {
|
|
|
8845
9236
|
})));
|
|
8846
9237
|
}
|
|
8847
9238
|
|
|
8848
|
-
var _path$
|
|
9239
|
+
var _path$10, _path2$w, _path3$n, _path4$c, _path5$b, _path6$4, _path7$4;
|
|
8849
9240
|
|
|
8850
|
-
var _excluded$
|
|
9241
|
+
var _excluded$1F = ["title", "titleId"];
|
|
8851
9242
|
|
|
8852
|
-
function _extends$
|
|
9243
|
+
function _extends$1i() { _extends$1i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1i.apply(this, arguments); }
|
|
8853
9244
|
|
|
8854
|
-
function _objectWithoutProperties$
|
|
9245
|
+
function _objectWithoutProperties$1h(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1i(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8855
9246
|
|
|
8856
|
-
function _objectWithoutPropertiesLoose$
|
|
9247
|
+
function _objectWithoutPropertiesLoose$1i(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8857
9248
|
|
|
8858
9249
|
function SvgLogoSchomburgColor(_ref) {
|
|
8859
9250
|
var title = _ref.title,
|
|
8860
9251
|
titleId = _ref.titleId,
|
|
8861
|
-
props = _objectWithoutProperties$
|
|
9252
|
+
props = _objectWithoutProperties$1h(_ref, _excluded$1F);
|
|
8862
9253
|
|
|
8863
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9254
|
+
return /*#__PURE__*/createElement("svg", _extends$1i({
|
|
8864
9255
|
viewBox: "0 0 185 79",
|
|
8865
9256
|
fill: "none",
|
|
8866
9257
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8867
9258
|
"aria-labelledby": titleId
|
|
8868
9259
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8869
9260
|
id: titleId
|
|
8870
|
-
}, title) : null, _path$
|
|
9261
|
+
}, title) : null, _path$10 || (_path$10 = /*#__PURE__*/createElement("path", {
|
|
8871
9262
|
d: "M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27z",
|
|
8872
9263
|
fill: "#010101"
|
|
8873
|
-
})), _path2$
|
|
9264
|
+
})), _path2$w || (_path2$w = /*#__PURE__*/createElement("path", {
|
|
8874
9265
|
d: "M55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z",
|
|
8875
9266
|
fill: "#C54B38"
|
|
8876
9267
|
})), _path3$n || (_path3$n = /*#__PURE__*/createElement("path", {
|
|
@@ -8891,31 +9282,31 @@ function SvgLogoSchomburgColor(_ref) {
|
|
|
8891
9282
|
})));
|
|
8892
9283
|
}
|
|
8893
9284
|
|
|
8894
|
-
var _path$
|
|
9285
|
+
var _path$11, _path2$x, _path3$o, _path4$d, _path5$c;
|
|
8895
9286
|
|
|
8896
|
-
var _excluded$
|
|
9287
|
+
var _excluded$1G = ["title", "titleId"];
|
|
8897
9288
|
|
|
8898
|
-
function _extends$
|
|
9289
|
+
function _extends$1j() { _extends$1j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1j.apply(this, arguments); }
|
|
8899
9290
|
|
|
8900
|
-
function _objectWithoutProperties$
|
|
9291
|
+
function _objectWithoutProperties$1i(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1j(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8901
9292
|
|
|
8902
|
-
function _objectWithoutPropertiesLoose$
|
|
9293
|
+
function _objectWithoutPropertiesLoose$1j(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8903
9294
|
|
|
8904
9295
|
function SvgLogoSchomburgWhite(_ref) {
|
|
8905
9296
|
var title = _ref.title,
|
|
8906
9297
|
titleId = _ref.titleId,
|
|
8907
|
-
props = _objectWithoutProperties$
|
|
9298
|
+
props = _objectWithoutProperties$1i(_ref, _excluded$1G);
|
|
8908
9299
|
|
|
8909
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9300
|
+
return /*#__PURE__*/createElement("svg", _extends$1j({
|
|
8910
9301
|
viewBox: "0 0 185 79",
|
|
8911
9302
|
fill: "#fff",
|
|
8912
9303
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8913
9304
|
"aria-labelledby": titleId
|
|
8914
9305
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8915
9306
|
id: titleId
|
|
8916
|
-
}, title) : null, _path$
|
|
9307
|
+
}, title) : null, _path$11 || (_path$11 = /*#__PURE__*/createElement("path", {
|
|
8917
9308
|
d: "M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"
|
|
8918
|
-
})), _path2$
|
|
9309
|
+
})), _path2$x || (_path2$x = /*#__PURE__*/createElement("path", {
|
|
8919
9310
|
d: "M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"
|
|
8920
9311
|
})), _path3$o || (_path3$o = /*#__PURE__*/createElement("path", {
|
|
8921
9312
|
d: "M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"
|
|
@@ -8928,20 +9319,20 @@ function SvgLogoSchomburgWhite(_ref) {
|
|
|
8928
9319
|
|
|
8929
9320
|
var _g$f, _defs$7;
|
|
8930
9321
|
|
|
8931
|
-
var _excluded$
|
|
9322
|
+
var _excluded$1H = ["title", "titleId"];
|
|
8932
9323
|
|
|
8933
|
-
function _extends$
|
|
9324
|
+
function _extends$1k() { _extends$1k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1k.apply(this, arguments); }
|
|
8934
9325
|
|
|
8935
|
-
function _objectWithoutProperties$
|
|
9326
|
+
function _objectWithoutProperties$1j(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1k(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8936
9327
|
|
|
8937
|
-
function _objectWithoutPropertiesLoose$
|
|
9328
|
+
function _objectWithoutPropertiesLoose$1k(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8938
9329
|
|
|
8939
9330
|
function SvgLogoSimplyeBlack(_ref) {
|
|
8940
9331
|
var title = _ref.title,
|
|
8941
9332
|
titleId = _ref.titleId,
|
|
8942
|
-
props = _objectWithoutProperties$
|
|
9333
|
+
props = _objectWithoutProperties$1j(_ref, _excluded$1H);
|
|
8943
9334
|
|
|
8944
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9335
|
+
return /*#__PURE__*/createElement("svg", _extends$1k({
|
|
8945
9336
|
viewBox: "0 0 512 148",
|
|
8946
9337
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8947
9338
|
"aria-labelledby": titleId
|
|
@@ -8966,20 +9357,20 @@ function SvgLogoSimplyeBlack(_ref) {
|
|
|
8966
9357
|
|
|
8967
9358
|
var _g$g, _defs$8;
|
|
8968
9359
|
|
|
8969
|
-
var _excluded$
|
|
9360
|
+
var _excluded$1I = ["title", "titleId"];
|
|
8970
9361
|
|
|
8971
|
-
function _extends$
|
|
9362
|
+
function _extends$1l() { _extends$1l = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1l.apply(this, arguments); }
|
|
8972
9363
|
|
|
8973
|
-
function _objectWithoutProperties$
|
|
9364
|
+
function _objectWithoutProperties$1k(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1l(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8974
9365
|
|
|
8975
|
-
function _objectWithoutPropertiesLoose$
|
|
9366
|
+
function _objectWithoutPropertiesLoose$1l(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8976
9367
|
|
|
8977
9368
|
function SvgLogoSimplyeWhite(_ref) {
|
|
8978
9369
|
var title = _ref.title,
|
|
8979
9370
|
titleId = _ref.titleId,
|
|
8980
|
-
props = _objectWithoutProperties$
|
|
9371
|
+
props = _objectWithoutProperties$1k(_ref, _excluded$1I);
|
|
8981
9372
|
|
|
8982
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9373
|
+
return /*#__PURE__*/createElement("svg", _extends$1l({
|
|
8983
9374
|
viewBox: "0 0 512 148",
|
|
8984
9375
|
fill: "#fff",
|
|
8985
9376
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -9004,20 +9395,20 @@ function SvgLogoSimplyeWhite(_ref) {
|
|
|
9004
9395
|
|
|
9005
9396
|
var _g$h, _defs$9;
|
|
9006
9397
|
|
|
9007
|
-
var _excluded$
|
|
9398
|
+
var _excluded$1J = ["title", "titleId"];
|
|
9008
9399
|
|
|
9009
|
-
function _extends$
|
|
9400
|
+
function _extends$1m() { _extends$1m = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1m.apply(this, arguments); }
|
|
9010
9401
|
|
|
9011
|
-
function _objectWithoutProperties$
|
|
9402
|
+
function _objectWithoutProperties$1l(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1m(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
9012
9403
|
|
|
9013
|
-
function _objectWithoutPropertiesLoose$
|
|
9404
|
+
function _objectWithoutPropertiesLoose$1m(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9014
9405
|
|
|
9015
9406
|
function SvgLogoSimplyeColor(_ref) {
|
|
9016
9407
|
var title = _ref.title,
|
|
9017
9408
|
titleId = _ref.titleId,
|
|
9018
|
-
props = _objectWithoutProperties$
|
|
9409
|
+
props = _objectWithoutProperties$1l(_ref, _excluded$1J);
|
|
9019
9410
|
|
|
9020
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9411
|
+
return /*#__PURE__*/createElement("svg", _extends$1m({
|
|
9021
9412
|
viewBox: "0 0 682 196",
|
|
9022
9413
|
fill: "none",
|
|
9023
9414
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -9047,85 +9438,85 @@ function SvgLogoSimplyeColor(_ref) {
|
|
|
9047
9438
|
})))));
|
|
9048
9439
|
}
|
|
9049
9440
|
|
|
9050
|
-
var _path$
|
|
9441
|
+
var _path$12;
|
|
9051
9442
|
|
|
9052
|
-
var _excluded$
|
|
9443
|
+
var _excluded$1K = ["title", "titleId"];
|
|
9053
9444
|
|
|
9054
|
-
function _extends$
|
|
9445
|
+
function _extends$1n() { _extends$1n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1n.apply(this, arguments); }
|
|
9055
9446
|
|
|
9056
|
-
function _objectWithoutProperties$
|
|
9447
|
+
function _objectWithoutProperties$1m(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1n(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
9057
9448
|
|
|
9058
|
-
function _objectWithoutPropertiesLoose$
|
|
9449
|
+
function _objectWithoutPropertiesLoose$1n(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9059
9450
|
|
|
9060
9451
|
function SvgLogoSnflBlack(_ref) {
|
|
9061
9452
|
var title = _ref.title,
|
|
9062
9453
|
titleId = _ref.titleId,
|
|
9063
|
-
props = _objectWithoutProperties$
|
|
9454
|
+
props = _objectWithoutProperties$1m(_ref, _excluded$1K);
|
|
9064
9455
|
|
|
9065
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9456
|
+
return /*#__PURE__*/createElement("svg", _extends$1n({
|
|
9066
9457
|
viewBox: "0 0 84 111",
|
|
9067
9458
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9068
9459
|
"aria-labelledby": titleId
|
|
9069
9460
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
9070
9461
|
id: titleId
|
|
9071
|
-
}, title) : null, _path$
|
|
9462
|
+
}, title) : null, _path$12 || (_path$12 = /*#__PURE__*/createElement("path", {
|
|
9072
9463
|
d: "M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"
|
|
9073
9464
|
})));
|
|
9074
9465
|
}
|
|
9075
9466
|
|
|
9076
|
-
var _path$
|
|
9467
|
+
var _path$13;
|
|
9077
9468
|
|
|
9078
|
-
var _excluded$
|
|
9469
|
+
var _excluded$1L = ["title", "titleId"];
|
|
9079
9470
|
|
|
9080
|
-
function _extends$
|
|
9471
|
+
function _extends$1o() { _extends$1o = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1o.apply(this, arguments); }
|
|
9081
9472
|
|
|
9082
|
-
function _objectWithoutProperties$
|
|
9473
|
+
function _objectWithoutProperties$1n(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1o(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
9083
9474
|
|
|
9084
|
-
function _objectWithoutPropertiesLoose$
|
|
9475
|
+
function _objectWithoutPropertiesLoose$1o(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9085
9476
|
|
|
9086
9477
|
function SvgLogoSnflWhite(_ref) {
|
|
9087
9478
|
var title = _ref.title,
|
|
9088
9479
|
titleId = _ref.titleId,
|
|
9089
|
-
props = _objectWithoutProperties$
|
|
9480
|
+
props = _objectWithoutProperties$1n(_ref, _excluded$1L);
|
|
9090
9481
|
|
|
9091
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9482
|
+
return /*#__PURE__*/createElement("svg", _extends$1o({
|
|
9092
9483
|
viewBox: "0 0 84 111",
|
|
9093
9484
|
fill: "#fff",
|
|
9094
9485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9095
9486
|
"aria-labelledby": titleId
|
|
9096
9487
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
9097
9488
|
id: titleId
|
|
9098
|
-
}, title) : null, _path$
|
|
9489
|
+
}, title) : null, _path$13 || (_path$13 = /*#__PURE__*/createElement("path", {
|
|
9099
9490
|
d: "M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"
|
|
9100
9491
|
})));
|
|
9101
9492
|
}
|
|
9102
9493
|
|
|
9103
|
-
var _path
|
|
9494
|
+
var _path$14, _path2$y, _path3$p, _path4$e, _path5$d, _path6$5, _path7$5, _path8$3, _path9$3, _path10$3, _path11$3, _path12$3, _path13$3, _path14$2, _path15$2, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55;
|
|
9104
9495
|
|
|
9105
|
-
var _excluded$
|
|
9496
|
+
var _excluded$1M = ["title", "titleId"];
|
|
9106
9497
|
|
|
9107
|
-
function _extends$
|
|
9498
|
+
function _extends$1p() { _extends$1p = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1p.apply(this, arguments); }
|
|
9108
9499
|
|
|
9109
|
-
function _objectWithoutProperties$
|
|
9500
|
+
function _objectWithoutProperties$1o(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1p(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
9110
9501
|
|
|
9111
|
-
function _objectWithoutPropertiesLoose$
|
|
9502
|
+
function _objectWithoutPropertiesLoose$1p(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9112
9503
|
|
|
9113
9504
|
function SvgLogoTreasuresColor(_ref) {
|
|
9114
9505
|
var title = _ref.title,
|
|
9115
9506
|
titleId = _ref.titleId,
|
|
9116
|
-
props = _objectWithoutProperties$
|
|
9507
|
+
props = _objectWithoutProperties$1o(_ref, _excluded$1M);
|
|
9117
9508
|
|
|
9118
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9509
|
+
return /*#__PURE__*/createElement("svg", _extends$1p({
|
|
9119
9510
|
viewBox: "0 0 324 265",
|
|
9120
9511
|
fill: "none",
|
|
9121
9512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9122
9513
|
"aria-labelledby": titleId
|
|
9123
9514
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
9124
9515
|
id: titleId
|
|
9125
|
-
}, title) : null, _path
|
|
9516
|
+
}, title) : null, _path$14 || (_path$14 = /*#__PURE__*/createElement("path", {
|
|
9126
9517
|
d: "M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",
|
|
9127
9518
|
fill: "#D3BA81"
|
|
9128
|
-
})), _path2$
|
|
9519
|
+
})), _path2$y || (_path2$y = /*#__PURE__*/createElement("path", {
|
|
9129
9520
|
d: "M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM51.246 115.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",
|
|
9130
9521
|
fill: "#D3BA81"
|
|
9131
9522
|
})), _path3$p || (_path3$p = /*#__PURE__*/createElement("path", {
|
|
@@ -9290,32 +9681,32 @@ function SvgLogoTreasuresColor(_ref) {
|
|
|
9290
9681
|
})));
|
|
9291
9682
|
}
|
|
9292
9683
|
|
|
9293
|
-
var _path$
|
|
9684
|
+
var _path$15, _path2$z, _path3$q, _path4$f, _path5$e, _path6$6, _path7$6, _path8$4, _path9$4, _path10$4, _path11$4, _path12$4, _path13$4, _path14$3, _path15$3, _path16$1, _path17$1, _path18$1, _path19$1, _path20$1, _path21$1, _path22$1, _path23$1, _path24$1, _path25$1, _path26$1, _path27$1, _path28$1, _path29$1, _path30$1, _path31$1, _path32$1, _path33$1, _path34$1, _path35$1, _path36$1, _path37$1, _path38$1, _path39$1, _path40$1, _path41$1, _path42$1, _path43$1, _path44$1, _path45$1, _path46$1, _path47$1, _path48$1, _path49$1, _path50$1, _path51$1, _path52$1, _path53$1, _path54$1, _path55$1;
|
|
9294
9685
|
|
|
9295
|
-
var _excluded$
|
|
9686
|
+
var _excluded$1N = ["title", "titleId"];
|
|
9296
9687
|
|
|
9297
|
-
function _extends$
|
|
9688
|
+
function _extends$1q() { _extends$1q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1q.apply(this, arguments); }
|
|
9298
9689
|
|
|
9299
|
-
function _objectWithoutProperties$
|
|
9690
|
+
function _objectWithoutProperties$1p(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1q(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
9300
9691
|
|
|
9301
|
-
function _objectWithoutPropertiesLoose$
|
|
9692
|
+
function _objectWithoutPropertiesLoose$1q(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9302
9693
|
|
|
9303
9694
|
function SvgLogoTreasuresColorNegative(_ref) {
|
|
9304
9695
|
var title = _ref.title,
|
|
9305
9696
|
titleId = _ref.titleId,
|
|
9306
|
-
props = _objectWithoutProperties$
|
|
9697
|
+
props = _objectWithoutProperties$1p(_ref, _excluded$1N);
|
|
9307
9698
|
|
|
9308
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
9699
|
+
return /*#__PURE__*/createElement("svg", _extends$1q({
|
|
9309
9700
|
viewBox: "0 0 327 266",
|
|
9310
9701
|
fill: "none",
|
|
9311
9702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9312
9703
|
"aria-labelledby": titleId
|
|
9313
9704
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
9314
9705
|
id: titleId
|
|
9315
|
-
}, title) : null, _path$
|
|
9706
|
+
}, title) : null, _path$15 || (_path$15 = /*#__PURE__*/createElement("path", {
|
|
9316
9707
|
d: "M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",
|
|
9317
9708
|
fill: "#D3BA81"
|
|
9318
|
-
})), _path2$
|
|
9709
|
+
})), _path2$z || (_path2$z = /*#__PURE__*/createElement("path", {
|
|
9319
9710
|
d: "M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM53.246 116.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",
|
|
9320
9711
|
fill: "#D3BA81"
|
|
9321
9712
|
})), _path3$q || (_path3$q = /*#__PURE__*/createElement("path", {
|
|
@@ -9530,7 +9921,7 @@ var logoSvgs = {
|
|
|
9530
9921
|
treasuresColorNegative: SvgLogoTreasuresColorNegative
|
|
9531
9922
|
};
|
|
9532
9923
|
|
|
9533
|
-
var _excluded$
|
|
9924
|
+
var _excluded$1O = ["children", "className", "decorative", "id", "name", "size", "title"];
|
|
9534
9925
|
/**
|
|
9535
9926
|
* The `Logo` component renders SVG-based logos and color variants that are
|
|
9536
9927
|
* commonly used by the New York Public Library.
|
|
@@ -9549,7 +9940,7 @@ var Logo$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9549
9940
|
size = _props$size === void 0 ? "medium" : _props$size,
|
|
9550
9941
|
_props$title = props.title,
|
|
9551
9942
|
title = _props$title === void 0 ? name + " logo" : _props$title,
|
|
9552
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9943
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1O);
|
|
9553
9944
|
|
|
9554
9945
|
var styles = useStyleConfig("Logo", {
|
|
9555
9946
|
size: size
|
|
@@ -9598,7 +9989,7 @@ var Logo$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9598
9989
|
}, childSVG);
|
|
9599
9990
|
});
|
|
9600
9991
|
|
|
9601
|
-
var _excluded$
|
|
9992
|
+
var _excluded$1P = ["bodyContent", "closeButtonLabel", "headingText", "id", "isOpen", "onClose"],
|
|
9602
9993
|
_excluded2$5 = ["buttonText", "id", "modalProps"],
|
|
9603
9994
|
_excluded3$3 = ["bodyContent", "closeButtonLabel", "headingText", "id"];
|
|
9604
9995
|
var BaseModal = /*#__PURE__*/chakra(function (_ref) {
|
|
@@ -9609,7 +10000,7 @@ var BaseModal = /*#__PURE__*/chakra(function (_ref) {
|
|
|
9609
10000
|
id = _ref.id,
|
|
9610
10001
|
isOpen = _ref.isOpen,
|
|
9611
10002
|
onClose = _ref.onClose,
|
|
9612
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10003
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
9613
10004
|
|
|
9614
10005
|
var xlarge = "xl";
|
|
9615
10006
|
var fullSize = "full";
|
|
@@ -9699,7 +10090,7 @@ function useModal() {
|
|
|
9699
10090
|
};
|
|
9700
10091
|
}
|
|
9701
10092
|
|
|
9702
|
-
var _excluded$
|
|
10093
|
+
var _excluded$1Q = ["children", "icon", "id", "isCentered", "notificationType"],
|
|
9703
10094
|
_excluded2$6 = ["alignText", "children", "icon", "notificationType"],
|
|
9704
10095
|
_excluded3$4 = ["ariaLabel", "className", "dismissible", "icon", "id", "isCentered", "noMargin", "notificationContent", "notificationHeading", "notificationType", "showIcon"];
|
|
9705
10096
|
/**
|
|
@@ -9712,7 +10103,7 @@ var NotificationHeading$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9712
10103
|
id = props.id,
|
|
9713
10104
|
isCentered = props.isCentered,
|
|
9714
10105
|
notificationType = props.notificationType,
|
|
9715
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10106
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1Q);
|
|
9716
10107
|
|
|
9717
10108
|
var styles = useMultiStyleConfig("NotificationHeading", {
|
|
9718
10109
|
icon: icon,
|
|
@@ -9868,7 +10259,7 @@ var Notification$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9868
10259
|
}, childHeading, childContent), dismissibleButton);
|
|
9869
10260
|
});
|
|
9870
10261
|
|
|
9871
|
-
var _excluded$
|
|
10262
|
+
var _excluded$1R = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
|
|
9872
10263
|
/**
|
|
9873
10264
|
* A component that provides a navigational list of page items.
|
|
9874
10265
|
*/
|
|
@@ -9882,7 +10273,7 @@ var Pagination$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9882
10273
|
initialPage = _props$initialPage === void 0 ? 1 : _props$initialPage,
|
|
9883
10274
|
onPageChange = props.onPageChange,
|
|
9884
10275
|
pageCount = props.pageCount,
|
|
9885
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10276
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1R);
|
|
9886
10277
|
|
|
9887
10278
|
var refCurrentPage = useRef(currentPage);
|
|
9888
10279
|
|
|
@@ -10074,7 +10465,7 @@ var Pagination$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10074
10465
|
}, previousLiLink, getPaginationNumbers(selectedPage), nextLiLink));
|
|
10075
10466
|
});
|
|
10076
10467
|
|
|
10077
|
-
var _excluded$
|
|
10468
|
+
var _excluded$1S = ["darkMode", "id", "indicatorType", "isIndeterminate", "labelText", "showLabel", "size", "value"];
|
|
10078
10469
|
/**
|
|
10079
10470
|
* A component that displays a progress status for any task that takes a long
|
|
10080
10471
|
* time to complete or consists of multiple steps. Examples include downloading,
|
|
@@ -10096,7 +10487,7 @@ var ProgressIndicator$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10096
10487
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
10097
10488
|
_props$value = props.value,
|
|
10098
10489
|
value = _props$value === void 0 ? 0 : _props$value,
|
|
10099
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10490
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1S);
|
|
10100
10491
|
|
|
10101
10492
|
var styles = useMultiStyleConfig("ProgressIndicator", {
|
|
10102
10493
|
darkMode: darkMode,
|
|
@@ -10162,7 +10553,7 @@ var ProgressIndicator$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10162
10553
|
}, rest), progressComponent(indicatorType));
|
|
10163
10554
|
});
|
|
10164
10555
|
|
|
10165
|
-
var _excluded$
|
|
10556
|
+
var _excluded$1T = ["className", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
|
|
10166
10557
|
var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
10167
10558
|
var className = props.className,
|
|
10168
10559
|
helperText = props.helperText,
|
|
@@ -10183,7 +10574,7 @@ var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
10183
10574
|
_props$showLabel = props.showLabel,
|
|
10184
10575
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
10185
10576
|
value = props.value,
|
|
10186
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10577
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1T);
|
|
10187
10578
|
|
|
10188
10579
|
var styles = useMultiStyleConfig("Radio", {
|
|
10189
10580
|
showLabel: showLabel
|
|
@@ -10230,7 +10621,7 @@ var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
10230
10621
|
}, labelText)));
|
|
10231
10622
|
}));
|
|
10232
10623
|
|
|
10233
|
-
var _excluded$
|
|
10624
|
+
var _excluded$1U = ["children", "className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
10234
10625
|
/**
|
|
10235
10626
|
* RadioGroup is a wrapper for DS `Radio` components that renders as a fieldset
|
|
10236
10627
|
* HTML element along with optional helper text. The `name` prop is essential
|
|
@@ -10266,7 +10657,7 @@ var RadioGroup$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
10266
10657
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
10267
10658
|
_props$showRequiredLa = props.showRequiredLabel,
|
|
10268
10659
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
10269
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10660
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1U);
|
|
10270
10661
|
|
|
10271
10662
|
var _React$useState = useState(defaultValue),
|
|
10272
10663
|
value = _React$useState[0],
|
|
@@ -10336,7 +10727,7 @@ var RadioGroup$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
10336
10727
|
}));
|
|
10337
10728
|
}));
|
|
10338
10729
|
|
|
10339
|
-
var _excluded$
|
|
10730
|
+
var _excluded$1V = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
|
|
10340
10731
|
/**
|
|
10341
10732
|
* Component that renders Chakra's `Select` component along with an accessible
|
|
10342
10733
|
* `Label` and optional `HelperErrorText` component.
|
|
@@ -10370,7 +10761,7 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/React__default.forwardRef(funct
|
|
|
10370
10761
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
10371
10762
|
_props$value = props.value,
|
|
10372
10763
|
value = _props$value === void 0 ? "" : _props$value,
|
|
10373
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10764
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1V);
|
|
10374
10765
|
|
|
10375
10766
|
var _useState = useState(0),
|
|
10376
10767
|
labelWidth = _useState[0],
|
|
@@ -10456,7 +10847,7 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/React__default.forwardRef(funct
|
|
|
10456
10847
|
}), children)));
|
|
10457
10848
|
}));
|
|
10458
10849
|
|
|
10459
|
-
var _excluded$
|
|
10850
|
+
var _excluded$1W = ["action", "buttonOnClick", "className", "descriptionText", "headingText", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "method", "noBrandButtonType", "onSubmit", "selectProps", "textInputElement", "textInputProps"];
|
|
10460
10851
|
/**
|
|
10461
10852
|
* Renders a wrapper `form` element to be used with `Select` (optional),
|
|
10462
10853
|
* `Input`, and `Button` components together.
|
|
@@ -10485,7 +10876,7 @@ var SearchBar$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10485
10876
|
selectProps = props.selectProps,
|
|
10486
10877
|
textInputElement = props.textInputElement,
|
|
10487
10878
|
textInputProps = props.textInputProps,
|
|
10488
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10879
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1W);
|
|
10489
10880
|
|
|
10490
10881
|
var styles = useMultiStyleConfig("SearchBar", {});
|
|
10491
10882
|
var stateProps = {
|
|
@@ -10578,7 +10969,7 @@ var SearchBar$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10578
10969
|
}, selectElem, textInputElem, buttonElem));
|
|
10579
10970
|
});
|
|
10580
10971
|
|
|
10581
|
-
var _excluded$
|
|
10972
|
+
var _excluded$1X = ["className", "contentSize", "headingSize", "imageAspectRatio", "isBordered", "layout", "showButton", "showContent", "showHeading", "showImage", "width"];
|
|
10582
10973
|
/**
|
|
10583
10974
|
* The `SkeletonLoader` component renders a placeholder to be used while
|
|
10584
10975
|
* dynamic content is loading.
|
|
@@ -10605,7 +10996,7 @@ var SkeletonLoader$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10605
10996
|
_props$showImage = props.showImage,
|
|
10606
10997
|
showImage = _props$showImage === void 0 ? true : _props$showImage,
|
|
10607
10998
|
width = props.width,
|
|
10608
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10999
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1X);
|
|
10609
11000
|
|
|
10610
11001
|
var styles = useMultiStyleConfig("SkeletonLoader", {
|
|
10611
11002
|
isBordered: isBordered,
|
|
@@ -10667,7 +11058,7 @@ var SkeletonLoader$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10667
11058
|
})))));
|
|
10668
11059
|
});
|
|
10669
11060
|
|
|
10670
|
-
var _excluded$
|
|
11061
|
+
var _excluded$1Y = ["className", "id", "target"];
|
|
10671
11062
|
/**
|
|
10672
11063
|
* SkipNavigation is a component that is used to provide a navigational list of
|
|
10673
11064
|
* links. The first link is used to skip to the main content of the page using
|
|
@@ -10680,7 +11071,7 @@ var SkipNavigation$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10680
11071
|
id = props.id,
|
|
10681
11072
|
_props$target = props.target,
|
|
10682
11073
|
target = _props$target === void 0 ? "#mainContent" : _props$target,
|
|
10683
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11074
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1Y);
|
|
10684
11075
|
|
|
10685
11076
|
var styles = useStyleConfig("SkipNavigation");
|
|
10686
11077
|
return createElement(Box, Object.assign({
|
|
@@ -10700,7 +11091,7 @@ var SkipNavigation$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10700
11091
|
}, "Click to learn about accessibility at the Library"))));
|
|
10701
11092
|
});
|
|
10702
11093
|
|
|
10703
|
-
var _excluded$
|
|
11094
|
+
var _excluded$1Z = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRangeSlider", "isRequired", "labelText", "max", "min", "name", "onChange", "showBoxes", "showHelperInvalidText", "showLabel", "showRequiredLabel", "showValues", "step"];
|
|
10704
11095
|
/**
|
|
10705
11096
|
* The `Slider` component renders a singular value slider or a range slider
|
|
10706
11097
|
* with a min and max value. The value(s) can be updated through the slider
|
|
@@ -10741,7 +11132,7 @@ var Slider = /*#__PURE__*/chakra(function (props) {
|
|
|
10741
11132
|
showValues = _props$showValues === void 0 ? true : _props$showValues,
|
|
10742
11133
|
_props$step = props.step,
|
|
10743
11134
|
step = _props$step === void 0 ? 1 : _props$step,
|
|
10744
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11135
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1Z);
|
|
10745
11136
|
|
|
10746
11137
|
if (!id) {
|
|
10747
11138
|
console.warn("NYPL Reservoir Slider: This component's required `id` prop was not passed.");
|
|
@@ -10930,7 +11321,7 @@ var Slider = /*#__PURE__*/chakra(function (props) {
|
|
|
10930
11321
|
}, max), showBoxes && getTextInput("end")));
|
|
10931
11322
|
});
|
|
10932
11323
|
|
|
10933
|
-
var _excluded$
|
|
11324
|
+
var _excluded$1_ = ["children", "className", "id", "level"];
|
|
10934
11325
|
/**
|
|
10935
11326
|
* The `StatusBadge` component is used to display a visual badge for three
|
|
10936
11327
|
* different status levels.
|
|
@@ -10942,7 +11333,7 @@ var StatusBadge$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10942
11333
|
id = props.id,
|
|
10943
11334
|
_props$level = props.level,
|
|
10944
11335
|
level = _props$level === void 0 ? "low" : _props$level,
|
|
10945
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11336
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1_);
|
|
10946
11337
|
|
|
10947
11338
|
var styles = useStyleConfig("StatusBadge", {
|
|
10948
11339
|
variant: level
|
|
@@ -10959,7 +11350,7 @@ var StatusBadge$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10959
11350
|
}, rest), children);
|
|
10960
11351
|
});
|
|
10961
11352
|
|
|
10962
|
-
var _excluded$
|
|
11353
|
+
var _excluded$1$ = ["calloutText", "className", "headingText", "id", "imageProps", "bodyContent"];
|
|
10963
11354
|
/**
|
|
10964
11355
|
* Internal component used in the `StructuredContent` component
|
|
10965
11356
|
* that renders the DS `Image` component.
|
|
@@ -11011,7 +11402,7 @@ var StructuredContent$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
11011
11402
|
src: ""
|
|
11012
11403
|
} : _props$imageProps,
|
|
11013
11404
|
bodyContent = props.bodyContent,
|
|
11014
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11405
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1$);
|
|
11015
11406
|
|
|
11016
11407
|
var hasImage = imageProps.src || imageProps.component;
|
|
11017
11408
|
var hasFigureImage = imageProps.caption || imageProps.credit;
|
|
@@ -11112,7 +11503,7 @@ var useCarouselStyles = function useCarouselStyles(slidesCount, slideWidth) {
|
|
|
11112
11503
|
};
|
|
11113
11504
|
};
|
|
11114
11505
|
|
|
11115
|
-
var _excluded$
|
|
11506
|
+
var _excluded$20 = ["children", "defaultIndex", "id", "onChange", "tabsData", "useHash"];
|
|
11116
11507
|
/**
|
|
11117
11508
|
* An internal function used to update the hash in the URL.
|
|
11118
11509
|
* This function is only used when `useHash` is `true`.
|
|
@@ -11231,7 +11622,7 @@ var Tabs = /*#__PURE__*/chakra(function (props) {
|
|
|
11231
11622
|
tabsData = props.tabsData,
|
|
11232
11623
|
_props$useHash = props.useHash,
|
|
11233
11624
|
useHash = _props$useHash === void 0 ? false : _props$useHash,
|
|
11234
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11625
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$20);
|
|
11235
11626
|
|
|
11236
11627
|
var styles = useMultiStyleConfig("Tabs", {}); // Just an estimate of the tab width for the mobile carousel.
|
|
11237
11628
|
|
|
@@ -11320,7 +11711,7 @@ var Tabs = /*#__PURE__*/chakra(function (props) {
|
|
|
11320
11711
|
}, createElement(Box, Object.assign({}, carouselStyle), tabs)), nextButton), panels);
|
|
11321
11712
|
}); // Tabs is also exported above so the props can display in Storybook.
|
|
11322
11713
|
|
|
11323
|
-
var _excluded$
|
|
11714
|
+
var _excluded$21 = ["aboveHeader", "breakout", "contentId", "contentPrimary", "contentSidebar", "contentTop", "footer", "header", "sidebar", "renderFooterElement", "renderHeaderElement", "renderSkipNavigation"];
|
|
11324
11715
|
/**
|
|
11325
11716
|
* The main top-level parent component that wraps all template-related
|
|
11326
11717
|
* components.
|
|
@@ -11549,7 +11940,7 @@ var TemplateAppContainer = /*#__PURE__*/chakra(function (props) {
|
|
|
11549
11940
|
renderHeaderElement = _props$renderHeaderEl === void 0 ? true : _props$renderHeaderEl,
|
|
11550
11941
|
_props$renderSkipNavi = props.renderSkipNavigation,
|
|
11551
11942
|
renderSkipNavigation = _props$renderSkipNavi === void 0 ? false : _props$renderSkipNavi,
|
|
11552
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11943
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$21);
|
|
11553
11944
|
|
|
11554
11945
|
var aboveHeaderElem = aboveHeader && createElement(TemplateAboveHeader, null, aboveHeader);
|
|
11555
11946
|
var breakoutElem = breakout && createElement(TemplateBreakout$1, null, breakout);
|
|
@@ -11566,7 +11957,7 @@ var TemplateAppContainer = /*#__PURE__*/chakra(function (props) {
|
|
|
11566
11957
|
}, footer));
|
|
11567
11958
|
});
|
|
11568
11959
|
|
|
11569
|
-
var _excluded$
|
|
11960
|
+
var _excluded$22 = ["defaultChecked", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "size"];
|
|
11570
11961
|
var onChangeDefault = function onChangeDefault() {
|
|
11571
11962
|
return;
|
|
11572
11963
|
};
|
|
@@ -11593,7 +11984,7 @@ var Toggle$2 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
11593
11984
|
onChange = _props$onChange === void 0 ? onChangeDefault : _props$onChange,
|
|
11594
11985
|
_props$size = props.size,
|
|
11595
11986
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
11596
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11987
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$22);
|
|
11597
11988
|
|
|
11598
11989
|
var styles = useMultiStyleConfig("Toggle", {
|
|
11599
11990
|
isDisabled: isDisabled,
|
|
@@ -11730,39 +12121,7 @@ function useNYPLTheme() {
|
|
|
11730
12121
|
};
|
|
11731
12122
|
}
|
|
11732
12123
|
|
|
11733
|
-
|
|
11734
|
-
* React hook used to get the window size on device resizing.
|
|
11735
|
-
* Based on https://usehooks-typescript.com/react-hook/use-window-size
|
|
11736
|
-
*/
|
|
11737
|
-
|
|
11738
|
-
function useWindowSize() {
|
|
11739
|
-
var _React$useState = React__default.useState({
|
|
11740
|
-
width: 0,
|
|
11741
|
-
height: 0
|
|
11742
|
-
}),
|
|
11743
|
-
windowSize = _React$useState[0],
|
|
11744
|
-
setWindowSize = _React$useState[1];
|
|
11745
|
-
|
|
11746
|
-
React__default.useEffect(function () {
|
|
11747
|
-
var handler = function handler() {
|
|
11748
|
-
setWindowSize({
|
|
11749
|
-
width: window.innerWidth,
|
|
11750
|
-
height: window.innerHeight
|
|
11751
|
-
});
|
|
11752
|
-
}; // Set size at the first client-side load
|
|
11753
|
-
|
|
11754
|
-
|
|
11755
|
-
handler();
|
|
11756
|
-
window.addEventListener("resize", handler); // Remove event listener on cleanup
|
|
11757
|
-
|
|
11758
|
-
return function () {
|
|
11759
|
-
window.removeEventListener("resize", handler);
|
|
11760
|
-
};
|
|
11761
|
-
}, []);
|
|
11762
|
-
return windowSize;
|
|
11763
|
-
}
|
|
11764
|
-
|
|
11765
|
-
var _excluded$1Z = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
|
|
12124
|
+
var _excluded$23 = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
|
|
11766
12125
|
var VideoPlayer$1 = /*#__PURE__*/chakra(function (props) {
|
|
11767
12126
|
var aspectRatio = props.aspectRatio,
|
|
11768
12127
|
className = props.className,
|
|
@@ -11776,7 +12135,7 @@ var VideoPlayer$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
11776
12135
|
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
11777
12136
|
videoId = props.videoId,
|
|
11778
12137
|
videoType = props.videoType,
|
|
11779
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
12138
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$23);
|
|
11780
12139
|
|
|
11781
12140
|
var iframeTitleFinal = videoType === "vimeo" ? iframeTitle || "Vimeo video player" : iframeTitle || "YouTube video player";
|
|
11782
12141
|
var videoSrc = videoType === "vimeo" ? "https://player.vimeo.com/video/" + videoId + "?autoplay=0&loop=0" : "https://www.youtube.com/embed/" + videoId + "?disablekb=1&autoplay=0&fs=1&modestbranding=0";
|
|
@@ -11845,97 +12204,5 @@ var VideoPlayer$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
11845
12204
|
}, embedElement)));
|
|
11846
12205
|
});
|
|
11847
12206
|
|
|
11848
|
-
|
|
11849
|
-
/**
|
|
11850
|
-
* Basic `Table` component used to organize and display tabular data in
|
|
11851
|
-
* rows and columns.
|
|
11852
|
-
*/
|
|
11853
|
-
|
|
11854
|
-
var Table = /*#__PURE__*/chakra(function (props) {
|
|
11855
|
-
var className = props.className,
|
|
11856
|
-
_props$columnHeaders = props.columnHeaders,
|
|
11857
|
-
columnHeaders = _props$columnHeaders === void 0 ? [] : _props$columnHeaders,
|
|
11858
|
-
columnHeadersBackgroundColor = props.columnHeadersBackgroundColor,
|
|
11859
|
-
columnHeadersTextColor = props.columnHeadersTextColor,
|
|
11860
|
-
id = props.id,
|
|
11861
|
-
_props$showRowDivider = props.showRowDividers,
|
|
11862
|
-
showRowDividers = _props$showRowDivider === void 0 ? false : _props$showRowDivider,
|
|
11863
|
-
tableData = props.tableData,
|
|
11864
|
-
titleText = props.titleText,
|
|
11865
|
-
_props$useRowHeaders = props.useRowHeaders,
|
|
11866
|
-
useRowHeaders = _props$useRowHeaders === void 0 ? false : _props$useRowHeaders,
|
|
11867
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$1_);
|
|
11868
|
-
|
|
11869
|
-
var customColors = {};
|
|
11870
|
-
columnHeadersBackgroundColor && (customColors["backgroundColor"] = columnHeadersBackgroundColor);
|
|
11871
|
-
columnHeadersTextColor && (customColors["color"] = columnHeadersTextColor);
|
|
11872
|
-
var styles = useMultiStyleConfig("CustomTable", {
|
|
11873
|
-
columnHeadersBackgroundColor: columnHeadersBackgroundColor,
|
|
11874
|
-
columnHeadersTextColor: columnHeadersTextColor,
|
|
11875
|
-
showRowDividers: showRowDividers,
|
|
11876
|
-
useRowHeaders: useRowHeaders
|
|
11877
|
-
}); // Based on --nypl-breakpoint-medium
|
|
11878
|
-
|
|
11879
|
-
var breakpointMedium = 600;
|
|
11880
|
-
var windowDimensions = useWindowSize();
|
|
11881
|
-
var tableCaption = titleText && createElement(TableCaption, null, titleText);
|
|
11882
|
-
var columnHeadersElems = columnHeaders.length > 0 ? createElement(Thead, null, createElement(Tr, null, columnHeaders.map(function (child, key) {
|
|
11883
|
-
return createElement(Th, {
|
|
11884
|
-
key: key,
|
|
11885
|
-
scope: "col",
|
|
11886
|
-
sx: customColors
|
|
11887
|
-
}, child);
|
|
11888
|
-
}))) : console.warn("NYPL Reservoir Table: Column headers have not been set. For improved accessibility, " + "column headers are required.");
|
|
11889
|
-
/**
|
|
11890
|
-
* This renders a normal `tbody` DOM element structure if the `tableData`
|
|
11891
|
-
* passed is a two-dimensional array. This is to render the appropriate
|
|
11892
|
-
* row and column structure for a table.
|
|
11893
|
-
*/
|
|
11894
|
-
|
|
11895
|
-
var tableBodyElems = function tableBodyElems() {
|
|
11896
|
-
if (!Array.isArray(tableData) || tableData.length <= 0 || tableData[0].constructor !== Array) {
|
|
11897
|
-
console.warn("NYPL Reservoir Table: Data in the `tableData` prop must be a two dimensional array.");
|
|
11898
|
-
return null;
|
|
11899
|
-
}
|
|
11900
|
-
|
|
11901
|
-
for (var i = 1; i < tableData.length; i++) {
|
|
11902
|
-
if (tableData[0].length !== tableData[i].length) {
|
|
11903
|
-
console.warn("NYPL Reservoir Table: The number of columns in each row of the data table are not identical. " + "The `Table` component may not render properly.");
|
|
11904
|
-
break;
|
|
11905
|
-
}
|
|
11906
|
-
}
|
|
11907
|
-
|
|
11908
|
-
var cellContent = function cellContent(key, column) {
|
|
11909
|
-
return windowDimensions.width <= breakpointMedium ? createElement(Fragment, null, createElement("span", null, columnHeaders[key]), createElement("span", null, column)) : column;
|
|
11910
|
-
};
|
|
11911
|
-
|
|
11912
|
-
return createElement(Tbody, null, tableData.map(function (row, index) {
|
|
11913
|
-
return createElement(Tr, {
|
|
11914
|
-
key: index
|
|
11915
|
-
}, row.map(function (column, key) {
|
|
11916
|
-
return key === 0 && useRowHeaders ? createElement(Th, {
|
|
11917
|
-
scope: "row",
|
|
11918
|
-
key: key
|
|
11919
|
-
}, cellContent(key, column)) : createElement(Td, {
|
|
11920
|
-
key: key
|
|
11921
|
-
}, cellContent(key, column));
|
|
11922
|
-
}));
|
|
11923
|
-
}));
|
|
11924
|
-
};
|
|
11925
|
-
|
|
11926
|
-
for (var j = 0; j < tableData.length; j++) {
|
|
11927
|
-
if (columnHeaders.length && columnHeaders.length !== tableData[j].length) {
|
|
11928
|
-
console.warn("NYPL Reservoir Table: The number of column headers in the `columnHeaders` prop is not equal " + "to the number of columns in the data table. " + "The `Table` component may not render properly.");
|
|
11929
|
-
break;
|
|
11930
|
-
}
|
|
11931
|
-
}
|
|
11932
|
-
|
|
11933
|
-
return createElement(Table$1, Object.assign({
|
|
11934
|
-
id: id,
|
|
11935
|
-
sx: styles,
|
|
11936
|
-
className: className
|
|
11937
|
-
}, rest), tableCaption, columnHeadersElems, tableBodyElems());
|
|
11938
|
-
});
|
|
11939
|
-
|
|
11940
|
-
export { Accordion, Breadcrumbs, Button, ButtonGroup, Card, CardActions, CardContent, CardHeading, Checkbox, CheckboxGroup, DSProvider, DatePicker, Fieldset, Form, FormField, FormRow, Heading, HelperErrorText, Hero$1 as Hero, HorizontalRule$1 as HorizontalRule, Icon, Image, Label, Link, List$1 as List, Logo$1 as Logo, ModalTrigger, Notification$1 as Notification, Pagination$1 as Pagination, ProgressIndicator$1 as ProgressIndicator, Radio$1 as Radio, RadioGroup$1 as RadioGroup, SearchBar$1 as SearchBar, Select$1 as Select, SimpleGrid, SkeletonLoader$1 as SkeletonLoader, SkipNavigation$1 as SkipNavigation, Slider, StatusBadge$1 as StatusBadge, StructuredContent$1 as StructuredContent, Table, Tabs, Template$1 as Template, TemplateAboveHeader, TemplateAppContainer, TemplateBreakout$1 as TemplateBreakout, TemplateContent$1 as TemplateContent, TemplateContentPrimary$1 as TemplateContentPrimary, TemplateContentSidebar$1 as TemplateContentSidebar, TemplateContentTop$1 as TemplateContentTop, TemplateFooter, TemplateHeader$1 as TemplateHeader, Text, TextInput, Toggle$2 as Toggle, VideoPlayer$1 as VideoPlayer, useCarouselStyles, useModal, useNYPLBreakpoints, useNYPLTheme, useWindowSize };
|
|
12207
|
+
export { Accordion, Breadcrumbs, Button, ButtonGroup, Card, CardActions, CardContent, CardHeading, Checkbox, CheckboxGroup, ColorCard, DSProvider, DatePicker, Fieldset, Form, FormField, FormRow, Heading, HelperErrorText, Hero$1 as Hero, HorizontalRule$1 as HorizontalRule, Icon, Image, Label, Link, List$1 as List, Logo$1 as Logo, ModalTrigger, Notification$1 as Notification, Pagination$1 as Pagination, ProgressIndicator$1 as ProgressIndicator, Radio$1 as Radio, RadioGroup$1 as RadioGroup, SearchBar$1 as SearchBar, Select$1 as Select, SimpleGrid, SkeletonLoader$1 as SkeletonLoader, SkipNavigation$1 as SkipNavigation, Slider, StatusBadge$1 as StatusBadge, StructuredContent$1 as StructuredContent, Table, Tabs, Template$1 as Template, TemplateAboveHeader, TemplateAppContainer, TemplateBreakout$1 as TemplateBreakout, TemplateContent$1 as TemplateContent, TemplateContentPrimary$1 as TemplateContentPrimary, TemplateContentSidebar$1 as TemplateContentSidebar, TemplateContentTop$1 as TemplateContentTop, TemplateFooter, TemplateHeader$1 as TemplateHeader, Text, TextInput, Toggle$2 as Toggle, VideoPlayer$1 as VideoPlayer, useCarouselStyles, useModal, useNYPLBreakpoints, useNYPLTheme, useWindowSize };
|
|
11941
12208
|
//# sourceMappingURL=design-system-react-components.esm.js.map
|