@nypl/design-system-react-components 0.28.0 → 1.0.2
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 +39 -0
- package/README.md +10 -10
- package/dist/components/Checkbox/Checkbox.d.ts +0 -1
- package/dist/components/ComponentWrapper/ComponentWrapper.d.ts +8 -0
- package/dist/components/Heading/Heading.d.ts +2 -0
- package/dist/components/Logo/Logo.d.ts +1 -1
- package/dist/components/Logo/LogoSvgs.d.ts +4 -0
- package/dist/design-system-react-components.cjs.development.js +1021 -683
- 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 +1022 -684
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/theme/components/button.d.ts +1 -0
- package/dist/theme/components/card.d.ts +98 -13
- package/dist/theme/components/checkboxGroup.d.ts +1 -1
- package/dist/theme/components/global.d.ts +1 -1
- package/dist/theme/components/heading.d.ts +4 -16
- package/dist/theme/components/image.d.ts +6 -0
- package/dist/theme/components/radioGroup.d.ts +1 -1
- package/dist/theme/components/skipNavigation.d.ts +3 -0
- package/dist/theme/components/structuredContent.d.ts +0 -5
- package/dist/utils/utils.d.ts +15 -0
- package/package.json +6 -6
- package/src/components/Accordion/Accordion.stories.mdx +18 -46
- package/src/components/Accordion/Accordion.tsx +3 -2
- package/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap +12 -12
- package/src/components/Button/Button.stories.mdx +1 -1
- package/src/components/ButtonGroup/ButtonGroup.stories.mdx +33 -2
- package/src/components/ButtonGroup/ButtonGroup.tsx +2 -1
- package/src/components/Card/Card.stories.mdx +2 -4
- package/src/components/Card/Card.tsx +2 -1
- package/src/components/Chakra/Box.stories.mdx +1 -1
- package/src/components/Chakra/Center.stories.mdx +1 -1
- package/src/components/Chakra/Flex.stories.mdx +1 -1
- package/src/components/Chakra/Grid.stories.mdx +1 -1
- package/src/components/Chakra/Stack.stories.mdx +1 -1
- package/src/components/Checkbox/Checkbox.stories.mdx +1 -1
- package/src/components/Checkbox/Checkbox.test.tsx +42 -11
- package/src/components/Checkbox/Checkbox.tsx +25 -39
- package/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap +589 -544
- package/src/components/CheckboxGroup/CheckboxGroup.stories.mdx +1 -1
- package/src/components/CheckboxGroup/CheckboxGroup.tsx +1 -1
- package/src/components/CheckboxGroup/__snapshots__/CheckboxGroup.test.tsx.snap +1540 -1420
- package/src/components/ComponentWrapper/ComponentWrapper.tsx +12 -3
- package/src/components/ComponentWrapper/__snapshots__/ComponentWrapper.test.tsx.snap +5 -0
- package/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap +36 -17
- package/src/components/Grid/SimpleGrid.stories.mdx +1 -3
- package/src/components/Heading/Heading.stories.mdx +4 -1
- package/src/components/Heading/Heading.tsx +4 -1
- package/src/components/Image/Image.stories.mdx +1 -1
- package/src/components/Logo/Logo.stories.mdx +10 -5
- package/src/components/Logo/Logo.tsx +4 -0
- package/src/components/Logo/LogoSvgs.tsx +8 -0
- package/src/components/Modal/Modal.stories.mdx +83 -90
- package/src/components/Pagination/Pagination.stories.mdx +1 -1
- package/src/components/Radio/Radio.stories.mdx +1 -1
- package/src/components/Radio/Radio.tsx +22 -31
- package/src/components/Radio/__snapshots__/Radio.test.tsx.snap +405 -365
- package/src/components/RadioGroup/RadioGroup.stories.mdx +2 -1
- package/src/components/RadioGroup/RadioGroup.tsx +2 -1
- package/src/components/RadioGroup/__snapshots__/RadioGroup.test.tsx.snap +1236 -1116
- package/src/components/SearchBar/SearchBar.stories.mdx +3 -3
- package/src/components/SearchBar/__snapshots__/SearchBar.test.tsx.snap +32 -10
- package/src/components/Select/Select.stories.mdx +1 -1
- package/src/components/Select/Select.tsx +24 -22
- package/src/components/Select/__snapshots__/Select.test.tsx.snap +21 -11
- package/src/components/SkipNavigation/SkipNavigation.stories.mdx +2 -2
- package/src/components/Slider/Slider.stories.mdx +1 -1
- package/src/components/Slider/Slider.tsx +14 -14
- package/src/components/Slider/__snapshots__/Slider.test.tsx.snap +66 -33
- package/src/components/StyleGuide/Buttons.stories.mdx +1 -1
- package/src/components/StyleGuide/Colors.stories.mdx +2 -2
- package/src/components/StyleGuide/Forms.stories.mdx +2 -1
- package/src/components/StyleGuide/Iconography.stories.mdx +2 -2
- package/src/components/StyleGuide/Spacing.stories.mdx +1 -1
- package/src/components/StyleGuide/Typography.stories.mdx +1 -1
- package/src/components/Table/Table.stories.mdx +1 -5
- package/src/components/Table/Table.test.tsx +33 -0
- package/src/components/Table/Table.tsx +21 -0
- package/src/components/Template/Template.stories.mdx +9 -5
- package/src/components/TextInput/TextInput.stories.mdx +1 -1
- package/src/components/TextInput/TextInput.tsx +21 -21
- package/src/components/TextInput/__snapshots__/TextInput.test.tsx.snap +19 -9
- package/src/components/Toggle/Toggle.stories.mdx +1 -1
- package/src/components/Toggle/Toggle.tsx +22 -20
- package/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap +400 -372
- package/src/components/VideoPlayer/VideoPlayer.stories.mdx +1 -0
- package/src/components/VideoPlayer/__snapshots__/VideoPlayer.test.tsx.snap +5 -0
- package/src/docs/Chakra.stories.mdx +2 -2
- package/src/theme/components/button.ts +1 -0
- package/src/theme/components/card.ts +9 -3
- package/src/theme/components/componentWrapper.ts +1 -1
- package/src/theme/components/global.ts +1 -1
- package/src/theme/components/heading.ts +3 -3
- package/src/theme/components/image.ts +1 -0
- package/src/theme/components/skipNavigation.ts +3 -0
- package/src/theme/foundations/colors.ts +6 -9
- package/src/utils/utils.ts +40 -0
|
@@ -1,4 +1,4 @@
|
|
|
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, Stack, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, 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,
|
|
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, 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, TableCaption, Thead, Tr, Th, Table as Table$1, Tbody, Td } from '@chakra-ui/react';
|
|
2
2
|
export { Box, Center, Circle, Flex, Grid, GridItem, HStack, Spacer, Square, Stack, Tab, TabList, TabPanel, TabPanels, VStack } from '@chakra-ui/react';
|
|
3
3
|
import React__default, { createElement, cloneElement, Fragment, Children, useState, useEffect, forwardRef, useRef } from 'react';
|
|
4
4
|
import ReactDatePicker from 'react-datepicker';
|
|
@@ -6,7 +6,7 @@ import { createBreakpoints, cssVar } from '@chakra-ui/theme-tools';
|
|
|
6
6
|
import { keyframes } from '@chakra-ui/system';
|
|
7
7
|
|
|
8
8
|
function _extends() {
|
|
9
|
-
_extends = Object.assign
|
|
9
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
|
10
10
|
for (var i = 1; i < arguments.length; i++) {
|
|
11
11
|
var source = arguments[i];
|
|
12
12
|
|
|
@@ -19,7 +19,6 @@ function _extends() {
|
|
|
19
19
|
|
|
20
20
|
return target;
|
|
21
21
|
};
|
|
22
|
-
|
|
23
22
|
return _extends.apply(this, arguments);
|
|
24
23
|
}
|
|
25
24
|
|
|
@@ -42,7 +41,7 @@ var _path, _path2, _path3;
|
|
|
42
41
|
|
|
43
42
|
var _excluded = ["title", "titleId"];
|
|
44
43
|
|
|
45
|
-
function _extends$1() { _extends$1 = Object.assign
|
|
44
|
+
function _extends$1() { _extends$1 = 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$1.apply(this, arguments); }
|
|
46
45
|
|
|
47
46
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1(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; }
|
|
48
47
|
|
|
@@ -82,7 +81,7 @@ var _path$1, _path2$1, _path3$1;
|
|
|
82
81
|
|
|
83
82
|
var _excluded$1 = ["title", "titleId"];
|
|
84
83
|
|
|
85
|
-
function _extends$2() { _extends$2 = Object.assign
|
|
84
|
+
function _extends$2() { _extends$2 = 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$2.apply(this, arguments); }
|
|
86
85
|
|
|
87
86
|
function _objectWithoutProperties$1(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$2(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; }
|
|
88
87
|
|
|
@@ -122,7 +121,7 @@ var _path$2;
|
|
|
122
121
|
|
|
123
122
|
var _excluded$2 = ["title", "titleId"];
|
|
124
123
|
|
|
125
|
-
function _extends$3() { _extends$3 = Object.assign
|
|
124
|
+
function _extends$3() { _extends$3 = 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$3.apply(this, arguments); }
|
|
126
125
|
|
|
127
126
|
function _objectWithoutProperties$2(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$3(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; }
|
|
128
127
|
|
|
@@ -150,7 +149,7 @@ var _path$3;
|
|
|
150
149
|
|
|
151
150
|
var _excluded$3 = ["title", "titleId"];
|
|
152
151
|
|
|
153
|
-
function _extends$4() { _extends$4 = Object.assign
|
|
152
|
+
function _extends$4() { _extends$4 = 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$4.apply(this, arguments); }
|
|
154
153
|
|
|
155
154
|
function _objectWithoutProperties$3(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$4(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; }
|
|
156
155
|
|
|
@@ -178,7 +177,7 @@ var _path$4;
|
|
|
178
177
|
|
|
179
178
|
var _excluded$4 = ["title", "titleId"];
|
|
180
179
|
|
|
181
|
-
function _extends$5() { _extends$5 = Object.assign
|
|
180
|
+
function _extends$5() { _extends$5 = 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$5.apply(this, arguments); }
|
|
182
181
|
|
|
183
182
|
function _objectWithoutProperties$4(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$5(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; }
|
|
184
183
|
|
|
@@ -206,7 +205,7 @@ var _path$5;
|
|
|
206
205
|
|
|
207
206
|
var _excluded$5 = ["title", "titleId"];
|
|
208
207
|
|
|
209
|
-
function _extends$6() { _extends$6 = Object.assign
|
|
208
|
+
function _extends$6() { _extends$6 = 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$6.apply(this, arguments); }
|
|
210
209
|
|
|
211
210
|
function _objectWithoutProperties$5(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$6(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; }
|
|
212
211
|
|
|
@@ -234,7 +233,7 @@ var _path$6;
|
|
|
234
233
|
|
|
235
234
|
var _excluded$6 = ["title", "titleId"];
|
|
236
235
|
|
|
237
|
-
function _extends$7() { _extends$7 = Object.assign
|
|
236
|
+
function _extends$7() { _extends$7 = 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$7.apply(this, arguments); }
|
|
238
237
|
|
|
239
238
|
function _objectWithoutProperties$6(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$7(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; }
|
|
240
239
|
|
|
@@ -262,7 +261,7 @@ var _path$7;
|
|
|
262
261
|
|
|
263
262
|
var _excluded$7 = ["title", "titleId"];
|
|
264
263
|
|
|
265
|
-
function _extends$8() { _extends$8 = Object.assign
|
|
264
|
+
function _extends$8() { _extends$8 = 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$8.apply(this, arguments); }
|
|
266
265
|
|
|
267
266
|
function _objectWithoutProperties$7(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$8(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; }
|
|
268
267
|
|
|
@@ -290,7 +289,7 @@ var _path$8;
|
|
|
290
289
|
|
|
291
290
|
var _excluded$8 = ["title", "titleId"];
|
|
292
291
|
|
|
293
|
-
function _extends$9() { _extends$9 = Object.assign
|
|
292
|
+
function _extends$9() { _extends$9 = 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$9.apply(this, arguments); }
|
|
294
293
|
|
|
295
294
|
function _objectWithoutProperties$8(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$9(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; }
|
|
296
295
|
|
|
@@ -316,7 +315,7 @@ var _path$9;
|
|
|
316
315
|
|
|
317
316
|
var _excluded$9 = ["title", "titleId"];
|
|
318
317
|
|
|
319
|
-
function _extends$a() { _extends$a = Object.assign
|
|
318
|
+
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); }
|
|
320
319
|
|
|
321
320
|
function _objectWithoutProperties$9(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; }
|
|
322
321
|
|
|
@@ -344,7 +343,7 @@ var _path$a;
|
|
|
344
343
|
|
|
345
344
|
var _excluded$a = ["title", "titleId"];
|
|
346
345
|
|
|
347
|
-
function _extends$b() { _extends$b = Object.assign
|
|
346
|
+
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); }
|
|
348
347
|
|
|
349
348
|
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; }
|
|
350
349
|
|
|
@@ -370,7 +369,7 @@ var _path$b, _path2$2, _path3$2;
|
|
|
370
369
|
|
|
371
370
|
var _excluded$b = ["title", "titleId"];
|
|
372
371
|
|
|
373
|
-
function _extends$c() { _extends$c = Object.assign
|
|
372
|
+
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); }
|
|
374
373
|
|
|
375
374
|
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; }
|
|
376
375
|
|
|
@@ -404,7 +403,7 @@ var _path$c, _path2$3, _path3$3;
|
|
|
404
403
|
|
|
405
404
|
var _excluded$c = ["title", "titleId"];
|
|
406
405
|
|
|
407
|
-
function _extends$d() { _extends$d = Object.assign
|
|
406
|
+
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); }
|
|
408
407
|
|
|
409
408
|
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; }
|
|
410
409
|
|
|
@@ -438,7 +437,7 @@ var _path$d, _path2$4;
|
|
|
438
437
|
|
|
439
438
|
var _excluded$d = ["title", "titleId"];
|
|
440
439
|
|
|
441
|
-
function _extends$e() { _extends$e = Object.assign
|
|
440
|
+
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); }
|
|
442
441
|
|
|
443
442
|
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; }
|
|
444
443
|
|
|
@@ -470,7 +469,7 @@ var _path$e, _path2$5, _path3$4, _circle, _path4;
|
|
|
470
469
|
|
|
471
470
|
var _excluded$e = ["title", "titleId"];
|
|
472
471
|
|
|
473
|
-
function _extends$f() { _extends$f = Object.assign
|
|
472
|
+
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); }
|
|
474
473
|
|
|
475
474
|
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; }
|
|
476
475
|
|
|
@@ -512,7 +511,7 @@ var _path$f, _path2$6, _path3$5;
|
|
|
512
511
|
|
|
513
512
|
var _excluded$f = ["title", "titleId"];
|
|
514
513
|
|
|
515
|
-
function _extends$g() { _extends$g = Object.assign
|
|
514
|
+
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); }
|
|
516
515
|
|
|
517
516
|
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; }
|
|
518
517
|
|
|
@@ -546,7 +545,7 @@ var _path$g, _path2$7, _path3$6;
|
|
|
546
545
|
|
|
547
546
|
var _excluded$g = ["title", "titleId"];
|
|
548
547
|
|
|
549
|
-
function _extends$h() { _extends$h = Object.assign
|
|
548
|
+
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); }
|
|
550
549
|
|
|
551
550
|
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; }
|
|
552
551
|
|
|
@@ -580,7 +579,7 @@ var _path$h, _path2$8;
|
|
|
580
579
|
|
|
581
580
|
var _excluded$h = ["title", "titleId"];
|
|
582
581
|
|
|
583
|
-
function _extends$i() { _extends$i = Object.assign
|
|
582
|
+
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); }
|
|
584
583
|
|
|
585
584
|
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; }
|
|
586
585
|
|
|
@@ -612,7 +611,7 @@ var _path$i;
|
|
|
612
611
|
|
|
613
612
|
var _excluded$i = ["title", "titleId"];
|
|
614
613
|
|
|
615
|
-
function _extends$j() { _extends$j = Object.assign
|
|
614
|
+
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); }
|
|
616
615
|
|
|
617
616
|
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; }
|
|
618
617
|
|
|
@@ -640,7 +639,7 @@ var _path$j;
|
|
|
640
639
|
|
|
641
640
|
var _excluded$j = ["title", "titleId"];
|
|
642
641
|
|
|
643
|
-
function _extends$k() { _extends$k = Object.assign
|
|
642
|
+
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); }
|
|
644
643
|
|
|
645
644
|
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; }
|
|
646
645
|
|
|
@@ -668,7 +667,7 @@ var _path$k;
|
|
|
668
667
|
|
|
669
668
|
var _excluded$k = ["title", "titleId"];
|
|
670
669
|
|
|
671
|
-
function _extends$l() { _extends$l = Object.assign
|
|
670
|
+
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); }
|
|
672
671
|
|
|
673
672
|
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; }
|
|
674
673
|
|
|
@@ -696,7 +695,7 @@ var _path$l;
|
|
|
696
695
|
|
|
697
696
|
var _excluded$l = ["title", "titleId"];
|
|
698
697
|
|
|
699
|
-
function _extends$m() { _extends$m = Object.assign
|
|
698
|
+
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); }
|
|
700
699
|
|
|
701
700
|
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; }
|
|
702
701
|
|
|
@@ -722,7 +721,7 @@ var _rect;
|
|
|
722
721
|
|
|
723
722
|
var _excluded$m = ["title", "titleId"];
|
|
724
723
|
|
|
725
|
-
function _extends$n() { _extends$n = Object.assign
|
|
724
|
+
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); }
|
|
726
725
|
|
|
727
726
|
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; }
|
|
728
727
|
|
|
@@ -752,7 +751,7 @@ var _rect$1, _rect2;
|
|
|
752
751
|
|
|
753
752
|
var _excluded$n = ["title", "titleId"];
|
|
754
753
|
|
|
755
|
-
function _extends$o() { _extends$o = Object.assign
|
|
754
|
+
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); }
|
|
756
755
|
|
|
757
756
|
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; }
|
|
758
757
|
|
|
@@ -788,7 +787,7 @@ var _path$m;
|
|
|
788
787
|
|
|
789
788
|
var _excluded$o = ["title", "titleId"];
|
|
790
789
|
|
|
791
|
-
function _extends$p() { _extends$p = Object.assign
|
|
790
|
+
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); }
|
|
792
791
|
|
|
793
792
|
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; }
|
|
794
793
|
|
|
@@ -816,7 +815,7 @@ var _path$n;
|
|
|
816
815
|
|
|
817
816
|
var _excluded$p = ["title", "titleId"];
|
|
818
817
|
|
|
819
|
-
function _extends$q() { _extends$q = Object.assign
|
|
818
|
+
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); }
|
|
820
819
|
|
|
821
820
|
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; }
|
|
822
821
|
|
|
@@ -844,7 +843,7 @@ var _path$o, _path2$9;
|
|
|
844
843
|
|
|
845
844
|
var _excluded$q = ["title", "titleId"];
|
|
846
845
|
|
|
847
|
-
function _extends$r() { _extends$r = Object.assign
|
|
846
|
+
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); }
|
|
848
847
|
|
|
849
848
|
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; }
|
|
850
849
|
|
|
@@ -875,7 +874,7 @@ var _path$p, _path2$a;
|
|
|
875
874
|
|
|
876
875
|
var _excluded$r = ["title", "titleId"];
|
|
877
876
|
|
|
878
|
-
function _extends$s() { _extends$s = Object.assign
|
|
877
|
+
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); }
|
|
879
878
|
|
|
880
879
|
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; }
|
|
881
880
|
|
|
@@ -912,7 +911,7 @@ var _path$q;
|
|
|
912
911
|
|
|
913
912
|
var _excluded$s = ["title", "titleId"];
|
|
914
913
|
|
|
915
|
-
function _extends$t() { _extends$t = Object.assign
|
|
914
|
+
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); }
|
|
916
915
|
|
|
917
916
|
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; }
|
|
918
917
|
|
|
@@ -1084,7 +1083,7 @@ var getIcon = function getIcon(isExpanded, index, id) {
|
|
|
1084
1083
|
|
|
1085
1084
|
|
|
1086
1085
|
var getElementsFromData = function getElementsFromData(data, id) {
|
|
1087
|
-
var _data;
|
|
1086
|
+
var _data, _data2;
|
|
1088
1087
|
|
|
1089
1088
|
if (data === void 0) {
|
|
1090
1089
|
data = [];
|
|
@@ -1097,7 +1096,8 @@ var getElementsFromData = function getElementsFromData(data, id) {
|
|
|
1097
1096
|
}; // For FAQ-style multiple accordions, the button should be bigger.
|
|
1098
1097
|
// Otherwise, use the default.
|
|
1099
1098
|
|
|
1100
|
-
var
|
|
1099
|
+
var multipleFontSize = ((_data = data) == null ? void 0 : _data.length) > 1 ? "text.default" : "text.caption";
|
|
1100
|
+
var multiplePadding = ((_data2 = data) == null ? void 0 : _data2.length) > 1 ? "s" : "xs s";
|
|
1101
1101
|
return data.map(function (content, index) {
|
|
1102
1102
|
// This is done to support both string and DOM element input.
|
|
1103
1103
|
var panel = typeof content.panel === "string" ? createElement(AccordionPanel, {
|
|
@@ -1129,6 +1129,7 @@ var getElementsFromData = function getElementsFromData(data, id) {
|
|
|
1129
1129
|
}
|
|
1130
1130
|
}, createElement(Box, {
|
|
1131
1131
|
flex: "1",
|
|
1132
|
+
fontSize: multipleFontSize,
|
|
1132
1133
|
textAlign: "left"
|
|
1133
1134
|
}, content.label), getIcon(isExpanded, index, id)), panel);
|
|
1134
1135
|
});
|
|
@@ -1363,10 +1364,12 @@ var ButtonGroup = /*#__PURE__*/chakra(function (props) {
|
|
|
1363
1364
|
}
|
|
1364
1365
|
}
|
|
1365
1366
|
|
|
1366
|
-
|
|
1367
|
-
key: key,
|
|
1367
|
+
var disabledProps = isDisabled ? {
|
|
1368
1368
|
isDisabled: isDisabled
|
|
1369
|
-
}
|
|
1369
|
+
} : {};
|
|
1370
|
+
newChildren.push(cloneElement(child, _extends({
|
|
1371
|
+
key: key
|
|
1372
|
+
}, disabledProps)));
|
|
1370
1373
|
});
|
|
1371
1374
|
return createElement(Stack, Object.assign({
|
|
1372
1375
|
id: id,
|
|
@@ -1499,7 +1502,7 @@ var Link = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1499
1502
|
}
|
|
1500
1503
|
}));
|
|
1501
1504
|
|
|
1502
|
-
var _excluded$z = ["className", "id", "level", "size", "text", "url", "urlClass"];
|
|
1505
|
+
var _excluded$z = ["className", "id", "level", "size", "noSpace", "text", "url", "urlClass"];
|
|
1503
1506
|
/** Map the word heading level to the number heading level. The default is 2. */
|
|
1504
1507
|
|
|
1505
1508
|
var getMappedLevel = function getMappedLevel(level) {
|
|
@@ -1524,6 +1527,7 @@ var Heading = /*#__PURE__*/chakra(function (props) {
|
|
|
1524
1527
|
_props$level = props.level,
|
|
1525
1528
|
level = _props$level === void 0 ? "two" : _props$level,
|
|
1526
1529
|
size = props.size,
|
|
1530
|
+
noSpace = props.noSpace,
|
|
1527
1531
|
text = props.text,
|
|
1528
1532
|
url = props.url,
|
|
1529
1533
|
urlClass = props.urlClass,
|
|
@@ -1532,7 +1536,8 @@ var Heading = /*#__PURE__*/chakra(function (props) {
|
|
|
1532
1536
|
var finalLevel = getMappedLevel(level);
|
|
1533
1537
|
var variant = size ? size : "h" + finalLevel;
|
|
1534
1538
|
var styles = useStyleConfig("Heading", {
|
|
1535
|
-
variant: variant
|
|
1539
|
+
variant: variant,
|
|
1540
|
+
noSpace: noSpace
|
|
1536
1541
|
}); // Combine native base styles with any additional styles.
|
|
1537
1542
|
// This is used in the `Hero` and `Notification` components.
|
|
1538
1543
|
|
|
@@ -1783,7 +1788,7 @@ var Card = /*#__PURE__*/chakra(function (props) {
|
|
|
1783
1788
|
var windowDimensions = useWindowSize();
|
|
1784
1789
|
var cardHeadingCount = 0;
|
|
1785
1790
|
|
|
1786
|
-
if (imageProps.component && imageProps.aspectRatio
|
|
1791
|
+
if (imageProps.component && imageProps.aspectRatio) {
|
|
1787
1792
|
console.warn("NYPL Reservoir Card: Both the `imageProps.component` and `imageProps.aspectRatio` " + "props were set but `imageProps.aspectRatio` will be ignored in favor " + "of the aspect ratio on `imageProps.component` prop.");
|
|
1788
1793
|
} // The `Card`'s image should always display as 100% width on mobile. To
|
|
1789
1794
|
// achieve this, we set the size to `"default"` only when the
|
|
@@ -1803,6 +1808,7 @@ var Card = /*#__PURE__*/chakra(function (props) {
|
|
|
1803
1808
|
var styles = useMultiStyleConfig("Card", {
|
|
1804
1809
|
hasImage: hasImage,
|
|
1805
1810
|
imageIsAtEnd: imageProps.isAtEnd,
|
|
1811
|
+
isAlignedRightActions: isAlignedRightActions,
|
|
1806
1812
|
isBordered: isBordered,
|
|
1807
1813
|
isCentered: isCentered,
|
|
1808
1814
|
layout: layout,
|
|
@@ -1916,17 +1922,132 @@ var HelperErrorText = /*#__PURE__*/chakra(function (_ref) {
|
|
|
1916
1922
|
})) : createElement(Box, Object.assign({}, props), text);
|
|
1917
1923
|
});
|
|
1918
1924
|
|
|
1919
|
-
var _excluded$D = ["
|
|
1920
|
-
|
|
1921
|
-
var
|
|
1922
|
-
|
|
1925
|
+
var _excluded$D = ["children", "className", "isBold", "isItalic", "noSpace", "size"];
|
|
1926
|
+
var Text = /*#__PURE__*/chakra(function (props) {
|
|
1927
|
+
var children = props.children,
|
|
1928
|
+
_props$className = props.className,
|
|
1929
|
+
className = _props$className === void 0 ? "" : _props$className,
|
|
1930
|
+
isBold = props.isBold,
|
|
1931
|
+
isItalic = props.isItalic,
|
|
1932
|
+
noSpace = props.noSpace,
|
|
1933
|
+
_props$size = props.size,
|
|
1934
|
+
size = _props$size === void 0 ? "default" : _props$size,
|
|
1935
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$D);
|
|
1936
|
+
|
|
1937
|
+
var styles = useStyleConfig("Text", {
|
|
1938
|
+
variant: size,
|
|
1939
|
+
isBold: isBold,
|
|
1940
|
+
isItalic: isItalic,
|
|
1941
|
+
noSpace: noSpace
|
|
1942
|
+
});
|
|
1943
|
+
|
|
1944
|
+
if (!children) {
|
|
1945
|
+
console.warn("NYPL Reservoir Text: No children were passed and the `Text` component " + "will not render correctly.");
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
return createElement(Text$2, Object.assign({
|
|
1949
|
+
className: className,
|
|
1950
|
+
sx: styles
|
|
1951
|
+
}, rest), children);
|
|
1952
|
+
});
|
|
1953
|
+
|
|
1954
|
+
var _excluded$E = ["children", "className", "descriptionText", "headingText", "helperText", "helperTextStyles", "id", "invalidText", "isInvalid", "showHelperInvalidText"];
|
|
1955
|
+
var ComponentWrapper = /*#__PURE__*/chakra(function (props) {
|
|
1956
|
+
var children = props.children,
|
|
1957
|
+
className = props.className,
|
|
1958
|
+
descriptionText = props.descriptionText,
|
|
1959
|
+
headingText = props.headingText,
|
|
1960
|
+
helperText = props.helperText,
|
|
1961
|
+
_props$helperTextStyl = props.helperTextStyles,
|
|
1962
|
+
helperTextStyles = _props$helperTextStyl === void 0 ? {} : _props$helperTextStyl,
|
|
1963
|
+
id = props.id,
|
|
1964
|
+
invalidText = props.invalidText,
|
|
1965
|
+
_props$isInvalid = props.isInvalid,
|
|
1966
|
+
isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
|
|
1967
|
+
_props$showHelperInva = props.showHelperInvalidText,
|
|
1968
|
+
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
1969
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$E);
|
|
1970
|
+
|
|
1971
|
+
var hasChildren = !!children;
|
|
1972
|
+
var styles = useMultiStyleConfig("ComponentWrapper", {
|
|
1973
|
+
hasChildren: hasChildren
|
|
1974
|
+
});
|
|
1975
|
+
var footnote = isInvalid ? invalidText : helperText; // Note: Typescript warns when there are no children passed and
|
|
1976
|
+
// doesn't compile. This is meant to log in non-Typescript apps.
|
|
1977
|
+
|
|
1978
|
+
if (!hasChildren) {
|
|
1979
|
+
console.warn("NYPL Reservoir ComponentWrapper: No children were passed.");
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
return createElement(Box, Object.assign({
|
|
1983
|
+
className: className,
|
|
1984
|
+
id: id + "-wrapper",
|
|
1985
|
+
__css: styles
|
|
1986
|
+
}, rest), headingText && createElement(Heading, {
|
|
1987
|
+
id: id + "-heading",
|
|
1988
|
+
text: headingText
|
|
1989
|
+
}), descriptionText && createElement(Text, null, descriptionText), children, footnote && showHelperInvalidText && createElement(HelperErrorText, {
|
|
1990
|
+
id: id + "-helperText",
|
|
1991
|
+
isInvalid: isInvalid,
|
|
1992
|
+
text: footnote,
|
|
1993
|
+
__css: _extends({}, styles.helperErrorText, helperTextStyles)
|
|
1994
|
+
}));
|
|
1995
|
+
});
|
|
1996
|
+
|
|
1997
|
+
// Utility functions to use throughout the codebase
|
|
1998
|
+
|
|
1999
|
+
/**
|
|
2000
|
+
* range
|
|
2001
|
+
* Get an array of values from `start` to `stop` - 1 with an optional
|
|
2002
|
+
* `step` between values.
|
|
2003
|
+
*/
|
|
2004
|
+
var range = function range(start, stop, step) {
|
|
2005
|
+
if (step === void 0) {
|
|
2006
|
+
step = 1;
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
if (!start) {
|
|
2010
|
+
return [];
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
return Array(Math.ceil((stop - start) / step)).fill(start).map(function (x, y) {
|
|
2014
|
+
return x + y * step;
|
|
2015
|
+
});
|
|
2016
|
+
};
|
|
2017
|
+
/**
|
|
2018
|
+
* Get aria-* attributes for input components. This sets the `aria-label` and
|
|
2019
|
+
* `aria-describedby` attributes, based on the label and footnote values.
|
|
2020
|
+
*/
|
|
2021
|
+
|
|
2022
|
+
var getAriaAttrs = function getAriaAttrs(_ref) {
|
|
2023
|
+
var footnote = _ref.footnote,
|
|
2024
|
+
id = _ref.id,
|
|
2025
|
+
labelText = _ref.labelText,
|
|
2026
|
+
name = _ref.name,
|
|
2027
|
+
showLabel = _ref.showLabel;
|
|
2028
|
+
var ariaAttributes = {};
|
|
2029
|
+
|
|
2030
|
+
if (!showLabel) {
|
|
2031
|
+
if (typeof labelText !== "string") {
|
|
2032
|
+
console.warn("NYPL Reservoir " + name + ": `labelText` must be a string when `showLabel` is false.");
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
ariaAttributes["aria-label"] = labelText && footnote ? labelText + " - " + footnote : labelText;
|
|
2036
|
+
} else if (footnote) {
|
|
2037
|
+
ariaAttributes["aria-describedby"] = id + "-helperText";
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
return ariaAttributes;
|
|
1923
2041
|
};
|
|
1924
2042
|
|
|
2043
|
+
var _excluded$F = ["isIndeterminate", "isChecked"],
|
|
2044
|
+
_excluded2$2 = ["className", "invalidText", "helperText", "id", "isChecked", "isDisabled", "isIndeterminate", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
|
|
2045
|
+
|
|
1925
2046
|
function CheckboxIcon(props) {
|
|
1926
2047
|
// We don't need the `isIndeterminate` or `isChecked` props but it
|
|
1927
2048
|
// causes rendering issues on the SVG element, so we remove them
|
|
1928
2049
|
// before passing all the props to the `Icon` component.
|
|
1929
|
-
var rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2050
|
+
var rest = _objectWithoutPropertiesLoose(props, _excluded$F);
|
|
1930
2051
|
|
|
1931
2052
|
return createElement(Icon$2, Object.assign({
|
|
1932
2053
|
viewBox: "0 0 24 24"
|
|
@@ -1952,6 +2073,7 @@ var Checkbox = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
1952
2073
|
isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
|
|
1953
2074
|
labelText = props.labelText,
|
|
1954
2075
|
name = props.name,
|
|
2076
|
+
onChange = props.onChange,
|
|
1955
2077
|
_props$showHelperInva = props.showHelperInvalidText,
|
|
1956
2078
|
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
1957
2079
|
_props$showLabel = props.showLabel,
|
|
@@ -1960,34 +2082,37 @@ var Checkbox = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
1960
2082
|
rest = _objectWithoutPropertiesLoose(props, _excluded2$2);
|
|
1961
2083
|
|
|
1962
2084
|
var styles = useMultiStyleConfig("Checkbox", {});
|
|
1963
|
-
var footnote = isInvalid ? invalidText : helperText;
|
|
1964
|
-
var ariaAttributes = {};
|
|
1965
|
-
var onChange = props.onChange || onChangeDefault; // Use Chakra's default indeterminate icon.
|
|
2085
|
+
var footnote = isInvalid ? invalidText : helperText; // Use Chakra's default indeterminate icon.
|
|
1966
2086
|
|
|
1967
2087
|
var icon = !isIndeterminate ? createElement(CheckboxIcon, null) : undefined;
|
|
2088
|
+
var ariaAttributes = getAriaAttrs({
|
|
2089
|
+
footnote: footnote,
|
|
2090
|
+
id: id,
|
|
2091
|
+
labelText: labelText,
|
|
2092
|
+
name: "Checkbox",
|
|
2093
|
+
showLabel: showLabel
|
|
2094
|
+
});
|
|
1968
2095
|
|
|
1969
2096
|
if (!id) {
|
|
1970
2097
|
console.warn("NYPL Reservoir Checkbox: This component's required `id` prop was not passed.");
|
|
1971
2098
|
}
|
|
1972
2099
|
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
ariaAttributes["aria-label"] = labelText && footnote ? labelText + " - " + footnote : labelText;
|
|
1979
|
-
} else {
|
|
1980
|
-
if (footnote) ariaAttributes["aria-describedby"] = id + "-helperText";
|
|
1981
|
-
}
|
|
1982
|
-
|
|
1983
|
-
return createElement(Fragment, null, createElement(Checkbox$2, Object.assign({
|
|
2100
|
+
return createElement(ComponentWrapper, Object.assign({
|
|
2101
|
+
helperText: helperText,
|
|
2102
|
+
helperTextStyles: styles.helperErrorText,
|
|
1984
2103
|
id: id,
|
|
2104
|
+
invalidText: invalidText,
|
|
2105
|
+
isInvalid: isInvalid,
|
|
2106
|
+
showHelperInvalidText: showHelperInvalidText
|
|
2107
|
+
}, rest), createElement(Checkbox$2, Object.assign({
|
|
1985
2108
|
className: className,
|
|
1986
|
-
|
|
2109
|
+
icon: icon,
|
|
2110
|
+
id: id,
|
|
1987
2111
|
isDisabled: isDisabled,
|
|
2112
|
+
isIndeterminate: isIndeterminate,
|
|
1988
2113
|
isInvalid: isInvalid,
|
|
1989
2114
|
isRequired: isRequired,
|
|
1990
|
-
|
|
2115
|
+
name: name || "default",
|
|
1991
2116
|
ref: ref,
|
|
1992
2117
|
value: value
|
|
1993
2118
|
}, isChecked !== undefined ? {
|
|
@@ -1996,18 +2121,12 @@ var Checkbox = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
1996
2121
|
} : {
|
|
1997
2122
|
defaultIsChecked: false
|
|
1998
2123
|
}, {
|
|
1999
|
-
icon: icon,
|
|
2000
2124
|
alignItems: "flex-start",
|
|
2001
2125
|
__css: styles
|
|
2002
|
-
}, ariaAttributes
|
|
2003
|
-
id: id + "-helperText",
|
|
2004
|
-
isInvalid: isInvalid,
|
|
2005
|
-
text: footnote,
|
|
2006
|
-
__css: styles.helperErrorText
|
|
2007
|
-
}));
|
|
2126
|
+
}, ariaAttributes), showLabel && labelText));
|
|
2008
2127
|
}));
|
|
2009
2128
|
|
|
2010
|
-
var _excluded$
|
|
2129
|
+
var _excluded$G = ["children", "className", "id", "isLegendHidden", "isRequired", "legendText", "showRequiredLabel"];
|
|
2011
2130
|
/**
|
|
2012
2131
|
* A wrapper component that renders a `fieldset` element along with a `legend`
|
|
2013
2132
|
* element as its first child. Commonly used to wrap form components.
|
|
@@ -2024,7 +2143,7 @@ var Fieldset = /*#__PURE__*/chakra(function (_ref) {
|
|
|
2024
2143
|
legendText = _ref.legendText,
|
|
2025
2144
|
_ref$showRequiredLabe = _ref.showRequiredLabel,
|
|
2026
2145
|
showRequiredLabel = _ref$showRequiredLabe === void 0 ? true : _ref$showRequiredLabe,
|
|
2027
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2146
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$G);
|
|
2028
2147
|
|
|
2029
2148
|
var styles = useMultiStyleConfig("Fieldset", {
|
|
2030
2149
|
isLegendHidden: isLegendHidden
|
|
@@ -2176,7 +2295,7 @@ var reservoirSpacingTokens = {
|
|
|
2176
2295
|
};
|
|
2177
2296
|
var spacing = /*#__PURE__*/_extends({}, chakraSpacingTokens, reservoirSpacingTokens);
|
|
2178
2297
|
|
|
2179
|
-
var _excluded$
|
|
2298
|
+
var _excluded$H = ["children", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
2180
2299
|
/**
|
|
2181
2300
|
* Wrapper component to wrap `Checkbox` components. Can be displayed in a
|
|
2182
2301
|
* column or in a row. The `CheckboxGroup` component renders all the necessary
|
|
@@ -2211,7 +2330,7 @@ var CheckboxGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
2211
2330
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
2212
2331
|
_props$showRequiredLa = props.showRequiredLabel,
|
|
2213
2332
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
2214
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2333
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$H);
|
|
2215
2334
|
|
|
2216
2335
|
var footnote = isInvalid ? invalidText : helperText;
|
|
2217
2336
|
var newChildren = [];
|
|
@@ -2256,14 +2375,15 @@ var CheckboxGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
2256
2375
|
isRequired: isRequired,
|
|
2257
2376
|
legendText: labelText,
|
|
2258
2377
|
showRequiredLabel: showRequiredLabel
|
|
2259
|
-
}, rest
|
|
2378
|
+
}, rest, {
|
|
2379
|
+
__css: styles
|
|
2380
|
+
}), createElement(CheckboxGroup$2, Object.assign({}, checkboxProps), createElement(Stack, {
|
|
2260
2381
|
id: id,
|
|
2261
2382
|
"data-testid": "checkbox-group",
|
|
2262
2383
|
direction: [layout],
|
|
2263
2384
|
spacing: spacingProp,
|
|
2264
2385
|
ref: ref,
|
|
2265
|
-
"aria-label": !showLabel ? labelText : undefined
|
|
2266
|
-
sx: styles.stack
|
|
2386
|
+
"aria-label": !showLabel ? labelText : undefined
|
|
2267
2387
|
}, newChildren)), footnote && showHelperInvalidText && createElement(HelperErrorText, {
|
|
2268
2388
|
id: id + "-helperErrorText",
|
|
2269
2389
|
isInvalid: isInvalid,
|
|
@@ -2272,7 +2392,7 @@ var CheckboxGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
2272
2392
|
}));
|
|
2273
2393
|
}));
|
|
2274
2394
|
|
|
2275
|
-
var _excluded$
|
|
2395
|
+
var _excluded$I = ["children", "columns", "className", "gap", "id"];
|
|
2276
2396
|
var SimpleGrid = /*#__PURE__*/chakra(function (props) {
|
|
2277
2397
|
var children = props.children,
|
|
2278
2398
|
columns = props.columns,
|
|
@@ -2280,7 +2400,7 @@ var SimpleGrid = /*#__PURE__*/chakra(function (props) {
|
|
|
2280
2400
|
_props$gap = props.gap,
|
|
2281
2401
|
gap = _props$gap === void 0 ? "grid.l" : _props$gap,
|
|
2282
2402
|
id = props.id,
|
|
2283
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2403
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$I);
|
|
2284
2404
|
|
|
2285
2405
|
var responsiveCols = columns ? {
|
|
2286
2406
|
base: 1,
|
|
@@ -2302,7 +2422,7 @@ var SimpleGrid = /*#__PURE__*/chakra(function (props) {
|
|
|
2302
2422
|
}
|
|
2303
2423
|
});
|
|
2304
2424
|
|
|
2305
|
-
var _excluded$
|
|
2425
|
+
var _excluded$J = ["children", "className", "gap", "id"],
|
|
2306
2426
|
_excluded2$3 = ["children", "className", "gap", "id"],
|
|
2307
2427
|
_excluded3$1 = ["action", "children", "className", "gap", "id", "method", "onSubmit"];
|
|
2308
2428
|
/** FormRow child-component */
|
|
@@ -2312,7 +2432,7 @@ var FormRow = /*#__PURE__*/chakra(function (props) {
|
|
|
2312
2432
|
className = props.className,
|
|
2313
2433
|
gap = props.gap,
|
|
2314
2434
|
id = props.id,
|
|
2315
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2435
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$J);
|
|
2316
2436
|
|
|
2317
2437
|
var count = Children.count(children);
|
|
2318
2438
|
var alteredChildren = Children.map(children, function (child, i) {
|
|
@@ -2392,7 +2512,7 @@ var Form = /*#__PURE__*/chakra(function (props) {
|
|
|
2392
2512
|
}
|
|
2393
2513
|
});
|
|
2394
2514
|
|
|
2395
|
-
var _excluded$
|
|
2515
|
+
var _excluded$K = ["children", "className", "htmlFor", "id", "isInlined", "isRequired"];
|
|
2396
2516
|
/**
|
|
2397
2517
|
* A label for form inputs. It should never be used alone.
|
|
2398
2518
|
*/
|
|
@@ -2406,7 +2526,7 @@ var Label = /*#__PURE__*/chakra(function (props) {
|
|
|
2406
2526
|
isInlined = _props$isInlined === void 0 ? false : _props$isInlined,
|
|
2407
2527
|
_props$isRequired = props.isRequired,
|
|
2408
2528
|
isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
|
|
2409
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2529
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$K);
|
|
2410
2530
|
|
|
2411
2531
|
var styles = useStyleConfig("Label", {
|
|
2412
2532
|
isInlined: isInlined
|
|
@@ -2425,7 +2545,7 @@ var Label = /*#__PURE__*/chakra(function (props) {
|
|
|
2425
2545
|
}, rest), children, isRequired && createElement("span", null, " (Required)"));
|
|
2426
2546
|
});
|
|
2427
2547
|
|
|
2428
|
-
var _excluded$
|
|
2548
|
+
var _excluded$L = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "max", "maxLength", "min", "name", "onChange", "onClick", "onFocus", "placeholder", "showHelperInvalidText", "showLabel", "showRequiredLabel", "step", "textInputType", "type", "value"];
|
|
2429
2549
|
|
|
2430
2550
|
var TextInputFormats = {
|
|
2431
2551
|
email: "jdoe@domain.com",
|
|
@@ -2476,7 +2596,7 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
2476
2596
|
_props$type = props.type,
|
|
2477
2597
|
type = _props$type === void 0 ? "text" : _props$type,
|
|
2478
2598
|
value = props.value,
|
|
2479
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2599
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$L);
|
|
2480
2600
|
|
|
2481
2601
|
var styles = useMultiStyleConfig("TextInput", {
|
|
2482
2602
|
variant: textInputType
|
|
@@ -2485,7 +2605,13 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
2485
2605
|
var isHidden = type === "hidden";
|
|
2486
2606
|
var finalInvalidText = invalidText ? invalidText : "There is an error related to this field.";
|
|
2487
2607
|
var footnote = isInvalid ? finalInvalidText : helperText;
|
|
2488
|
-
var ariaAttributes = {
|
|
2608
|
+
var ariaAttributes = getAriaAttrs({
|
|
2609
|
+
footnote: footnote,
|
|
2610
|
+
id: id,
|
|
2611
|
+
labelText: labelText,
|
|
2612
|
+
name: "TextInput",
|
|
2613
|
+
showLabel: showLabel
|
|
2614
|
+
});
|
|
2489
2615
|
var fieldOutput;
|
|
2490
2616
|
var options;
|
|
2491
2617
|
|
|
@@ -2493,12 +2619,6 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
2493
2619
|
console.warn("NYPL Reservoir TextInput: This component's required `id` prop was not passed.");
|
|
2494
2620
|
}
|
|
2495
2621
|
|
|
2496
|
-
if (!showLabel) {
|
|
2497
|
-
ariaAttributes["aria-label"] = labelText && footnote ? labelText + " - " + footnote : labelText;
|
|
2498
|
-
} else if (helperText) {
|
|
2499
|
-
ariaAttributes["aria-describedby"] = id + "-helperText";
|
|
2500
|
-
}
|
|
2501
|
-
|
|
2502
2622
|
if (type === "tel" || type === "url" || type === "email") {
|
|
2503
2623
|
var example = TextInputFormats[type] || "";
|
|
2504
2624
|
footnote = createElement(Fragment, null, "Ex: ", example, createElement("br", null), footnote);
|
|
@@ -2546,21 +2666,22 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
2546
2666
|
}), value);
|
|
2547
2667
|
}
|
|
2548
2668
|
|
|
2549
|
-
return createElement(
|
|
2550
|
-
|
|
2551
|
-
|
|
2669
|
+
return createElement(ComponentWrapper, Object.assign({
|
|
2670
|
+
className: className,
|
|
2671
|
+
helperText: helperText,
|
|
2672
|
+
id: id,
|
|
2673
|
+
invalidText: finalInvalidText,
|
|
2674
|
+
isInvalid: isInvalid,
|
|
2675
|
+
showHelperInvalidText: showHelperInvalidText && !isHidden,
|
|
2676
|
+
__css: styles
|
|
2552
2677
|
}, rest), labelText && showLabel && !isHidden && createElement(Label, {
|
|
2553
2678
|
htmlFor: id,
|
|
2554
2679
|
id: id + "-label",
|
|
2555
2680
|
isRequired: showRequiredLabel && isRequired
|
|
2556
|
-
}, labelText), fieldOutput
|
|
2557
|
-
id: id + "-helperText",
|
|
2558
|
-
isInvalid: isInvalid,
|
|
2559
|
-
text: footnote
|
|
2560
|
-
}));
|
|
2681
|
+
}, labelText), fieldOutput);
|
|
2561
2682
|
}));
|
|
2562
2683
|
|
|
2563
|
-
var _excluded$
|
|
2684
|
+
var _excluded$M = ["children", "className", "id", "isDateRange", "isRequired", "labelText", "showLabel", "showRequiredLabel"],
|
|
2564
2685
|
_excluded2$4 = ["className", "dateFormat", "dateType", "helperText", "helperTextFrom", "helperTextTo", "id", "initialDate", "initialDateTo", "invalidText", "isDateRange", "isDisabled", "isInvalid", "isRequired", "labelText", "maxDate", "minDate", "nameFrom", "nameTo", "onChange", "refTo", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
2565
2686
|
/**
|
|
2566
2687
|
* A Design System `TextInput` component that is used as the custom input
|
|
@@ -2624,7 +2745,7 @@ var DatePickerWrapper = /*#__PURE__*/chakra(function (_ref2) {
|
|
|
2624
2745
|
labelText = _ref2.labelText,
|
|
2625
2746
|
showLabel = _ref2.showLabel,
|
|
2626
2747
|
showRequiredLabel = _ref2.showRequiredLabel,
|
|
2627
|
-
rest = _objectWithoutPropertiesLoose(_ref2, _excluded$
|
|
2748
|
+
rest = _objectWithoutPropertiesLoose(_ref2, _excluded$M);
|
|
2628
2749
|
|
|
2629
2750
|
return React__default.createElement(FormField, Object.assign({
|
|
2630
2751
|
id: id + "-form-field"
|
|
@@ -2941,7 +3062,7 @@ var checkboxRadioGroupStyles = function checkboxRadioGroupStyles(isFullWidth) {
|
|
|
2941
3062
|
helperErrorText: {
|
|
2942
3063
|
marginTop: "xs"
|
|
2943
3064
|
},
|
|
2944
|
-
|
|
3065
|
+
label: {
|
|
2945
3066
|
width: isFullWidth ? "100%" : "fit-content"
|
|
2946
3067
|
}
|
|
2947
3068
|
};
|
|
@@ -3041,17 +3162,14 @@ var breakpoints = /*#__PURE__*/createBreakpoints({
|
|
|
3041
3162
|
});
|
|
3042
3163
|
|
|
3043
3164
|
/**
|
|
3044
|
-
*
|
|
3165
|
+
* All colors can be found in Storybook:
|
|
3166
|
+
* https://nypl.github.io/nypl-design-system/reservoir/v1/?path=/docs/style-guide-colors--page
|
|
3045
3167
|
*
|
|
3046
|
-
* All UI colors can be found in
|
|
3047
|
-
* https://
|
|
3048
|
-
* and in Figma:
|
|
3049
|
-
* https://www.figma.com/file/qShodlfNCJHb8n03IFyApM/Master?node-id=14989%3A37
|
|
3168
|
+
* All UI colors can be found in Figma:
|
|
3169
|
+
* https://www.figma.com/file/qShodlfNCJHb8n03IFyApM/Main?node-id=47083%3A27674
|
|
3050
3170
|
*
|
|
3051
|
-
* All Brand colors can be found in
|
|
3052
|
-
* https://
|
|
3053
|
-
* and in Figma:
|
|
3054
|
-
* https://www.figma.com/file/qShodlfNCJHb8n03IFyApM/Master?node-id=15454%3A47007
|
|
3171
|
+
* All Brand colors can be found in Figma:
|
|
3172
|
+
* https://www.figma.com/file/qShodlfNCJHb8n03IFyApM/Main?node-id=15454%3A47007
|
|
3055
3173
|
*
|
|
3056
3174
|
* At the end of this file, there are objects that extend Chakra's default
|
|
3057
3175
|
* color shade palette for individual colors. WE DO NOT RECOMMEND to use them
|
|
@@ -3585,7 +3703,8 @@ var iconOnly = {
|
|
|
3585
3703
|
borderColor: "ui.gray.light-cool",
|
|
3586
3704
|
color: "inherit",
|
|
3587
3705
|
_hover: {
|
|
3588
|
-
bg: "ui.gray.xx-light-cool"
|
|
3706
|
+
bg: "ui.gray.xx-light-cool",
|
|
3707
|
+
borderColor: "ui.gray.medium"
|
|
3589
3708
|
},
|
|
3590
3709
|
paddingInlineStart: "inset.narrow",
|
|
3591
3710
|
paddingInlineEnd: "inset.narrow"
|
|
@@ -3710,6 +3829,7 @@ var Card$1 = {
|
|
|
3710
3829
|
baseStyle: function baseStyle(_ref2) {
|
|
3711
3830
|
var hasImage = _ref2.hasImage,
|
|
3712
3831
|
imageIsAtEnd = _ref2.imageIsAtEnd,
|
|
3832
|
+
isAlignedRightActions = _ref2.isAlignedRightActions,
|
|
3713
3833
|
isBordered = _ref2.isBordered,
|
|
3714
3834
|
isCentered = _ref2.isCentered,
|
|
3715
3835
|
layout = _ref2.layout,
|
|
@@ -3751,19 +3871,40 @@ var Card$1 = {
|
|
|
3751
3871
|
flexFlow: "column wrap",
|
|
3752
3872
|
textAlign: isCentered ? "center" : null,
|
|
3753
3873
|
actions: {
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3874
|
+
flexShrink: {
|
|
3875
|
+
base: isAlignedRightActions ? "0" : null,
|
|
3876
|
+
md: "0"
|
|
3877
|
+
},
|
|
3878
|
+
marginLeft: {
|
|
3879
|
+
base: "0",
|
|
3880
|
+
md: "m"
|
|
3881
|
+
},
|
|
3882
|
+
marginTop: {
|
|
3883
|
+
base: "xs",
|
|
3884
|
+
md: "0"
|
|
3885
|
+
},
|
|
3886
|
+
maxWidth: {
|
|
3887
|
+
base: "100%",
|
|
3888
|
+
md: "180px"
|
|
3889
|
+
},
|
|
3890
|
+
width: "100%"
|
|
3757
3891
|
},
|
|
3758
3892
|
body: {
|
|
3759
3893
|
display: {
|
|
3760
3894
|
md: "block"
|
|
3761
3895
|
},
|
|
3896
|
+
flexBasis: {
|
|
3897
|
+
sm: isRow ? "100%" : null
|
|
3898
|
+
},
|
|
3762
3899
|
flexFlow: {
|
|
3763
3900
|
md: "row nowrap"
|
|
3764
3901
|
},
|
|
3765
3902
|
margin: bodyMargin,
|
|
3766
|
-
padding: bodyPadding
|
|
3903
|
+
padding: bodyPadding,
|
|
3904
|
+
width: {
|
|
3905
|
+
base: "100%",
|
|
3906
|
+
md: "auto"
|
|
3907
|
+
}
|
|
3767
3908
|
},
|
|
3768
3909
|
heading: {
|
|
3769
3910
|
marginBottom: "xs",
|
|
@@ -3949,13 +4090,13 @@ var Checkbox$1 = {
|
|
|
3949
4090
|
}
|
|
3950
4091
|
};
|
|
3951
4092
|
|
|
3952
|
-
var ComponentWrapper = {
|
|
4093
|
+
var ComponentWrapper$1 = {
|
|
3953
4094
|
parts: ["helperErrorText"],
|
|
3954
4095
|
baseStyle: function baseStyle(_ref) {
|
|
3955
4096
|
var hasChildren = _ref.hasChildren;
|
|
3956
4097
|
return {
|
|
3957
4098
|
helperErrorText: {
|
|
3958
|
-
marginTop: hasChildren ?
|
|
4099
|
+
marginTop: hasChildren ? null : "0"
|
|
3959
4100
|
}
|
|
3960
4101
|
};
|
|
3961
4102
|
}
|
|
@@ -4038,7 +4179,8 @@ var CustomImage = {
|
|
|
4038
4179
|
size = _ref$size === void 0 ? "default" : _ref$size;
|
|
4039
4180
|
return {
|
|
4040
4181
|
figure: _extends({
|
|
4041
|
-
margin: "auto"
|
|
4182
|
+
margin: "auto",
|
|
4183
|
+
width: "100%"
|
|
4042
4184
|
}, imageSizes$1[size], {
|
|
4043
4185
|
img: {
|
|
4044
4186
|
marginBottom: "xxs"
|
|
@@ -4250,8 +4392,7 @@ var Link$1 = {
|
|
|
4250
4392
|
var margins = {
|
|
4251
4393
|
marginTop: "0",
|
|
4252
4394
|
marginLeft: "0",
|
|
4253
|
-
marginRight: "0"
|
|
4254
|
-
marginBottom: "s"
|
|
4395
|
+
marginRight: "0"
|
|
4255
4396
|
}; // Heading Styles
|
|
4256
4397
|
|
|
4257
4398
|
var headings = {
|
|
@@ -4306,10 +4447,14 @@ var variants$1 = {
|
|
|
4306
4447
|
callout: headings.h4
|
|
4307
4448
|
};
|
|
4308
4449
|
var Heading$1 = {
|
|
4309
|
-
baseStyle: {
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4450
|
+
baseStyle: function baseStyle(_ref) {
|
|
4451
|
+
var noSpace = _ref.noSpace;
|
|
4452
|
+
return {
|
|
4453
|
+
// This is to help target custom anchor elements
|
|
4454
|
+
// passed as children to the Heading component.
|
|
4455
|
+
a: baseLinkStyles,
|
|
4456
|
+
marginBottom: noSpace ? "0" : "s"
|
|
4457
|
+
};
|
|
4313
4458
|
},
|
|
4314
4459
|
// Available variants:
|
|
4315
4460
|
// h1, h2, h3, h4, h5, h6,
|
|
@@ -5276,6 +5421,9 @@ var Skeleton = {
|
|
|
5276
5421
|
|
|
5277
5422
|
var SkipNavigation = {
|
|
5278
5423
|
baseStyle: {
|
|
5424
|
+
ul: {
|
|
5425
|
+
margin: "0"
|
|
5426
|
+
},
|
|
5279
5427
|
// Don't display links by default...
|
|
5280
5428
|
a: {
|
|
5281
5429
|
backgroundColor: "ui.white",
|
|
@@ -5855,7 +6003,7 @@ var variants$2 = {
|
|
|
5855
6003
|
fontSize: "text.mini"
|
|
5856
6004
|
}
|
|
5857
6005
|
};
|
|
5858
|
-
var Text = {
|
|
6006
|
+
var Text$1 = {
|
|
5859
6007
|
baseStyle: function baseStyle(_ref) {
|
|
5860
6008
|
var isBold = _ref.isBold,
|
|
5861
6009
|
isItalic = _ref.isItalic,
|
|
@@ -6117,7 +6265,7 @@ var theme = /*#__PURE__*/extendTheme( /*#__PURE__*/_extends({
|
|
|
6117
6265
|
}, Card$2, {
|
|
6118
6266
|
Checkbox: Checkbox$1,
|
|
6119
6267
|
CheckboxGroup: CheckboxGroup$1,
|
|
6120
|
-
ComponentWrapper: ComponentWrapper,
|
|
6268
|
+
ComponentWrapper: ComponentWrapper$1,
|
|
6121
6269
|
CustomImage: CustomImage,
|
|
6122
6270
|
CustomImageWrapper: CustomImageWrapper,
|
|
6123
6271
|
CustomSelect: Select,
|
|
@@ -6147,7 +6295,7 @@ var theme = /*#__PURE__*/extendTheme( /*#__PURE__*/_extends({
|
|
|
6147
6295
|
Tabs: CustomTabs,
|
|
6148
6296
|
CustomTable: CustomTable
|
|
6149
6297
|
}, TemplateStyles, {
|
|
6150
|
-
Text: Text,
|
|
6298
|
+
Text: Text$1,
|
|
6151
6299
|
TextInput: TextInput$1
|
|
6152
6300
|
}, Toggle$1, {
|
|
6153
6301
|
VideoPlayer: VideoPlayer
|
|
@@ -6166,7 +6314,7 @@ var DSProvider = function DSProvider(_ref) {
|
|
|
6166
6314
|
}, children);
|
|
6167
6315
|
};
|
|
6168
6316
|
|
|
6169
|
-
var _excluded$
|
|
6317
|
+
var _excluded$N = ["backgroundColor", "backgroundImageSrc", "foregroundColor", "heading", "heroType", "imageProps", "locationDetails", "subHeaderText"];
|
|
6170
6318
|
|
|
6171
6319
|
var heroSecondaryTypes = ["secondary", "secondaryBooksAndMore", "secondaryLocations", "secondaryResearch", "secondaryWhatsOn"];
|
|
6172
6320
|
var Hero$1 = /*#__PURE__*/chakra(function (props) {
|
|
@@ -6182,7 +6330,7 @@ var Hero$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
6182
6330
|
} : _props$imageProps,
|
|
6183
6331
|
locationDetails = props.locationDetails,
|
|
6184
6332
|
subHeaderText = props.subHeaderText,
|
|
6185
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
6333
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$N);
|
|
6186
6334
|
|
|
6187
6335
|
var styles = useMultiStyleConfig("Hero", {
|
|
6188
6336
|
variant: heroType
|
|
@@ -6279,11 +6427,11 @@ var Hero$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
6279
6427
|
}
|
|
6280
6428
|
});
|
|
6281
6429
|
|
|
6282
|
-
var _excluded$
|
|
6430
|
+
var _excluded$O = ["align", "className"];
|
|
6283
6431
|
var HorizontalRule$1 = /*#__PURE__*/chakra(function (props) {
|
|
6284
6432
|
var align = props.align,
|
|
6285
6433
|
className = props.className,
|
|
6286
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
6434
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$O);
|
|
6287
6435
|
|
|
6288
6436
|
var styles = useStyleConfig("HorizontalRule", {
|
|
6289
6437
|
align: align
|
|
@@ -6301,7 +6449,7 @@ var HorizontalRule$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
6301
6449
|
}, rest));
|
|
6302
6450
|
});
|
|
6303
6451
|
|
|
6304
|
-
var _excluded$
|
|
6452
|
+
var _excluded$P = ["children", "className", "id", "inline", "listItems", "noStyling", "title", "type"];
|
|
6305
6453
|
/**
|
|
6306
6454
|
* A component that renders list item `li` elements or description item `dt`
|
|
6307
6455
|
* and `dd` elements based on the `type` prop. Note that the `title` prop will
|
|
@@ -6320,7 +6468,7 @@ var List$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
6320
6468
|
title = props.title,
|
|
6321
6469
|
_props$type = props.type,
|
|
6322
6470
|
type = _props$type === void 0 ? "ul" : _props$type,
|
|
6323
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
6471
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$P);
|
|
6324
6472
|
|
|
6325
6473
|
var styles = useStyleConfig("List", {
|
|
6326
6474
|
inline: inline,
|
|
@@ -6429,157 +6577,261 @@ var List$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
6429
6577
|
|
|
6430
6578
|
var _path$r, _path2$b, _path3$7;
|
|
6431
6579
|
|
|
6432
|
-
var _excluded$
|
|
6580
|
+
var _excluded$Q = ["title", "titleId"];
|
|
6433
6581
|
|
|
6434
|
-
function _extends$u() { _extends$u = Object.assign
|
|
6582
|
+
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); }
|
|
6435
6583
|
|
|
6436
6584
|
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; }
|
|
6437
6585
|
|
|
6438
6586
|
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; }
|
|
6439
6587
|
|
|
6440
|
-
function
|
|
6588
|
+
function SvgLogoAppleAppStoreBlack(_ref) {
|
|
6441
6589
|
var title = _ref.title,
|
|
6442
6590
|
titleId = _ref.titleId,
|
|
6443
|
-
props = _objectWithoutProperties$t(_ref, _excluded$
|
|
6591
|
+
props = _objectWithoutProperties$t(_ref, _excluded$Q);
|
|
6444
6592
|
|
|
6445
6593
|
return /*#__PURE__*/createElement("svg", _extends$u({
|
|
6446
|
-
viewBox: "0 0
|
|
6594
|
+
viewBox: "0 0 200 67",
|
|
6595
|
+
fill: "none",
|
|
6447
6596
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6448
6597
|
"aria-labelledby": titleId
|
|
6449
6598
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6450
6599
|
id: titleId
|
|
6451
6600
|
}, title) : null, _path$r || (_path$r = /*#__PURE__*/createElement("path", {
|
|
6452
|
-
d: "
|
|
6601
|
+
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",
|
|
6602
|
+
fill: "#B7B7B7"
|
|
6453
6603
|
})), _path2$b || (_path2$b = /*#__PURE__*/createElement("path", {
|
|
6454
|
-
d: "
|
|
6604
|
+
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",
|
|
6605
|
+
fill: "#000"
|
|
6455
6606
|
})), _path3$7 || (_path3$7 = /*#__PURE__*/createElement("path", {
|
|
6456
|
-
d: "
|
|
6607
|
+
d: "M41.4 34.002a8.255 8.255 0 013.945-6.95 8.497 8.497 0 00-6.685-3.619c-2.792-.301-5.516 1.675-6.953 1.675-1.438 0-3.66-1.675-6.034-1.675a8.862 8.862 0 00-4.338 1.3 8.887 8.887 0 00-3.133 3.273c-3.16 5.678-.82 13.869 2.273 18.458 1.554 2.228 3.342 4.707 5.733 4.607 2.39-.1 3.175-1.474 5.983-1.474s3.577 1.474 6 1.423c2.424-.05 4.062-2.227 5.55-4.472a18.589 18.589 0 002.54-5.176 7.976 7.976 0 01-3.55-2.946 8.002 8.002 0 01-1.33-4.424zM36.77 20.452a8.202 8.202 0 001.856-5.846 8.35 8.35 0 00-5.365 2.78 7.8 7.8 0 00-1.906 5.629 6.857 6.857 0 005.416-2.563zM70.7 45.46h-7.905l-1.906 5.627h-3.343l7.488-20.803h3.493l7.488 20.803h-3.342L70.7 45.46zm-7.086-2.597h6.267l-3.025-9.129h-.084l-3.158 9.13zM92.195 43.55c0 4.707-2.524 7.739-6.318 7.739a5.157 5.157 0 01-4.764-2.714v7.504h-3.175v-20.1h3.008v2.546a5.374 5.374 0 014.83-2.68c3.895-.084 6.418 2.948 6.418 7.705zm-3.193 0c0-3.065-1.671-5.025-3.995-5.025-2.323 0-3.977 2.06-3.977 5.025 0 2.965 1.671 5.109 3.977 5.109 2.307 0 3.995-2.06 3.995-5.109zM108.842 43.55c0 4.707-2.507 7.739-6.302 7.739a5.138 5.138 0 01-4.763-2.714v7.504h-3.176v-20.1h3.009v2.546a5.388 5.388 0 014.813-2.68c3.895-.084 6.419 2.948 6.419 7.705zm-3.193 0c0-3.065-1.571-5.025-3.994-5.025-2.424 0-3.962 2.06-3.962 5.025 0 2.965 1.588 5.025 3.962 5.025 2.373 0 3.994-1.977 3.994-5.025zM119.856 45.225c.234 2.06 2.223 3.35 5.015 3.35 2.791 0 4.496-1.357 4.496-3.216 0-1.86-1.137-2.58-3.828-3.25l-2.691-.653c-3.811-.92-5.566-2.696-5.566-5.594 0-3.601 3.109-6.064 7.538-6.064 4.43 0 7.405 2.463 7.505 6.064h-3.192c-.184-2.077-1.906-3.35-4.396-3.35-2.491 0-4.212 1.256-4.212 3.115 0 1.458 1.086 2.329 3.761 2.999l2.289.552c4.262 1.005 6.034 2.73 6.034 5.762 0 3.903-3.109 6.332-8.023 6.332-4.596 0-7.705-2.379-7.905-6.13l3.175.083zM139.311 32.327v3.585h2.875v2.462h-2.875v8.375c0 1.29.569 1.893 1.839 1.893.339.02.68.02 1.019 0v2.445a8.68 8.68 0 01-1.671.151c-3.075 0-4.262-1.156-4.262-4.104v-8.76h-2.257v-2.462h2.207v-3.585h3.125zM143.841 43.55c0-4.774 2.808-7.772 7.187-7.772 4.379 0 7.17 2.998 7.17 7.772s-2.758 7.722-7.17 7.722c-4.413 0-7.187-2.982-7.187-7.722zm11.198 0c0-3.266-1.504-5.21-4.011-5.21s-3.945 1.86-3.945 5.21c0 3.35 1.488 5.21 4.012 5.21 2.524 0 3.944-1.977 3.944-5.21zM160.772 35.912h3.025v2.613a3.623 3.623 0 011.339-2.013 3.606 3.606 0 012.305-.717c.36-.006.72.033 1.07.117v2.915a3.96 3.96 0 00-1.371-.302 3.134 3.134 0 00-2.52.985 3.153 3.153 0 00-.823 2.583v8.995h-3.025V35.912zM182.818 46.632c-.418 2.747-3.092 4.64-6.502 4.64-4.412 0-7.137-2.965-7.137-7.705s2.742-7.84 7.004-7.84 6.819 2.882 6.819 7.488v1.055h-10.697v.201c-.048.558.023 1.12.209 1.649a3.944 3.944 0 003.869 2.64 3.421 3.421 0 003.493-2.128h2.942zm-10.496-4.54h7.571a3.64 3.64 0 00-2.248-3.566 3.625 3.625 0 00-1.462-.269 3.838 3.838 0 00-3.562 2.363 3.841 3.841 0 00-.299 1.473zM63.23 14.623a4.404 4.404 0 013.535 1.394 4.425 4.425 0 011.144 3.63c0 3.183-1.671 5.026-4.68 5.026h-3.61v-10.05h3.61zm-2.057 8.576h1.872a3.12 3.12 0 003.236-2.192c.14-.45.177-.926.107-1.393a3.156 3.156 0 00-1.967-3.377 3.135 3.135 0 00-1.376-.207h-1.872v7.169zM69.664 20.837a3.576 3.576 0 01.95-2.68 3.56 3.56 0 014.02-.837 3.56 3.56 0 011.937 2.078c.163.461.23.951.197 1.439a3.575 3.575 0 01-2.134 3.517 3.554 3.554 0 01-4.02-.838 3.57 3.57 0 01-.95-2.679zm5.566 0c0-1.675-.719-2.58-2.006-2.58s-2.022.955-2.022 2.58.668 2.613 2.022 2.613c1.354 0 1.99-.971 1.99-2.613h.016zM86.194 24.623h-1.538l-1.554-5.561h-.117l-1.554 5.56H79.91l-2.073-7.554h1.504l1.354 5.762h.1l1.555-5.762h1.42l1.555 5.762h.117l1.337-5.762h1.488l-2.073 7.555zM90.005 17.068h1.437v1.206h.117a2.226 2.226 0 012.24-1.34 2.434 2.434 0 011.977.769 2.447 2.447 0 01.63 2.029v4.89H94.92V20.1c0-1.223-.535-1.826-1.671-1.826a1.668 1.668 0 00-1.745 1.162 1.679 1.679 0 00-.06.748v4.439h-1.488l.05-7.555zM98.763 14.137h1.521v10.485h-1.487l-.034-10.485zM102.323 20.837a3.581 3.581 0 012.133-3.517 3.557 3.557 0 014.774 2.078c.163.461.23.951.197 1.439a3.582 3.582 0 01-2.133 3.517 3.557 3.557 0 01-4.774-2.078c-.163-.461-.23-.951-.197-1.439zm5.566 0c0-1.675-.735-2.58-2.022-2.58s-2.006.955-2.006 2.58.719 2.613 2.006 2.613 2.022-.971 2.022-2.613zM110.981 22.479c0-1.357 1.003-2.128 2.808-2.245l2.039-.134v-.653c0-.787-.535-1.24-1.554-1.24-1.02 0-1.404.302-1.555.838h-1.454c.167-1.307 1.371-2.128 3.076-2.128s2.958.938 2.958 2.53v5.175h-1.437V23.55h-.117a2.488 2.488 0 01-2.257 1.19 2.271 2.271 0 01-2.507-2.261zm4.847-.704v-.636l-1.838.117c-1.037 0-1.521.435-1.521 1.088 0 .654.601 1.072 1.404 1.072a1.77 1.77 0 001.955-1.641zM119.255 20.837c0-2.378 1.22-3.886 3.125-3.886a2.484 2.484 0 012.307 1.323h.1v-4.137h1.488v10.485h-1.421V23.45h-.117a2.613 2.613 0 01-2.357 1.306c-1.922-.016-3.125-1.524-3.125-3.919zm1.537 0c0 1.675.752 2.563 2.006 2.563 1.254 0 2.022-.972 2.022-2.546 0-1.575-.785-2.563-2.022-2.563-1.237 0-2.006.971-2.006 2.546zM132.425 20.837a3.566 3.566 0 013.552-3.812 3.549 3.549 0 012.602 1.133 3.581 3.581 0 01.95 2.679 3.582 3.582 0 01-.95 2.68 3.559 3.559 0 01-4.021.837 3.565 3.565 0 01-2.133-3.517zm5.566 0c0-1.675-.736-2.58-2.006-2.58-1.27 0-2.022.955-2.022 2.58s.718 2.613 2.022 2.613c1.304 0 2.006-.971 2.006-2.613zM141.518 17.068h1.42v1.206h.117a2.277 2.277 0 012.257-1.34 2.434 2.434 0 011.965.776 2.44 2.44 0 01.625 2.021v4.891h-1.471V20.1c0-1.223-.534-1.826-1.671-1.826a1.668 1.668 0 00-1.728 1.167c-.076.24-.096.494-.06.743v4.438h-1.488l.034-7.554zM156.31 15.192v1.926h1.671v1.307h-1.671v3.886c0 .787.317 1.139 1.053 1.139h.568v1.24a5.74 5.74 0 01-.802 0c-1.672 0-2.307-.57-2.307-2.027v-4.238h-1.203v-1.24h1.203v-1.993h1.488zM159.953 14.137h1.488v4.154h.117a2.293 2.293 0 012.239-1.357 2.467 2.467 0 011.959.794 2.485 2.485 0 01.632 2.02v4.874H164.9V20.1c0-1.206-.551-1.809-1.671-1.809a1.767 1.767 0 00-1.801 1.155c-.089.241-.124.499-.104.755v4.421h-1.371V14.137zM175.096 22.579a3.047 3.047 0 01-3.343 2.177 3.338 3.338 0 01-3.386-2.405 3.354 3.354 0 01-.09-1.48 3.477 3.477 0 01.844-2.762 3.474 3.474 0 012.632-1.175c2.09 0 3.343 1.424 3.343 3.802v.52h-5.298v.084a1.966 1.966 0 00.562 1.523 1.957 1.957 0 001.51.587 1.837 1.837 0 001.805-.921l1.421.05zm-5.215-2.479h3.794a1.817 1.817 0 00-1.855-1.96 1.913 1.913 0 00-1.382.57 1.928 1.928 0 00-.557 1.39z",
|
|
6608
|
+
fill: "#fff"
|
|
6457
6609
|
})));
|
|
6458
6610
|
}
|
|
6459
6611
|
|
|
6460
6612
|
var _path$s, _path2$c, _path3$8;
|
|
6461
6613
|
|
|
6462
|
-
var _excluded$
|
|
6614
|
+
var _excluded$R = ["title", "titleId"];
|
|
6463
6615
|
|
|
6464
|
-
function _extends$v() { _extends$v = Object.assign
|
|
6616
|
+
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); }
|
|
6465
6617
|
|
|
6466
6618
|
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; }
|
|
6467
6619
|
|
|
6468
6620
|
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; }
|
|
6469
6621
|
|
|
6470
|
-
function
|
|
6622
|
+
function SvgLogoAppleAppStoreWhite(_ref) {
|
|
6471
6623
|
var title = _ref.title,
|
|
6472
6624
|
titleId = _ref.titleId,
|
|
6473
|
-
props = _objectWithoutProperties$u(_ref, _excluded$
|
|
6625
|
+
props = _objectWithoutProperties$u(_ref, _excluded$R);
|
|
6474
6626
|
|
|
6475
6627
|
return /*#__PURE__*/createElement("svg", _extends$v({
|
|
6476
|
-
viewBox: "0 0
|
|
6477
|
-
fill: "
|
|
6628
|
+
viewBox: "0 0 200 67",
|
|
6629
|
+
fill: "none",
|
|
6478
6630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6479
6631
|
"aria-labelledby": titleId
|
|
6480
6632
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6481
6633
|
id: titleId
|
|
6482
6634
|
}, title) : null, _path$s || (_path$s = /*#__PURE__*/createElement("path", {
|
|
6483
|
-
d: "
|
|
6635
|
+
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",
|
|
6636
|
+
fill: "#000"
|
|
6484
6637
|
})), _path2$c || (_path2$c = /*#__PURE__*/createElement("path", {
|
|
6485
|
-
d: "
|
|
6638
|
+
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",
|
|
6639
|
+
fill: "#fff"
|
|
6486
6640
|
})), _path3$8 || (_path3$8 = /*#__PURE__*/createElement("path", {
|
|
6487
|
-
d: "
|
|
6641
|
+
d: "M41.785 33.244a8.606 8.606 0 014.095-7.22 8.809 8.809 0 00-6.936-3.744c-2.925-.318-5.75 1.671-7.238 1.671-1.487 0-3.81-1.671-6.267-1.671a9.294 9.294 0 00-7.789 4.73c-3.343 5.833-.852 14.374 2.373 19.087 1.672 2.307 3.494 4.864 5.95 4.78 2.458-.083 3.343-1.537 6.235-1.537 2.892 0 3.727 1.537 6.234 1.487 2.507-.05 4.212-2.323 5.767-4.646a18.854 18.854 0 002.59-5.299 8.357 8.357 0 01-5.014-7.638zM37.038 19.188a8.574 8.574 0 001.939-6.067 8.591 8.591 0 00-5.549 2.874 8.09 8.09 0 00-1.989 5.85 7.186 7.186 0 005.6-2.657zM70.7 45.362h-7.905l-1.906 5.616h-3.343l7.488-20.759h3.493l7.488 20.759h-3.342L70.7 45.362zm-7.086-2.59h6.267l-3.025-9.11h-.084l-3.158 9.11zM92.195 43.456c0 4.697-2.524 7.722-6.318 7.722a5.165 5.165 0 01-4.764-2.707v7.488h-3.175V35.902h3.008v2.54a5.383 5.383 0 014.83-2.674c3.878-.084 6.419 2.942 6.419 7.688zm-3.193 0c0-3.058-1.671-5.014-3.995-5.014-2.323 0-3.977 2.056-3.977 5.014 0 2.959 1.671 5.098 3.977 5.098 2.307 0 3.995-2.056 3.995-5.098zM108.842 43.456c0 4.697-2.507 7.722-6.302 7.722a5.147 5.147 0 01-4.763-2.707v7.488h-3.176V35.902h2.992v2.54a5.382 5.382 0 014.814-2.674c3.911-.084 6.435 2.942 6.435 7.688zm-3.193 0c0-3.058-1.571-5.014-3.994-5.014-2.424 0-3.962 2.056-3.962 5.014 0 2.959 1.588 5.015 3.962 5.015 2.373 0 3.994-1.973 3.994-5.014zM119.856 45.128c.234 2.056 2.223 3.343 5.015 3.343 2.791 0 4.496-1.354 4.496-3.21 0-1.855-1.137-2.574-3.828-3.242l-2.691-.652c-3.811-.92-5.582-2.69-5.582-5.582 0-3.594 3.125-6.05 7.554-6.05 4.43 0 7.405 2.456 7.505 6.05h-3.192c-.184-2.073-1.906-3.343-4.396-3.343-2.491 0-4.212 1.253-4.212 3.109 0 1.454 1.086 2.323 3.761 2.991l2.289.552c4.262 1.003 6.017 2.724 6.017 5.75 0 3.894-3.092 6.317-8.006 6.317-4.596 0-7.705-2.373-7.905-6.117l3.175.084zM139.311 32.258v3.577h2.875v2.457h-2.875v8.357c0 1.287.569 1.889 1.839 1.889.339.02.68.02 1.019 0v2.44a8.703 8.703 0 01-1.671.15c-3.075 0-4.262-1.153-4.262-4.095v-8.741h-2.257v-2.457h2.207v-3.577h3.125zM143.841 43.456c0-4.763 2.808-7.755 7.187-7.755 4.379 0 7.17 2.992 7.17 7.755 0 4.764-2.758 7.706-7.17 7.706-4.413 0-7.187-2.975-7.187-7.706zm11.198 0c0-3.259-1.504-5.198-4.011-5.198s-3.945 1.856-3.945 5.198c0 3.343 1.488 5.198 4.012 5.198 2.524 0 3.944-1.972 3.944-5.198zM160.772 35.835h3.025v2.607a3.615 3.615 0 013.644-2.724c.355-.006.709.033 1.053.117v2.908a3.796 3.796 0 00-1.354-.3 3.14 3.14 0 00-3.223 2.178 3.154 3.154 0 00-.12 1.381v8.976h-3.025V35.835zM182.818 46.532c-.418 2.741-3.092 4.63-6.518 4.63-4.396 0-7.121-2.959-7.121-7.689s2.742-7.822 7.004-7.822 6.819 2.875 6.819 7.471v1.053h-10.697v.2a3.935 3.935 0 002.445 3.992c.518.21 1.075.309 1.633.288a3.426 3.426 0 003.493-2.123h2.942zm-10.496-4.53h7.571a3.648 3.648 0 00-1.023-2.72 3.644 3.644 0 00-2.687-1.107 3.826 3.826 0 00-3.861 3.827zM63.23 14.591a4.412 4.412 0 014.68 5.014c0 3.176-1.672 5.015-4.68 5.015h-3.611V14.59h3.61zm-2.057 8.558h1.872a3.126 3.126 0 003.343-3.577 3.142 3.142 0 00-3.343-3.577h-1.872v7.154zM69.664 20.792a3.561 3.561 0 117.104 0 3.56 3.56 0 11-7.104 0zm5.566 0c0-1.671-.719-2.574-2.006-2.574s-2.022.953-2.022 2.574.668 2.607 2.022 2.607c1.354 0 1.99-.969 1.99-2.607h.016zM86.194 24.57h-1.538l-1.554-5.55h-.117l-1.554 5.55H79.91l-2.073-7.538h1.504l1.354 5.75h.1l1.555-5.75h1.42l1.555 5.75h.117l1.337-5.75h1.488l-2.073 7.538zM90.005 17.032h1.437v1.203h.117a2.223 2.223 0 012.24-1.337 2.44 2.44 0 012.607 2.791v4.88H94.92v-4.512c0-1.22-.535-1.822-1.671-1.822a1.672 1.672 0 00-1.806 1.905v4.43h-1.487l.05-7.538zM98.763 14.107h1.521V24.57h-1.487l-.034-10.463zM102.323 20.792a3.573 3.573 0 01.95-2.673 3.564 3.564 0 014.021-.836 3.564 3.564 0 012.133 3.51 3.572 3.572 0 01-2.133 3.509 3.563 3.563 0 01-4.774-2.074 3.574 3.574 0 01-.197-1.436zm5.566 0c0-1.671-.735-2.574-2.022-2.574s-2.006.953-2.006 2.574.719 2.607 2.006 2.607 2.022-.969 2.022-2.607zM110.981 22.43c0-1.354 1.003-2.122 2.808-2.24l2.039-.133v-.652c0-.786-.535-1.237-1.554-1.237-1.02 0-1.404.3-1.555.836h-1.454c.167-1.304 1.371-2.123 3.076-2.123s2.958.936 2.958 2.524v5.165h-1.437V23.5h-.117a2.497 2.497 0 01-2.257 1.187 2.276 2.276 0 01-2.309-1.335 2.273 2.273 0 01-.198-.922zm4.847-.702v-.635l-1.838.117c-1.037 0-1.521.435-1.521 1.086 0 .652.601 1.07 1.404 1.07a1.774 1.774 0 001.955-1.638zM119.255 20.792c0-2.373 1.22-3.877 3.125-3.877a2.49 2.49 0 012.307 1.32h.1v-4.128h1.488V24.57h-1.421V23.4h-.117a2.61 2.61 0 01-2.357 1.303c-1.922-.016-3.125-1.52-3.125-3.91zm1.537 0c0 1.672.752 2.557 2.006 2.557 1.254 0 2.022-.969 2.022-2.54 0-1.571-.785-2.557-2.022-2.557-1.237 0-2.006.97-2.006 2.54zM132.425 20.792a3.573 3.573 0 01.95-2.673 3.564 3.564 0 012.602-1.13 3.555 3.555 0 012.602 1.13 3.573 3.573 0 01.95 2.673 3.572 3.572 0 01-2.134 3.509 3.555 3.555 0 01-4.02-.835 3.557 3.557 0 01-.95-2.674zm5.566 0c0-1.671-.736-2.574-2.006-2.574-1.27 0-2.022.953-2.022 2.574s.718 2.607 2.022 2.607c1.304 0 2.006-.969 2.006-2.607zM141.518 17.032h1.42v1.203h.117a2.274 2.274 0 012.257-1.337 2.438 2.438 0 012.59 2.791v4.88h-1.471v-4.512c0-1.22-.534-1.822-1.671-1.822a1.672 1.672 0 00-1.788 1.905v4.43h-1.488l.034-7.538zM156.31 15.16v1.922h1.671v1.303h-1.671v3.878c0 .786.317 1.137 1.053 1.137h.568v1.237a5.77 5.77 0 01-.802 0c-1.672 0-2.307-.569-2.307-2.023v-4.229h-1.203V17.15h1.203v-1.99h1.488zM159.953 14.107h1.488v4.145h.117a2.29 2.29 0 012.239-1.354 2.471 2.471 0 012.501 1.73c.109.348.14.716.09 1.078v4.864H164.9v-4.513c0-1.203-.551-1.805-1.671-1.805a1.768 1.768 0 00-1.801 1.153c-.089.24-.124.497-.104.752v4.413h-1.371V14.107zM175.096 22.53a3.041 3.041 0 01-3.343 2.173 3.345 3.345 0 01-3.386-2.4 3.34 3.34 0 01-.09-1.477 3.462 3.462 0 01.123-1.47 3.472 3.472 0 013.353-2.459c2.09 0 3.343 1.422 3.343 3.795v.518h-5.298v.084a1.959 1.959 0 00.562 1.52 1.958 1.958 0 001.51.586 1.84 1.84 0 001.805-.92l1.421.05zm-5.215-2.473h3.794a1.812 1.812 0 00-1.115-1.816 1.822 1.822 0 00-.74-.14 1.918 1.918 0 00-1.382.569 1.925 1.925 0 00-.557 1.387z",
|
|
6642
|
+
fill: "#000"
|
|
6488
6643
|
})));
|
|
6489
6644
|
}
|
|
6490
6645
|
|
|
6491
|
-
var _path$t;
|
|
6646
|
+
var _path$t, _path2$d, _path3$9;
|
|
6492
6647
|
|
|
6493
|
-
var _excluded$
|
|
6648
|
+
var _excluded$S = ["title", "titleId"];
|
|
6494
6649
|
|
|
6495
|
-
function _extends$w() { _extends$w = Object.assign
|
|
6650
|
+
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); }
|
|
6496
6651
|
|
|
6497
6652
|
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; }
|
|
6498
6653
|
|
|
6499
6654
|
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; }
|
|
6500
6655
|
|
|
6501
|
-
function
|
|
6656
|
+
function SvgLogoBplBlack(_ref) {
|
|
6502
6657
|
var title = _ref.title,
|
|
6503
6658
|
titleId = _ref.titleId,
|
|
6504
|
-
props = _objectWithoutProperties$v(_ref, _excluded$
|
|
6659
|
+
props = _objectWithoutProperties$v(_ref, _excluded$S);
|
|
6505
6660
|
|
|
6506
6661
|
return /*#__PURE__*/createElement("svg", _extends$w({
|
|
6507
|
-
viewBox: "0 0
|
|
6508
|
-
fill: "#436CF2",
|
|
6662
|
+
viewBox: "0 0 328 120",
|
|
6509
6663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6510
6664
|
"aria-labelledby": titleId
|
|
6511
6665
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6512
6666
|
id: titleId
|
|
6513
6667
|
}, title) : null, _path$t || (_path$t = /*#__PURE__*/createElement("path", {
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
d: "
|
|
6668
|
+
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"
|
|
6669
|
+
})), _path2$d || (_path2$d = /*#__PURE__*/createElement("path", {
|
|
6670
|
+
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"
|
|
6671
|
+
})), _path3$9 || (_path3$9 = /*#__PURE__*/createElement("path", {
|
|
6672
|
+
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"
|
|
6517
6673
|
})));
|
|
6518
6674
|
}
|
|
6519
6675
|
|
|
6520
|
-
var _path$u;
|
|
6676
|
+
var _path$u, _path2$e, _path3$a;
|
|
6521
6677
|
|
|
6522
|
-
var _excluded$
|
|
6678
|
+
var _excluded$T = ["title", "titleId"];
|
|
6523
6679
|
|
|
6524
|
-
function _extends$x() { _extends$x = Object.assign
|
|
6680
|
+
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); }
|
|
6525
6681
|
|
|
6526
6682
|
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; }
|
|
6527
6683
|
|
|
6528
6684
|
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; }
|
|
6529
6685
|
|
|
6530
|
-
function
|
|
6686
|
+
function SvgLogoBplWhite(_ref) {
|
|
6531
6687
|
var title = _ref.title,
|
|
6532
6688
|
titleId = _ref.titleId,
|
|
6533
|
-
props = _objectWithoutProperties$w(_ref, _excluded$
|
|
6689
|
+
props = _objectWithoutProperties$w(_ref, _excluded$T);
|
|
6534
6690
|
|
|
6535
6691
|
return /*#__PURE__*/createElement("svg", _extends$x({
|
|
6536
|
-
viewBox: "0 0
|
|
6692
|
+
viewBox: "0 0 328 120",
|
|
6537
6693
|
fill: "#fff",
|
|
6538
6694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6539
6695
|
"aria-labelledby": titleId
|
|
6540
6696
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6541
6697
|
id: titleId
|
|
6542
6698
|
}, title) : null, _path$u || (_path$u = /*#__PURE__*/createElement("path", {
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
d: "
|
|
6699
|
+
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"
|
|
6700
|
+
})), _path2$e || (_path2$e = /*#__PURE__*/createElement("path", {
|
|
6701
|
+
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"
|
|
6702
|
+
})), _path3$a || (_path3$a = /*#__PURE__*/createElement("path", {
|
|
6703
|
+
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"
|
|
6546
6704
|
})));
|
|
6547
6705
|
}
|
|
6548
6706
|
|
|
6549
|
-
var
|
|
6707
|
+
var _rect$2, _path$v;
|
|
6550
6708
|
|
|
6551
|
-
var _excluded$
|
|
6709
|
+
var _excluded$U = ["title", "titleId"];
|
|
6552
6710
|
|
|
6553
|
-
function _extends$y() { _extends$y = Object.assign
|
|
6711
|
+
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); }
|
|
6554
6712
|
|
|
6555
6713
|
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; }
|
|
6556
6714
|
|
|
6557
6715
|
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; }
|
|
6558
6716
|
|
|
6559
|
-
function
|
|
6717
|
+
function SvgLogoCleverBadgeColor(_ref) {
|
|
6560
6718
|
var title = _ref.title,
|
|
6561
6719
|
titleId = _ref.titleId,
|
|
6562
|
-
props = _objectWithoutProperties$x(_ref, _excluded$
|
|
6720
|
+
props = _objectWithoutProperties$x(_ref, _excluded$U);
|
|
6563
6721
|
|
|
6564
6722
|
return /*#__PURE__*/createElement("svg", _extends$y({
|
|
6565
|
-
viewBox: "0 0
|
|
6723
|
+
viewBox: "0 0 118 119",
|
|
6566
6724
|
fill: "none",
|
|
6567
6725
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6568
6726
|
"aria-labelledby": titleId
|
|
6569
6727
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6570
6728
|
id: titleId
|
|
6571
|
-
}, title) : null,
|
|
6572
|
-
|
|
6573
|
-
|
|
6574
|
-
|
|
6575
|
-
|
|
6576
|
-
fill: "#
|
|
6577
|
-
})),
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6729
|
+
}, title) : null, _rect$2 || (_rect$2 = /*#__PURE__*/createElement("rect", {
|
|
6730
|
+
y: 0.951,
|
|
6731
|
+
width: 118,
|
|
6732
|
+
height: 118,
|
|
6733
|
+
rx: 20,
|
|
6734
|
+
fill: "#436CF2"
|
|
6735
|
+
})), _path$v || (_path$v = /*#__PURE__*/createElement("path", {
|
|
6736
|
+
fillRule: "evenodd",
|
|
6737
|
+
clipRule: "evenodd",
|
|
6738
|
+
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",
|
|
6739
|
+
fill: "#fff"
|
|
6740
|
+
})));
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
var _path$w;
|
|
6744
|
+
|
|
6745
|
+
var _excluded$V = ["title", "titleId"];
|
|
6746
|
+
|
|
6747
|
+
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); }
|
|
6748
|
+
|
|
6749
|
+
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; }
|
|
6750
|
+
|
|
6751
|
+
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; }
|
|
6752
|
+
|
|
6753
|
+
function SvgLogoCleverColor(_ref) {
|
|
6754
|
+
var title = _ref.title,
|
|
6755
|
+
titleId = _ref.titleId,
|
|
6756
|
+
props = _objectWithoutProperties$y(_ref, _excluded$V);
|
|
6757
|
+
|
|
6758
|
+
return /*#__PURE__*/createElement("svg", _extends$z({
|
|
6759
|
+
viewBox: "0 0 312 88",
|
|
6760
|
+
fill: "#436CF2",
|
|
6761
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6762
|
+
"aria-labelledby": titleId
|
|
6763
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6764
|
+
id: titleId
|
|
6765
|
+
}, title) : null, _path$w || (_path$w = /*#__PURE__*/createElement("path", {
|
|
6766
|
+
fillRule: "evenodd",
|
|
6767
|
+
clipRule: "evenodd",
|
|
6768
|
+
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"
|
|
6769
|
+
})));
|
|
6770
|
+
}
|
|
6771
|
+
|
|
6772
|
+
var _path$x;
|
|
6773
|
+
|
|
6774
|
+
var _excluded$W = ["title", "titleId"];
|
|
6775
|
+
|
|
6776
|
+
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); }
|
|
6777
|
+
|
|
6778
|
+
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; }
|
|
6779
|
+
|
|
6780
|
+
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; }
|
|
6781
|
+
|
|
6782
|
+
function SvgLogoCleverWhite(_ref) {
|
|
6783
|
+
var title = _ref.title,
|
|
6784
|
+
titleId = _ref.titleId,
|
|
6785
|
+
props = _objectWithoutProperties$z(_ref, _excluded$W);
|
|
6786
|
+
|
|
6787
|
+
return /*#__PURE__*/createElement("svg", _extends$A({
|
|
6788
|
+
viewBox: "0 0 312 88",
|
|
6789
|
+
fill: "#fff",
|
|
6790
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6791
|
+
"aria-labelledby": titleId
|
|
6792
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6793
|
+
id: titleId
|
|
6794
|
+
}, title) : null, _path$x || (_path$x = /*#__PURE__*/createElement("path", {
|
|
6795
|
+
fillRule: "evenodd",
|
|
6796
|
+
clipRule: "evenodd",
|
|
6797
|
+
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"
|
|
6798
|
+
})));
|
|
6799
|
+
}
|
|
6800
|
+
|
|
6801
|
+
var _path$y, _path2$f, _path3$b, _path4$1, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13;
|
|
6802
|
+
|
|
6803
|
+
var _excluded$X = ["title", "titleId"];
|
|
6804
|
+
|
|
6805
|
+
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); }
|
|
6806
|
+
|
|
6807
|
+
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; }
|
|
6808
|
+
|
|
6809
|
+
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; }
|
|
6810
|
+
|
|
6811
|
+
function SvgLogoFirstbookColor(_ref) {
|
|
6812
|
+
var title = _ref.title,
|
|
6813
|
+
titleId = _ref.titleId,
|
|
6814
|
+
props = _objectWithoutProperties$A(_ref, _excluded$X);
|
|
6815
|
+
|
|
6816
|
+
return /*#__PURE__*/createElement("svg", _extends$B({
|
|
6817
|
+
viewBox: "0 0 172 152",
|
|
6818
|
+
fill: "none",
|
|
6819
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6820
|
+
"aria-labelledby": titleId
|
|
6821
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6822
|
+
id: titleId
|
|
6823
|
+
}, title) : null, _path$y || (_path$y = /*#__PURE__*/createElement("path", {
|
|
6824
|
+
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",
|
|
6825
|
+
fill: "#ED1C24"
|
|
6826
|
+
})), _path2$f || (_path2$f = /*#__PURE__*/createElement("path", {
|
|
6827
|
+
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",
|
|
6828
|
+
fill: "#00ACE4"
|
|
6829
|
+
})), _path3$b || (_path3$b = /*#__PURE__*/createElement("path", {
|
|
6830
|
+
d: "M166.258 133.114a4.07 4.07 0 00-2.341.732 4.367 4.367 0 00-1.558 1.969 4.598 4.598 0 00-.249 2.543 4.47 4.47 0 001.143 2.259 4.16 4.16 0 002.151 1.214c.815.173 1.662.09 2.432-.24a4.26 4.26 0 001.895-1.614 4.545 4.545 0 00.718-2.443 4.573 4.573 0 00-.314-1.686 4.43 4.43 0 00-.907-1.433 4.222 4.222 0 00-1.361-.96 4.051 4.051 0 00-1.609-.341zm0 8.194c-.72 0-1.424-.224-2.023-.642a3.783 3.783 0 01-1.341-1.71 3.98 3.98 0 01-.207-2.2 3.867 3.867 0 01.996-1.95 3.597 3.597 0 011.864-1.043 3.496 3.496 0 012.104.217 3.675 3.675 0 011.633 1.403c.4.626.614 1.363.614 2.116a3.913 3.913 0 01-1.071 2.688 3.58 3.58 0 01-2.569 1.121zM77.868 51.156h.167L56.409 48.64v.017L0 41.861v99.691l76.481 10.238 79.672-9.556V41.861l-78.285 9.295z",
|
|
6831
|
+
fill: "#00ACE4"
|
|
6832
|
+
})), _path4$1 || (_path4$1 = /*#__PURE__*/createElement("path", {
|
|
6833
|
+
d: "M8.183 99.674V67.666L25.35 69.85v6.657l-9.82-1.258v6.115l6.964.89v6.465l-6.963-.89V100.6l-7.348-.926z",
|
|
6834
|
+
fill: "#ED1C24"
|
|
6583
6835
|
})), _path5 || (_path5 = /*#__PURE__*/createElement("path", {
|
|
6584
6836
|
d: "M8.483 68.47l16.048 2.027v5.241l-9.401-1.205v7.39l6.946.891v5.241l-6.946-.89v12.753l-6.546-.838V68.26l-.1.21zm-1.119-1.537v33.195l1.103.14 6.479.821 1.403.175v-12.72l5.61.717 1.437.175v-7.74l-1.053-.14-5.894-.751v-4.822l8.082 1.048 1.32.175v-7.932l-1.07-.14-16.047-2.01-1.37-.174v-.017z",
|
|
6585
6837
|
fill: "#fff"
|
|
@@ -6612,20 +6864,20 @@ function SvgLogoFirstbookColor(_ref) {
|
|
|
6612
6864
|
|
|
6613
6865
|
var _g;
|
|
6614
6866
|
|
|
6615
|
-
var _excluded$
|
|
6867
|
+
var _excluded$Y = ["title", "titleId"];
|
|
6616
6868
|
|
|
6617
|
-
function _extends$
|
|
6869
|
+
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); }
|
|
6618
6870
|
|
|
6619
|
-
function _objectWithoutProperties$
|
|
6871
|
+
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; }
|
|
6620
6872
|
|
|
6621
|
-
function _objectWithoutPropertiesLoose$
|
|
6873
|
+
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; }
|
|
6622
6874
|
|
|
6623
6875
|
function SvgLogoFirstbookColorNegative(_ref) {
|
|
6624
6876
|
var title = _ref.title,
|
|
6625
6877
|
titleId = _ref.titleId,
|
|
6626
|
-
props = _objectWithoutProperties$
|
|
6878
|
+
props = _objectWithoutProperties$B(_ref, _excluded$Y);
|
|
6627
6879
|
|
|
6628
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
6880
|
+
return /*#__PURE__*/createElement("svg", _extends$C({
|
|
6629
6881
|
viewBox: "0 0 170 150",
|
|
6630
6882
|
fill: "none",
|
|
6631
6883
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -6679,174 +6931,320 @@ function SvgLogoFirstbookColorNegative(_ref) {
|
|
|
6679
6931
|
}))));
|
|
6680
6932
|
}
|
|
6681
6933
|
|
|
6682
|
-
var
|
|
6934
|
+
var _g$1, _defs;
|
|
6683
6935
|
|
|
6684
|
-
var _excluded$
|
|
6936
|
+
var _excluded$Z = ["title", "titleId"];
|
|
6685
6937
|
|
|
6686
|
-
function _extends$
|
|
6938
|
+
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); }
|
|
6687
6939
|
|
|
6688
|
-
function _objectWithoutProperties$
|
|
6940
|
+
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; }
|
|
6689
6941
|
|
|
6690
|
-
function _objectWithoutPropertiesLoose$
|
|
6942
|
+
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; }
|
|
6943
|
+
|
|
6944
|
+
function SvgLogoGooglePlayBlack(_ref) {
|
|
6945
|
+
var title = _ref.title,
|
|
6946
|
+
titleId = _ref.titleId,
|
|
6947
|
+
props = _objectWithoutProperties$C(_ref, _excluded$Z);
|
|
6948
|
+
|
|
6949
|
+
return /*#__PURE__*/createElement("svg", _extends$D({
|
|
6950
|
+
viewBox: "0 0 200 60",
|
|
6951
|
+
fill: "none",
|
|
6952
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6953
|
+
"aria-labelledby": titleId
|
|
6954
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6955
|
+
id: titleId
|
|
6956
|
+
}, title) : null, _g$1 || (_g$1 = /*#__PURE__*/createElement("g", {
|
|
6957
|
+
clipPath: "url(#logo-google-play-black_svg__clip0_55995_43169)"
|
|
6958
|
+
}, /*#__PURE__*/createElement("path", {
|
|
6959
|
+
d: "M192.593 0H7.407A7.407 7.407 0 000 7.407v44.445a7.407 7.407 0 007.407 7.407h185.186A7.407 7.407 0 00200 51.852V7.407A7.407 7.407 0 00192.593 0z",
|
|
6960
|
+
fill: "#000"
|
|
6961
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6962
|
+
d: "M192.593 1.185a6.236 6.236 0 016.222 6.222v44.445a6.238 6.238 0 01-6.222 6.222H7.407a6.222 6.222 0 01-6.222-6.222V7.407a6.222 6.222 0 016.222-6.222h185.186zm0-1.185H7.407A7.407 7.407 0 000 7.407v44.445a7.408 7.408 0 007.407 7.407h185.186A7.406 7.406 0 00200 51.852V7.407A7.404 7.404 0 00192.593 0z",
|
|
6963
|
+
fill: "#A6A6A6"
|
|
6964
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6965
|
+
d: "M70.237 15.17a4.016 4.016 0 01-1.096 2.963 4.326 4.326 0 01-3.274 1.304 4.578 4.578 0 01-4.608-4.637 4.577 4.577 0 014.608-4.637 4.577 4.577 0 011.837.37 3.6 3.6 0 011.377.993l-.77.785a2.962 2.962 0 00-2.444-1.067 3.467 3.467 0 00-3.467 3.57 3.467 3.467 0 003.452 3.556 3.438 3.438 0 002.474-.963 2.77 2.77 0 00.74-1.807h-3.2v-1.156h4.312c.044.24.064.483.059.726zM77.067 11.482h-4.045v2.814h3.645v1.067h-3.645v2.815h4.045v1.096h-5.185v-8.889h5.185v1.097zM81.881 19.26h-1.14V11.48h-2.474v-1.096h6.103v1.097h-2.489v7.777zM88.785 19.26v-8.89h1.14v8.89h-1.14zM94.993 19.26h-1.141V11.48h-2.474v-1.096h6.103v1.097h-2.488v7.777zM109.037 18.104a4.61 4.61 0 01-6.519 0 4.801 4.801 0 010-6.578 4.603 4.603 0 013.26-1.351 4.611 4.611 0 013.259 1.35 4.554 4.554 0 011.318 3.29 4.433 4.433 0 01-1.318 3.289zm-5.674-.697a3.282 3.282 0 002.415 1.008 3.244 3.244 0 002.415-1.008 3.44 3.44 0 00.992-2.548 3.428 3.428 0 00-.992-2.548 3.25 3.25 0 00-2.415-1.007 3.289 3.289 0 00-2.415 1.007 3.807 3.807 0 000 5.096zM111.956 19.26v-8.89h1.392l4.311 6.919V10.37h1.156v8.89h-1.2l-4.445-7.245v7.244h-1.214z",
|
|
6966
|
+
fill: "#fff",
|
|
6967
|
+
stroke: "#fff",
|
|
6968
|
+
strokeWidth: 0.2,
|
|
6969
|
+
strokeMiterlimit: 10
|
|
6970
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6971
|
+
d: "M100.918 32.222a6.311 6.311 0 106.326 6.297 6.208 6.208 0 00-6.326-6.297zm0 10.119a3.82 3.82 0 01-4.044-4.391 3.822 3.822 0 017.6.569 3.64 3.64 0 01-.972 2.66 3.636 3.636 0 01-2.584 1.162zM87.141 32.222a6.311 6.311 0 106.37 6.297 6.208 6.208 0 00-6.37-6.297zm0 10.119a3.821 3.821 0 01-1.116-7.54 3.822 3.822 0 014.671 3.718 3.643 3.643 0 01-3.555 3.822zm-16.415-8.178v2.667h6.4a5.51 5.51 0 01-1.482 3.363 6.503 6.503 0 01-4.933 1.955 7.111 7.111 0 010-14.222 6.83 6.83 0 014.815 1.911l1.896-1.881a9.347 9.347 0 00-6.711-2.697 9.793 9.793 0 100 19.57 9.007 9.007 0 006.83-2.74 8.889 8.889 0 002.31-6.267 8.026 8.026 0 00-.147-1.659h-8.978zm67.126 2.074a5.93 5.93 0 00-5.393-4.015 5.931 5.931 0 00-5.586 3.915 5.937 5.937 0 00-.34 2.382 6.178 6.178 0 006.267 6.31 6.27 6.27 0 005.155-2.8l-2.148-1.48a3.568 3.568 0 01-3.096 1.733 3.2 3.2 0 01-3.067-1.911l8.43-3.482-.222-.652zm-8.593 2.104a3.451 3.451 0 013.289-3.689A2.459 2.459 0 01134.889 36l-5.63 2.34zm-6.859 6.103h2.77V25.926h-2.77v18.518zm-4.533-10.74h-.089a4.448 4.448 0 00-3.319-1.482 6.311 6.311 0 000 12.608 4.3 4.3 0 003.319-1.482h.089v.904c0 2.415-1.289 3.704-3.363 3.704a3.482 3.482 0 01-3.215-2.193l-2.415.993a6.016 6.016 0 005.585 3.733c3.245 0 5.926-1.911 5.926-6.563V32.607h-2.518v1.097zm-3.171 8.637a3.824 3.824 0 01-3.584-3.815 3.824 3.824 0 013.584-3.815 3.542 3.542 0 013.363 3.837c.036.472-.023.946-.173 1.394a3.53 3.53 0 01-3.19 2.399zm36.119-16.415h-6.623v18.518h2.771v-7.022h3.852a5.766 5.766 0 006.176-5.748 5.763 5.763 0 00-6.176-5.748zm0 8.889h-3.926v-6.311h3.926a3.171 3.171 0 010 6.34v-.03zm17.155-2.593a5.185 5.185 0 00-4.933 2.83l2.459 1.022a2.609 2.609 0 012.519-1.348 2.668 2.668 0 012.963 2.385v.178a6.238 6.238 0 00-2.963-.711c-2.652 0-5.334 1.481-5.334 4.178a4.29 4.29 0 002.906 3.86 4.286 4.286 0 001.687.214 3.894 3.894 0 003.526-1.822h.104v1.481h2.666v-7.17c.03-3.29-2.429-5.097-5.6-5.097zm-.385 10.119c-.918 0-2.178-.46-2.178-1.57 0-1.482 1.571-1.986 2.963-1.986a4.982 4.982 0 012.534.623 3.36 3.36 0 01-3.319 2.933zm15.674-9.748l-3.17 8.03h-.104l-3.274-8.03h-2.963l4.919 11.23L175.911 50h2.874l7.6-17.467-3.126.06zm-24.904 11.851h2.771V25.926h-2.771v18.518z",
|
|
6972
|
+
fill: "#fff"
|
|
6973
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6974
|
+
d: "M15.452 11.17a2.963 2.963 0 00-.682 2.074v32.77a2.964 2.964 0 00.682 2.075l.104.118L33.91 29.852v-.445l-18.355-18.34-.104.103z",
|
|
6975
|
+
fill: "url(#logo-google-play-black_svg__paint0_linear_55995_43169)"
|
|
6976
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6977
|
+
d: "M40.03 35.97l-6.119-6.118v-.445l6.119-6.074h.148l7.244 4.119c2.074 1.17 2.074 3.096 0 4.281l-7.244 4.163-.148.074z",
|
|
6978
|
+
fill: "url(#logo-google-play-black_svg__paint1_linear_55995_43169)"
|
|
6979
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6980
|
+
d: "M40.178 35.882L33.91 29.63l-18.46 18.459a2.415 2.415 0 003.082.104l21.645-12.311z",
|
|
6981
|
+
fill: "url(#logo-google-play-black_svg__paint2_linear_55995_43169)"
|
|
6982
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6983
|
+
d: "M40.178 23.333L18.533 11.037a2.4 2.4 0 00-3.081.089l18.46 18.504 6.266-6.297z",
|
|
6984
|
+
fill: "url(#logo-google-play-black_svg__paint3_linear_55995_43169)"
|
|
6985
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6986
|
+
opacity: 0.2,
|
|
6987
|
+
d: "M40.03 35.748L18.532 47.97a2.489 2.489 0 01-2.963 0l-.103.104.103.119a2.489 2.489 0 002.963 0L40.178 35.88l-.148-.133z",
|
|
6988
|
+
fill: "#000"
|
|
6989
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6990
|
+
opacity: 0.12,
|
|
6991
|
+
d: "M15.452 47.881a2.963 2.963 0 01-.682-2.089v.223a2.963 2.963 0 00.682 2.074l.104-.104-.104-.104zM47.422 31.556l-7.407 4.192.148.134 7.245-4.119a2.592 2.592 0 001.481-2.133 2.8 2.8 0 01-1.467 1.926z",
|
|
6992
|
+
fill: "#000"
|
|
6993
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6994
|
+
opacity: 0.25,
|
|
6995
|
+
d: "M18.533 11.289l28.89 16.489a2.798 2.798 0 011.48 1.926 2.593 2.593 0 00-1.48-2.134l-28.89-16.488c-2.074-1.186-3.763-.208-3.763 2.162v.223c0-2.37 1.704-3.348 3.763-2.178z",
|
|
6996
|
+
fill: "#fff"
|
|
6997
|
+
}))), _defs || (_defs = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
|
|
6998
|
+
id: "logo-google-play-black_svg__paint0_linear_55995_43169",
|
|
6999
|
+
x1: 32.282,
|
|
7000
|
+
y1: 12.904,
|
|
7001
|
+
x2: 7.422,
|
|
7002
|
+
y2: 37.763,
|
|
7003
|
+
gradientUnits: "userSpaceOnUse"
|
|
7004
|
+
}, /*#__PURE__*/createElement("stop", {
|
|
7005
|
+
stopColor: "#00A0FF"
|
|
7006
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7007
|
+
offset: 0.01,
|
|
7008
|
+
stopColor: "#00A1FF"
|
|
7009
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7010
|
+
offset: 0.26,
|
|
7011
|
+
stopColor: "#00BEFF"
|
|
7012
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7013
|
+
offset: 0.51,
|
|
7014
|
+
stopColor: "#00D2FF"
|
|
7015
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7016
|
+
offset: 0.76,
|
|
7017
|
+
stopColor: "#00DFFF"
|
|
7018
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7019
|
+
offset: 1,
|
|
7020
|
+
stopColor: "#00E3FF"
|
|
7021
|
+
})), /*#__PURE__*/createElement("linearGradient", {
|
|
7022
|
+
id: "logo-google-play-black_svg__paint1_linear_55995_43169",
|
|
7023
|
+
x1: 50.118,
|
|
7024
|
+
y1: 29.63,
|
|
7025
|
+
x2: 14.267,
|
|
7026
|
+
y2: 29.63,
|
|
7027
|
+
gradientUnits: "userSpaceOnUse"
|
|
7028
|
+
}, /*#__PURE__*/createElement("stop", {
|
|
7029
|
+
stopColor: "#FFE000"
|
|
7030
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7031
|
+
offset: 0.41,
|
|
7032
|
+
stopColor: "#FFBD00"
|
|
7033
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7034
|
+
offset: 0.78,
|
|
7035
|
+
stopColor: "orange"
|
|
7036
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7037
|
+
offset: 1,
|
|
7038
|
+
stopColor: "#FF9C00"
|
|
7039
|
+
})), /*#__PURE__*/createElement("linearGradient", {
|
|
7040
|
+
id: "logo-google-play-black_svg__paint2_linear_55995_43169",
|
|
7041
|
+
x1: 36.77,
|
|
7042
|
+
y1: 33.037,
|
|
7043
|
+
x2: 3.052,
|
|
7044
|
+
y2: 66.741,
|
|
7045
|
+
gradientUnits: "userSpaceOnUse"
|
|
7046
|
+
}, /*#__PURE__*/createElement("stop", {
|
|
7047
|
+
stopColor: "#FF3A44"
|
|
7048
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7049
|
+
offset: 1,
|
|
7050
|
+
stopColor: "#C31162"
|
|
7051
|
+
})), /*#__PURE__*/createElement("linearGradient", {
|
|
7052
|
+
id: "logo-google-play-black_svg__paint3_linear_55995_43169",
|
|
7053
|
+
x1: 10.8,
|
|
7054
|
+
y1: 0.267,
|
|
7055
|
+
x2: 25.852,
|
|
7056
|
+
y2: 15.319,
|
|
7057
|
+
gradientUnits: "userSpaceOnUse"
|
|
7058
|
+
}, /*#__PURE__*/createElement("stop", {
|
|
7059
|
+
stopColor: "#32A071"
|
|
7060
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7061
|
+
offset: 0.07,
|
|
7062
|
+
stopColor: "#2DA771"
|
|
7063
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7064
|
+
offset: 0.48,
|
|
7065
|
+
stopColor: "#15CF74"
|
|
7066
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7067
|
+
offset: 0.8,
|
|
7068
|
+
stopColor: "#06E775"
|
|
7069
|
+
}), /*#__PURE__*/createElement("stop", {
|
|
7070
|
+
offset: 1,
|
|
7071
|
+
stopColor: "#00F076"
|
|
7072
|
+
})), /*#__PURE__*/createElement("clipPath", {
|
|
7073
|
+
id: "logo-google-play-black_svg__clip0_55995_43169"
|
|
7074
|
+
}, /*#__PURE__*/createElement("path", {
|
|
7075
|
+
fill: "#fff",
|
|
7076
|
+
d: "M0 0h200v59.259H0z"
|
|
7077
|
+
})))));
|
|
7078
|
+
}
|
|
7079
|
+
|
|
7080
|
+
var _path$z, _path2$g;
|
|
7081
|
+
|
|
7082
|
+
var _excluded$_ = ["title", "titleId"];
|
|
7083
|
+
|
|
7084
|
+
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); }
|
|
7085
|
+
|
|
7086
|
+
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; }
|
|
7087
|
+
|
|
7088
|
+
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; }
|
|
6691
7089
|
|
|
6692
7090
|
function SvgLogoLpaColor(_ref) {
|
|
6693
7091
|
var title = _ref.title,
|
|
6694
7092
|
titleId = _ref.titleId,
|
|
6695
|
-
props = _objectWithoutProperties$
|
|
7093
|
+
props = _objectWithoutProperties$D(_ref, _excluded$_);
|
|
6696
7094
|
|
|
6697
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7095
|
+
return /*#__PURE__*/createElement("svg", _extends$E({
|
|
6698
7096
|
viewBox: "0 0 186 74",
|
|
6699
7097
|
fill: "none",
|
|
6700
7098
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6701
7099
|
"aria-labelledby": titleId
|
|
6702
7100
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6703
7101
|
id: titleId
|
|
6704
|
-
}, title) : null, _path$
|
|
7102
|
+
}, title) : null, _path$z || (_path$z = /*#__PURE__*/createElement("path", {
|
|
6705
7103
|
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",
|
|
6706
7104
|
fill: "#008375"
|
|
6707
|
-
})), _path2$
|
|
7105
|
+
})), _path2$g || (_path2$g = /*#__PURE__*/createElement("path", {
|
|
6708
7106
|
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",
|
|
6709
7107
|
fill: "#000"
|
|
6710
7108
|
})));
|
|
6711
7109
|
}
|
|
6712
7110
|
|
|
6713
|
-
var _path$
|
|
7111
|
+
var _path$A;
|
|
6714
7112
|
|
|
6715
|
-
var _excluded
|
|
7113
|
+
var _excluded$$ = ["title", "titleId"];
|
|
6716
7114
|
|
|
6717
|
-
function _extends$
|
|
7115
|
+
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); }
|
|
6718
7116
|
|
|
6719
|
-
function _objectWithoutProperties$
|
|
7117
|
+
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; }
|
|
6720
7118
|
|
|
6721
|
-
function _objectWithoutPropertiesLoose$
|
|
7119
|
+
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; }
|
|
6722
7120
|
|
|
6723
7121
|
function SvgLogoLpaBlack(_ref) {
|
|
6724
7122
|
var title = _ref.title,
|
|
6725
7123
|
titleId = _ref.titleId,
|
|
6726
|
-
props = _objectWithoutProperties$
|
|
7124
|
+
props = _objectWithoutProperties$E(_ref, _excluded$$);
|
|
6727
7125
|
|
|
6728
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7126
|
+
return /*#__PURE__*/createElement("svg", _extends$F({
|
|
6729
7127
|
viewBox: "0 0 186 74",
|
|
6730
7128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6731
7129
|
"aria-labelledby": titleId
|
|
6732
7130
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6733
7131
|
id: titleId
|
|
6734
|
-
}, title) : null, _path$
|
|
7132
|
+
}, title) : null, _path$A || (_path$A = /*#__PURE__*/createElement("path", {
|
|
6735
7133
|
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"
|
|
6736
7134
|
})));
|
|
6737
7135
|
}
|
|
6738
7136
|
|
|
6739
|
-
var _path$
|
|
7137
|
+
var _path$B;
|
|
6740
7138
|
|
|
6741
|
-
var _excluded$
|
|
7139
|
+
var _excluded$10 = ["title", "titleId"];
|
|
6742
7140
|
|
|
6743
|
-
function _extends$
|
|
7141
|
+
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); }
|
|
6744
7142
|
|
|
6745
|
-
function _objectWithoutProperties$
|
|
7143
|
+
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; }
|
|
6746
7144
|
|
|
6747
|
-
function _objectWithoutPropertiesLoose$
|
|
7145
|
+
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; }
|
|
6748
7146
|
|
|
6749
7147
|
function SvgLogoLpaWhite(_ref) {
|
|
6750
7148
|
var title = _ref.title,
|
|
6751
7149
|
titleId = _ref.titleId,
|
|
6752
|
-
props = _objectWithoutProperties$
|
|
7150
|
+
props = _objectWithoutProperties$F(_ref, _excluded$10);
|
|
6753
7151
|
|
|
6754
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7152
|
+
return /*#__PURE__*/createElement("svg", _extends$G({
|
|
6755
7153
|
viewBox: "0 0 186 74",
|
|
6756
7154
|
fill: "#fff",
|
|
6757
7155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6758
7156
|
"aria-labelledby": titleId
|
|
6759
7157
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6760
7158
|
id: titleId
|
|
6761
|
-
}, title) : null, _path$
|
|
7159
|
+
}, title) : null, _path$B || (_path$B = /*#__PURE__*/createElement("path", {
|
|
6762
7160
|
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"
|
|
6763
7161
|
})));
|
|
6764
7162
|
}
|
|
6765
7163
|
|
|
6766
|
-
var _g$
|
|
7164
|
+
var _g$2;
|
|
6767
7165
|
|
|
6768
|
-
var _excluded$
|
|
7166
|
+
var _excluded$11 = ["title", "titleId"];
|
|
6769
7167
|
|
|
6770
|
-
function _extends$
|
|
7168
|
+
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); }
|
|
6771
7169
|
|
|
6772
|
-
function _objectWithoutProperties$
|
|
7170
|
+
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; }
|
|
6773
7171
|
|
|
6774
|
-
function _objectWithoutPropertiesLoose$
|
|
7172
|
+
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; }
|
|
6775
7173
|
|
|
6776
7174
|
function SvgLogoMlnBlack(_ref) {
|
|
6777
7175
|
var title = _ref.title,
|
|
6778
7176
|
titleId = _ref.titleId,
|
|
6779
|
-
props = _objectWithoutProperties$
|
|
7177
|
+
props = _objectWithoutProperties$G(_ref, _excluded$11);
|
|
6780
7178
|
|
|
6781
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7179
|
+
return /*#__PURE__*/createElement("svg", _extends$H({
|
|
6782
7180
|
viewBox: "0 0 300 71",
|
|
6783
7181
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6784
7182
|
"aria-labelledby": titleId
|
|
6785
7183
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6786
7184
|
id: titleId
|
|
6787
|
-
}, title) : null, _g$
|
|
7185
|
+
}, title) : null, _g$2 || (_g$2 = /*#__PURE__*/createElement("g", {
|
|
6788
7186
|
clipPath: "url(#logo-mln-black_svg__clip0_51609_40290)"
|
|
6789
7187
|
}, /*#__PURE__*/createElement("path", {
|
|
6790
7188
|
d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"
|
|
6791
7189
|
}))));
|
|
6792
7190
|
}
|
|
6793
7191
|
|
|
6794
|
-
var _g$
|
|
7192
|
+
var _g$3;
|
|
6795
7193
|
|
|
6796
|
-
var _excluded$
|
|
7194
|
+
var _excluded$12 = ["title", "titleId"];
|
|
6797
7195
|
|
|
6798
|
-
function _extends$
|
|
7196
|
+
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); }
|
|
6799
7197
|
|
|
6800
|
-
function _objectWithoutProperties$
|
|
7198
|
+
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; }
|
|
6801
7199
|
|
|
6802
|
-
function _objectWithoutPropertiesLoose$
|
|
7200
|
+
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; }
|
|
6803
7201
|
|
|
6804
7202
|
function SvgLogoMlnWhite(_ref) {
|
|
6805
7203
|
var title = _ref.title,
|
|
6806
7204
|
titleId = _ref.titleId,
|
|
6807
|
-
props = _objectWithoutProperties$
|
|
7205
|
+
props = _objectWithoutProperties$H(_ref, _excluded$12);
|
|
6808
7206
|
|
|
6809
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7207
|
+
return /*#__PURE__*/createElement("svg", _extends$I({
|
|
6810
7208
|
viewBox: "0 0 300 71",
|
|
6811
7209
|
fill: "#fff",
|
|
6812
7210
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6813
7211
|
"aria-labelledby": titleId
|
|
6814
7212
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6815
7213
|
id: titleId
|
|
6816
|
-
}, title) : null, _g$
|
|
7214
|
+
}, title) : null, _g$3 || (_g$3 = /*#__PURE__*/createElement("g", {
|
|
6817
7215
|
clipPath: "url(#logo-mln-white_svg__clip0_51609_40290)"
|
|
6818
7216
|
}, /*#__PURE__*/createElement("path", {
|
|
6819
7217
|
d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"
|
|
6820
7218
|
}))));
|
|
6821
7219
|
}
|
|
6822
7220
|
|
|
6823
|
-
var _path$
|
|
7221
|
+
var _path$C, _path2$h, _path3$c, _path4$2, _path5$1, _path6$1, _path7$1;
|
|
6824
7222
|
|
|
6825
|
-
var _excluded$
|
|
7223
|
+
var _excluded$13 = ["title", "titleId"];
|
|
6826
7224
|
|
|
6827
|
-
function _extends$
|
|
7225
|
+
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); }
|
|
6828
7226
|
|
|
6829
|
-
function _objectWithoutProperties$
|
|
7227
|
+
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; }
|
|
6830
7228
|
|
|
6831
|
-
function _objectWithoutPropertiesLoose$
|
|
7229
|
+
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; }
|
|
6832
7230
|
|
|
6833
7231
|
function SvgLogoNyplFullBlack(_ref) {
|
|
6834
7232
|
var title = _ref.title,
|
|
6835
7233
|
titleId = _ref.titleId,
|
|
6836
|
-
props = _objectWithoutProperties$
|
|
7234
|
+
props = _objectWithoutProperties$I(_ref, _excluded$13);
|
|
6837
7235
|
|
|
6838
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7236
|
+
return /*#__PURE__*/createElement("svg", _extends$J({
|
|
6839
7237
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6840
7238
|
viewBox: "0 0 966.787 543.733",
|
|
6841
7239
|
"aria-labelledby": titleId
|
|
6842
7240
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6843
7241
|
id: titleId
|
|
6844
|
-
}, title) : null, _path$
|
|
7242
|
+
}, title) : null, _path$C || (_path$C = /*#__PURE__*/createElement("path", {
|
|
6845
7243
|
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"
|
|
6846
|
-
})), _path2$
|
|
7244
|
+
})), _path2$h || (_path2$h = /*#__PURE__*/createElement("path", {
|
|
6847
7245
|
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",
|
|
6848
7246
|
fill: "#fff"
|
|
6849
|
-
})), _path3$
|
|
7247
|
+
})), _path3$c || (_path3$c = /*#__PURE__*/createElement("path", {
|
|
6850
7248
|
d: "M388.617 387.566c-1.555 4.852-3.401 10.939-7.359 8.115-7.351-5.47-23.692-15.988-39.517-21.825-.85-.19-.754-1.37-.454-2.035 1.122-2.485 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.878-2.401-8.718.048-2.779 1.354-5.69 1.622-8.97.783-9.49-11.194-17.403-17.731-20.452-14.83-6.924-30.59-13.117-46.607-21.568-9.041-4.769-16.297-15.23-23.552-20.845-7.327-5.654-30.879-14.995-40.292-17.482-2.125-.67-2.879-1.552-3.239-3.244-3.88-18.518-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.92 226.095 127.15 192.927 239.255",
|
|
6851
7249
|
fill: "#fff"
|
|
6852
7250
|
})), _path4$2 || (_path4$2 = /*#__PURE__*/createElement("path", {
|
|
@@ -6862,29 +7260,29 @@ function SvgLogoNyplFullBlack(_ref) {
|
|
|
6862
7260
|
})));
|
|
6863
7261
|
}
|
|
6864
7262
|
|
|
6865
|
-
var _g$
|
|
7263
|
+
var _g$4, _defs$1;
|
|
6866
7264
|
|
|
6867
|
-
var _excluded$
|
|
7265
|
+
var _excluded$14 = ["title", "titleId"];
|
|
6868
7266
|
|
|
6869
|
-
function _extends$
|
|
7267
|
+
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); }
|
|
6870
7268
|
|
|
6871
|
-
function _objectWithoutProperties$
|
|
7269
|
+
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; }
|
|
6872
7270
|
|
|
6873
|
-
function _objectWithoutPropertiesLoose$
|
|
7271
|
+
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; }
|
|
6874
7272
|
|
|
6875
7273
|
function SvgLogoNyplFullWhite(_ref) {
|
|
6876
7274
|
var title = _ref.title,
|
|
6877
7275
|
titleId = _ref.titleId,
|
|
6878
|
-
props = _objectWithoutProperties$
|
|
7276
|
+
props = _objectWithoutProperties$J(_ref, _excluded$14);
|
|
6879
7277
|
|
|
6880
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7278
|
+
return /*#__PURE__*/createElement("svg", _extends$K({
|
|
6881
7279
|
viewBox: "0 0 967 568",
|
|
6882
7280
|
fill: "none",
|
|
6883
7281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6884
7282
|
"aria-labelledby": titleId
|
|
6885
7283
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6886
7284
|
id: titleId
|
|
6887
|
-
}, title) : null, _g$
|
|
7285
|
+
}, title) : null, _g$4 || (_g$4 = /*#__PURE__*/createElement("g", {
|
|
6888
7286
|
clipPath: "url(#logo-nypl-full-white_svg__clip0_1147_1139)",
|
|
6889
7287
|
fill: "#fff"
|
|
6890
7288
|
}, /*#__PURE__*/createElement("path", {
|
|
@@ -6895,7 +7293,7 @@ function SvgLogoNyplFullWhite(_ref) {
|
|
|
6895
7293
|
d: "M346.699 344.448c-.114-.808-.461-3.545-.458-4.111.009-1.442 2.976-3.406 4.361-4.506 2.098-1.671 4.529-3.507 6.122-4.309.574-.362.958.472 1.034.638 5.854 8.888 3.66 30.847-.571 41.292-.489 1.062-1.385 1.478-1.751.698-2.157-4.711-5.359-8.952-9.035-11.28-.682-.527-.734-1.625-.682-1.831 1.184-4.962 1.799-10.465.98-16.591zm-72.394 54.056c1.264-3.639 2.731-5.784 5.559-7.553 5.327-3.343 14.182-3.486 22.726-4.072 8.278-.556 17.125-1.044 23.014-3.764 3.568-1.64 7.133-6.308 12.639-3.931 2.608 1.123 4.031 3.514 4.807 5.891.875 2.646 1.511 5.322 1.24 8.872-.793 10.245-9.114 15.247-10.61 24.824-.142 1.48-.392 3.622-1.243 4.472-6.352 6.467-18.914 5.108-30.273 3.963-4.066-.403-8.086-.514-10.837-1.823-1.984-.93-3.764-2.821-5.412-4.353-3.635-3.368-5.689-5.845-9.334-9.93-1.233-1.384-4.033-3.89-4.217-5.411-.16-1.46 1.402-5.648 1.941-7.185zM75.395 519.246c-4.169-3.417-5.963-6.298-8.36-10.344-19.45-31.083-30.349-141.175-5.287-178.512 7.975-13.084 16.424-7.054 13.615 3.059-4.799 22.703-1.857 35.424 9.182 60.056 17.348 36.609 70.896 87.433 85.072 105.865 24.301 31.616 32.389 54.647 32.279 60.851-.13 4.76-1.045 7.795-9.385 7.09-44.001-3.488-86.535-21.728-117.116-48.065"
|
|
6896
7294
|
}), /*#__PURE__*/createElement("path", {
|
|
6897
7295
|
d: "M100.548 370.783c-13.42-32.694-4.658-62.132 1.272-73.299 2.988-5.635 5.91-9.316 9.724-8.256 4.151 1.157 5.11 5.406 5.683 13.281 4.222 65.353 43.753 87.356 93.401 110.43 39.174 20.024 83.741 42.918 121.092 98.373 5.653 8.007 6.469 12.864.088 17.45-22.776 15.546-43.404 26.383-73.589 33.422-4.541 1.063-9.229.265-13.253-10.116C203.035 444.031 132.634 448.9 100.548 370.783zM360.26 503.607c-6.382 6.383-10.006 1.382-12.089-2.719-8.941-19.01-17.674-34.919-31.756-50.332-2.437-2.471-.558-5.944 3.028-5.589 4.582.366 7.586.114 12.627-2.051 4.268-1.832 9.154-7.814 11.591-16.405 1.776-6.268 1.86-8.112 5.7-8.501.954-.089 2.702.149 3.761.453 4.674 1.332 9.693 5.152 13.36 7.964 9.406 7.185 23.439 23.046 25.895 28.177 1.56 3.267.068 5.482-.812 7.349-4.923 10.062-20.445 30.918-31.305 41.654zM476.671 7.388h7.369l54.269 78.566V7.388h7.088v90.997h-6.976l-54.777-79.13v79.13h-6.973V7.388zM605.125 57.78c-.159-9.84-5.183-19.917-17.64-19.917-11.322 0-17.904 8.725-19.814 19.917h37.454zm-45.387 7.396c0-18.458 10.686-33.49 28.009-33.49 16.703 0 25.843 13.385 24.463 32h-44.935v1.49c.114 14.876 6.412 28.542 21.992 28.542 8.322 0 15.295-3.397 18.839-6.13l3.037 5.607c-4.106 2.997-11.642 6.705-22.16 6.705-19.953 0-29.245-16.025-29.245-34.724zm60.783-31.973h7.649l15.861 54.242 17.063-54.242h7.008l17.041 54.384 16.026-54.384h7.088l-19.688 65.183h-6.519l-17.609-54.947-17.662 54.947h-6.572l-19.686-65.183zm151.272 30.876l-30.492-56.69h8.503l25.815 49.163h.223l25.823-49.163h7.664l-30.163 56.69v34.307h-7.373V64.077zm83.09 1.8c0-14.623-7.789-28.016-22.693-28.016-14.734 0-21.426 13.112-21.426 27.735 0 14.735 7.189 28.12 21.989 28.12 14.9 0 22.13-13.104 22.13-27.84zm-51.712 0c0-16.423 8.773-34.193 29.246-34.193 20.551 0 29.976 17.658 29.976 33.912 0 16.365-9.336 34.302-29.81 34.302-20.47 0-29.412-17.655-29.412-34.022zm72.807-32.676h7.14v11.36c2.433-4.785 8.329-12.877 17.496-12.877 3.038 0 5.173.675 6.298 1.124l-1.752 6.692c-1.117-.448-2.636-.956-5.333-.956-9.043 0-14.906 10.63-16.709 14.454v45.386h-7.14V33.202zm51.796 28.572L956.4 33.202h8.828l-28.847 28.572 30.366 36.61h-8.88l-30.093-36.61zM920.048.008h7.106v98.377h-7.106V.008zM495.649 190.396c17.321 0 24.463-7.929 24.463-19.964 0-11.361-6.861-19.566-24.183-19.566h-11.64v39.53h11.36zm-18.881-45.946h19.837c19.122 0 31.158 9.448 31.158 25.701 0 16.418-11.361 26.658-32.002 26.658h-11.472v38.692h-7.521V144.45zm62.463 71.929v-46.096h7.087v44.577c0 9.563 3.428 15.691 13.384 15.691 9.731 0 17.77-9.165 19.965-12.991v-47.277h7.085v52.623c0 5.171.563 10.121 1.237 12.595h-7.243c-.403-2.249-.956-7.122-.956-10.686-3.126 4.949-10.528 12.188-21.567 12.188-13.663 0-18.992-8.926-18.992-20.624zM648.8 202.942c0-14.222-5.473-27.73-21.332-27.73-5.566 0-12.146 3.263-15.826 7.369v45.667c3.004 1.516 7.503 2.531 12.705 2.531 16.524 0 24.453-14.343 24.453-27.837zm-44.276 29.127v-94.987h7.118v39.199c3.961-4.499 10.372-7.479 17.065-7.479 18.613 0 27.613 14.895 27.613 33.853 0 18.337-12.316 34.348-32.228 34.348-7.814 0-15.07-1.916-19.568-4.934zm67.747-94.987h7.143v98.419h-7.143v-98.419zm28.278 33.201h7.207v65.218h-7.207v-65.218zm-1.79-19.253c0-3.149 2.474-5.456 5.345-5.456 3.033 0 5.508 2.307 5.508 5.456 0 3.148-2.475 5.585-5.508 5.585-2.871 0-5.345-2.437-5.345-5.585zm22.718 51.796c0-20.641 11.866-34.024 28.683-34.024 9.73 0 15.858 3.654 19.39 6.803l-3.7 5.218c-3.654-3.136-8.605-5.892-15.858-5.892-14.472 0-21.037 12.595-21.037 27.612 0 14.456 6.471 28.236 20.941 28.236 7.52 0 13.817-3.264 16.688-5.796l3.091 5.312c-3.491 3.126-10.347 6.708-20.244 6.708-18.701 0-27.954-16.741-27.954-34.177zM476.671 372.798v-90.997h19.402v75.392h33.907v15.605h-53.309zm67.687 0v-66.535h18.319v66.535h-18.319zm9.154-75.134c-6.415 0-11.07-5.117-11.07-10.916 0-5.745 4.655-10.685 11.07-10.685 6.411 0 11.201 4.94 11.201 10.685 0 5.799-4.79 10.916-11.201 10.916zm43.305 61.017c1.232.429 4.1 1.521 9.163 1.521 10.122 0 16.139-7.48 16.139-21.203 0-12.429-4.222-20.077-14.059-20.077-5.736 0-10.123 3.765-11.243 5.117v34.642zm0-84.303v37.064c3.032-3.041 8.881-6.864 16.289-6.864 16.664 0 28.27 11.472 28.27 34.421 0 22.719-15.318 35.444-35.396 35.444-15.019 0-24.184-3.833-27.333-5.301v-94.764h18.17zm95.708 47.836c-1.122-.65-3.202-1.44-7.029-1.44-8.041 0-12.821 7.09-14.506 10.064v41.96h-18.138v-66.535h18.138v9.003c2.866-4.951 8.377-10.688 16.814-10.688 4.948 0 7.589.958 9.035 1.824l-4.314 15.812zm46.01 21.082h-2.368c-10.578 0-17.996 3.126-17.996 10.942 0 4.872 3.996 6.917 8.043 6.917 6.572 0 10.405-3.825 12.321-5.878v-11.981zm2.02 29.502c-.563-1.688-.955-5.064-1.061-7.087-2.987 3.487-9.288 8.732-18.697 8.732-11.399 0-20.124-6.818-20.124-18.691 0-17.375 17.892-23.673 35.494-23.673h2.368v-3.824c0-5.737-2.368-9.333-10.803-9.333-8.605 0-14.51 4.553-16.983 6.298l-7.875-11.081c3.992-3.486 12.661-9.561 26.938-9.561 18.167 0 26.77 7.032 26.77 24.634v23.9c0 8.999.956 15.465 1.912 19.686h-17.939zm70.962-50.584c-1.123-.65-3.205-1.44-7.029-1.44-8.041 0-12.824 7.09-14.496 10.064v41.96h-18.181v-66.535h18.181v9.003c2.878-4.951 8.365-10.688 16.801-10.688 4.948 0 7.593.958 9.083 1.824l-4.359 15.812zm10.604-15.951h19.349l14.799 43.814h.667l13.554-43.814h18.726l-27.499 73.619c-5.89 15.693-12.825 24.858-30.988 24.858-5.576 0-8.941-.786-10.292-1.182l2.642-14.338c.954.224 2.475.616 6.363.616 9.328 0 12.59-4.441 15.233-11.56l2.474-6.829-25.028-65.184z"
|
|
6898
|
-
}))), _defs || (_defs = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
7296
|
+
}))), _defs$1 || (_defs$1 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
6899
7297
|
id: "logo-nypl-full-white_svg__clip0_1147_1139"
|
|
6900
7298
|
}, /*#__PURE__*/createElement("path", {
|
|
6901
7299
|
fill: "#fff",
|
|
@@ -6903,65 +7301,65 @@ function SvgLogoNyplFullWhite(_ref) {
|
|
|
6903
7301
|
})))));
|
|
6904
7302
|
}
|
|
6905
7303
|
|
|
6906
|
-
var _path$
|
|
7304
|
+
var _path$D, _path2$i, _path3$d;
|
|
6907
7305
|
|
|
6908
|
-
var _excluded
|
|
7306
|
+
var _excluded$15 = ["title", "titleId"];
|
|
6909
7307
|
|
|
6910
|
-
function _extends$
|
|
7308
|
+
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); }
|
|
6911
7309
|
|
|
6912
|
-
function _objectWithoutProperties$
|
|
7310
|
+
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; }
|
|
6913
7311
|
|
|
6914
|
-
function _objectWithoutPropertiesLoose$
|
|
7312
|
+
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; }
|
|
6915
7313
|
|
|
6916
7314
|
function SvgLogoNyplLionBlack(_ref) {
|
|
6917
7315
|
var title = _ref.title,
|
|
6918
7316
|
titleId = _ref.titleId,
|
|
6919
|
-
props = _objectWithoutProperties$
|
|
7317
|
+
props = _objectWithoutProperties$K(_ref, _excluded$15);
|
|
6920
7318
|
|
|
6921
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7319
|
+
return /*#__PURE__*/createElement("svg", _extends$L({
|
|
6922
7320
|
viewBox: "0 0 136 135",
|
|
6923
7321
|
fill: "none",
|
|
6924
7322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6925
7323
|
"aria-labelledby": titleId
|
|
6926
7324
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6927
7325
|
id: titleId
|
|
6928
|
-
}, title) : null, _path$
|
|
7326
|
+
}, title) : null, _path$D || (_path$D = /*#__PURE__*/createElement("path", {
|
|
6929
7327
|
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",
|
|
6930
7328
|
fill: "#000"
|
|
6931
|
-
})), _path2$
|
|
7329
|
+
})), _path2$i || (_path2$i = /*#__PURE__*/createElement("path", {
|
|
6932
7330
|
fillRule: "evenodd",
|
|
6933
7331
|
clipRule: "evenodd",
|
|
6934
7332
|
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",
|
|
6935
7333
|
fill: "#000"
|
|
6936
|
-
})), _path3$
|
|
7334
|
+
})), _path3$d || (_path3$d = /*#__PURE__*/createElement("path", {
|
|
6937
7335
|
d: "M71.456 47.998c1.654.565 3.483.999 4.746 1.737.74.434 1.524 1.563 2.569 1.433 1.045-.13 1.698-2.214 1.916-3.256.305-1.563.13-3.517-.392-4.515-.87-1.65-3.397-2.041-6.053-1.91-1.415.037-2.82.256-4.18.65-1.48.435-3.483 1.433-2.612 3.474.566 1.302 2.569 1.91 4.005 2.388z",
|
|
6938
7336
|
fill: "#000"
|
|
6939
7337
|
})));
|
|
6940
7338
|
}
|
|
6941
7339
|
|
|
6942
|
-
var _path$
|
|
7340
|
+
var _path$E, _mask, _g$5;
|
|
6943
7341
|
|
|
6944
|
-
var _excluded$
|
|
7342
|
+
var _excluded$16 = ["title", "titleId"];
|
|
6945
7343
|
|
|
6946
|
-
function _extends$
|
|
7344
|
+
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); }
|
|
6947
7345
|
|
|
6948
|
-
function _objectWithoutProperties$
|
|
7346
|
+
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; }
|
|
6949
7347
|
|
|
6950
|
-
function _objectWithoutPropertiesLoose$
|
|
7348
|
+
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; }
|
|
6951
7349
|
|
|
6952
7350
|
function SvgLogoNyplLionWhite(_ref) {
|
|
6953
7351
|
var title = _ref.title,
|
|
6954
7352
|
titleId = _ref.titleId,
|
|
6955
|
-
props = _objectWithoutProperties$
|
|
7353
|
+
props = _objectWithoutProperties$L(_ref, _excluded$16);
|
|
6956
7354
|
|
|
6957
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7355
|
+
return /*#__PURE__*/createElement("svg", _extends$M({
|
|
6958
7356
|
viewBox: "0 0 125 126",
|
|
6959
7357
|
fill: "#fff",
|
|
6960
7358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6961
7359
|
"aria-labelledby": titleId
|
|
6962
7360
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
6963
7361
|
id: titleId
|
|
6964
|
-
}, title) : null, _path$
|
|
7362
|
+
}, title) : null, _path$E || (_path$E = /*#__PURE__*/createElement("path", {
|
|
6965
7363
|
fillRule: "evenodd",
|
|
6966
7364
|
clipRule: "evenodd",
|
|
6967
7365
|
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"
|
|
@@ -6976,36 +7374,36 @@ function SvgLogoNyplLionWhite(_ref) {
|
|
|
6976
7374
|
fillRule: "evenodd",
|
|
6977
7375
|
clipRule: "evenodd",
|
|
6978
7376
|
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"
|
|
6979
|
-
}))), _g$
|
|
7377
|
+
}))), _g$5 || (_g$5 = /*#__PURE__*/createElement("g", {
|
|
6980
7378
|
mask: "url(#logo-nypl-lion-white_svg__a)"
|
|
6981
7379
|
}, /*#__PURE__*/createElement("path", {
|
|
6982
7380
|
d: "M0-.994h125v126H0z"
|
|
6983
7381
|
}))));
|
|
6984
7382
|
}
|
|
6985
7383
|
|
|
6986
|
-
var _g$
|
|
7384
|
+
var _g$6, _defs$2;
|
|
6987
7385
|
|
|
6988
|
-
var _excluded$
|
|
7386
|
+
var _excluded$17 = ["title", "titleId"];
|
|
6989
7387
|
|
|
6990
|
-
function _extends$
|
|
7388
|
+
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); }
|
|
6991
7389
|
|
|
6992
|
-
function _objectWithoutProperties$
|
|
7390
|
+
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; }
|
|
6993
7391
|
|
|
6994
|
-
function _objectWithoutPropertiesLoose$
|
|
7392
|
+
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; }
|
|
6995
7393
|
|
|
6996
7394
|
function SvgLogoOpenebooksColor(_ref) {
|
|
6997
7395
|
var title = _ref.title,
|
|
6998
7396
|
titleId = _ref.titleId,
|
|
6999
|
-
props = _objectWithoutProperties$
|
|
7397
|
+
props = _objectWithoutProperties$M(_ref, _excluded$17);
|
|
7000
7398
|
|
|
7001
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7399
|
+
return /*#__PURE__*/createElement("svg", _extends$N({
|
|
7002
7400
|
viewBox: "0 0 152 139",
|
|
7003
7401
|
fill: "none",
|
|
7004
7402
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7005
7403
|
"aria-labelledby": titleId
|
|
7006
7404
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7007
7405
|
id: titleId
|
|
7008
|
-
}, title) : null, _g$
|
|
7406
|
+
}, title) : null, _g$6 || (_g$6 = /*#__PURE__*/createElement("g", {
|
|
7009
7407
|
clipPath: "url(#logo-openebooks-color_svg__clip0_53471_41906)"
|
|
7010
7408
|
}, /*#__PURE__*/createElement("path", {
|
|
7011
7409
|
d: "M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",
|
|
@@ -7016,7 +7414,7 @@ function SvgLogoOpenebooksColor(_ref) {
|
|
|
7016
7414
|
}), /*#__PURE__*/createElement("path", {
|
|
7017
7415
|
d: "M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915z",
|
|
7018
7416
|
fill: "#fff"
|
|
7019
|
-
}))), _defs$
|
|
7417
|
+
}))), _defs$2 || (_defs$2 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
|
|
7020
7418
|
id: "logo-openebooks-color_svg__paint0_linear_53471_41906",
|
|
7021
7419
|
x1: 76.519,
|
|
7022
7420
|
y1: 132.496,
|
|
@@ -7044,29 +7442,29 @@ function SvgLogoOpenebooksColor(_ref) {
|
|
|
7044
7442
|
})))));
|
|
7045
7443
|
}
|
|
7046
7444
|
|
|
7047
|
-
var _g$
|
|
7445
|
+
var _g$7, _defs$3;
|
|
7048
7446
|
|
|
7049
|
-
var _excluded$
|
|
7447
|
+
var _excluded$18 = ["title", "titleId"];
|
|
7050
7448
|
|
|
7051
|
-
function _extends$
|
|
7449
|
+
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); }
|
|
7052
7450
|
|
|
7053
|
-
function _objectWithoutProperties$
|
|
7451
|
+
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; }
|
|
7054
7452
|
|
|
7055
|
-
function _objectWithoutPropertiesLoose$
|
|
7453
|
+
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; }
|
|
7056
7454
|
|
|
7057
7455
|
function SvgLogoOpenebooksNegative(_ref) {
|
|
7058
7456
|
var title = _ref.title,
|
|
7059
7457
|
titleId = _ref.titleId,
|
|
7060
|
-
props = _objectWithoutProperties$
|
|
7458
|
+
props = _objectWithoutProperties$N(_ref, _excluded$18);
|
|
7061
7459
|
|
|
7062
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7460
|
+
return /*#__PURE__*/createElement("svg", _extends$O({
|
|
7063
7461
|
viewBox: "0 0 155 139",
|
|
7064
7462
|
fill: "none",
|
|
7065
7463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7066
7464
|
"aria-labelledby": titleId
|
|
7067
7465
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7068
7466
|
id: titleId
|
|
7069
|
-
}, title) : null, _g$
|
|
7467
|
+
}, title) : null, _g$7 || (_g$7 = /*#__PURE__*/createElement("g", {
|
|
7070
7468
|
clipPath: "url(#logo-openebooks-negative_svg__clip0_54498_42323)"
|
|
7071
7469
|
}, /*#__PURE__*/createElement("path", {
|
|
7072
7470
|
d: "M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",
|
|
@@ -7083,7 +7481,7 @@ function SvgLogoOpenebooksNegative(_ref) {
|
|
|
7083
7481
|
}), /*#__PURE__*/createElement("path", {
|
|
7084
7482
|
d: "M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",
|
|
7085
7483
|
fill: "#0B1F31"
|
|
7086
|
-
}))), _defs$
|
|
7484
|
+
}))), _defs$3 || (_defs$3 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
|
|
7087
7485
|
id: "logo-openebooks-negative_svg__paint0_linear_54498_42323",
|
|
7088
7486
|
x1: 127.8,
|
|
7089
7487
|
y1: 121.19,
|
|
@@ -7128,29 +7526,29 @@ function SvgLogoOpenebooksNegative(_ref) {
|
|
|
7128
7526
|
})))));
|
|
7129
7527
|
}
|
|
7130
7528
|
|
|
7131
|
-
var _g$
|
|
7529
|
+
var _g$8, _defs$4;
|
|
7132
7530
|
|
|
7133
|
-
var _excluded$
|
|
7531
|
+
var _excluded$19 = ["title", "titleId"];
|
|
7134
7532
|
|
|
7135
|
-
function _extends$
|
|
7533
|
+
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); }
|
|
7136
7534
|
|
|
7137
|
-
function _objectWithoutProperties$
|
|
7535
|
+
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; }
|
|
7138
7536
|
|
|
7139
|
-
function _objectWithoutPropertiesLoose$
|
|
7537
|
+
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; }
|
|
7140
7538
|
|
|
7141
7539
|
function SvgLogoOpenebooksWithTextColor(_ref) {
|
|
7142
7540
|
var title = _ref.title,
|
|
7143
7541
|
titleId = _ref.titleId,
|
|
7144
|
-
props = _objectWithoutProperties$
|
|
7542
|
+
props = _objectWithoutProperties$O(_ref, _excluded$19);
|
|
7145
7543
|
|
|
7146
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7544
|
+
return /*#__PURE__*/createElement("svg", _extends$P({
|
|
7147
7545
|
viewBox: "0 0 152 139",
|
|
7148
7546
|
fill: "none",
|
|
7149
7547
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7150
7548
|
"aria-labelledby": titleId
|
|
7151
7549
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7152
7550
|
id: titleId
|
|
7153
|
-
}, title) : null, _g$
|
|
7551
|
+
}, title) : null, _g$8 || (_g$8 = /*#__PURE__*/createElement("g", {
|
|
7154
7552
|
clipPath: "url(#logo-openebooks-with-text-color_svg__clip0_53471_41905)"
|
|
7155
7553
|
}, /*#__PURE__*/createElement("path", {
|
|
7156
7554
|
d: "M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",
|
|
@@ -7161,7 +7559,7 @@ function SvgLogoOpenebooksWithTextColor(_ref) {
|
|
|
7161
7559
|
}), /*#__PURE__*/createElement("path", {
|
|
7162
7560
|
d: "M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915zM130.032 126.627c.01.626-.171 1.24-.519 1.76-.372.531-.89.944-1.49 1.191a5.757 5.757 0 01-2.286.419 9.806 9.806 0 01-1.835-.145 7.126 7.126 0 01-1.545-.524v-2.556c.563.28 1.154.502 1.763.66a6.857 6.857 0 001.68.235 1.69 1.69 0 00.967-.21.679.679 0 00.309-.574.58.58 0 00-.128-.377 1.348 1.348 0 00-.397-.335c-.178-.109-.663-.338-1.455-.681a7.123 7.123 0 01-1.61-.916 2.88 2.88 0 01-.796-1.016 3.339 3.339 0 01-.254-1.36 2.701 2.701 0 011.103-2.288c.734-.548 1.743-.821 3.027-.819a8.723 8.723 0 013.47.762l-.911 2.201c-1.025-.456-1.909-.683-2.654-.681a1.402 1.402 0 00-.839.194.589.589 0 00-.263.487.695.695 0 00.097.319c.057.098.137.18.233.24a13.28 13.28 0 001.816.901c.943.411 1.597.853 1.963 1.328.383.515.579 1.145.554 1.785zm-8.358 3.227h-3.342l-2.164-4.06-.878.507v3.562h-2.981v-10.619h2.981v4.609c.273-.471.576-.925.907-1.357l2.309-3.254h3.229l-3.455 4.756 3.394 5.856zm-18.875-5.324c0 2.053.737 3.079 2.21 3.078.748 0 1.302-.247 1.663-.748s.546-1.276.546-2.33-.183-1.844-.554-2.347c-.372-.502-.912-.762-1.642-.762-1.482.003-2.223 1.039-2.223 3.109zm7.536 0c0 1.787-.452 3.145-1.356 4.075-.904.931-2.227 1.395-3.97 1.394-1.72 0-3.039-.467-3.957-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.453-3.117 1.362-4.046.908-.928 2.234-1.396 3.978-1.401 1.745 0 3.067.462 3.966 1.387.898.925 1.347 2.283 1.347 4.075zm-19.767 0c0 2.053.737 3.079 2.21 3.078.75 0 1.304-.247 1.663-.748s.548-1.276.548-2.33-.185-1.844-.556-2.347c-.372-.502-.912-.758-1.648-.758-1.478 0-2.217 1.035-2.217 3.105zm7.536 0c0 1.787-.45 3.145-1.354 4.075-.902.931-2.224 1.395-3.965 1.394-1.72 0-3.04-.467-3.958-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.454-3.117 1.364-4.046.91-.928 2.236-1.396 3.978-1.401 1.746 0 3.067.462 3.964 1.387.897.925 1.344 2.283 1.341 4.075zm-17.634.878v2.231h1.039c.924 0 1.386-.378 1.388-1.135a.96.96 0 00-.374-.813 1.74 1.74 0 00-1.075-.285l-.978.002zm0-2.095h.89c.346.021.69-.068.982-.256a.871.871 0 00.35-.756c0-.595-.463-.893-1.391-.893h-.84l.009 1.905zm-2.963-4.076h3.823c1.488 0 2.592.216 3.313.646.724.419 1.088 1.091 1.088 1.999a2.471 2.471 0 01-.475 1.523c-.3.414-.743.704-1.243.815v.071a2.277 2.277 0 011.934 2.456 2.683 2.683 0 01-1.123 2.28c-.746.558-1.764.838-3.053.838h-4.26l-.004-10.628zm-5.733 4.176c-.32-.007-.63.106-.87.319a1.464 1.464 0 00-.404.987h2.519a1.39 1.39 0 00-.35-.949 1.16 1.16 0 00-.89-.359l-.005.002zm.174 6.588c-1.415 0-2.514-.363-3.298-1.09-.784-.726-1.173-1.765-1.167-3.115 0-1.389.36-2.454 1.083-3.196.722-.741 1.757-1.114 3.105-1.119 1.278 0 2.265.325 2.96.975.697.641 1.05 1.573 1.05 2.789v1.257h-5.236a1.402 1.402 0 00.516 1.083c.39.28.865.418 1.344.392.475.005.95-.042 1.415-.138a7.152 7.152 0 001.409-.487v2.035a5.177 5.177 0 01-1.424.471c-.579.098-1.165.145-1.753.141l-.004.002zm-7.692-.145h-1.45l-5.988-8.913h-.059c.08 1.048.12 2.007.12 2.877v6.036H55.7v-10.619h1.438l5.975 8.876h.07c-.011-.132-.032-.549-.068-1.257a20.277 20.277 0 01-.036-1.525v-6.094h1.19l-.014 10.619zm-12.067 0h-6.11v-10.619h6.11v1.096H47.36v3.42h4.543v1.089h-4.547v3.916h4.828l.005 1.098zm-15.156-5.238h1.146c1.13 0 1.944-.178 2.45-.532.506-.354.756-.92.756-1.699 0-.702-.237-1.224-.712-1.57-.474-.345-1.213-.515-2.216-.515h-1.424v4.316zm5.669-2.288c0 1.073-.38 1.9-1.138 2.483-.759.582-1.84.87-3.246.863h-1.287v4.178h-1.274v-10.619h2.84c2.74 0 4.11 1.032 4.11 3.095h-.005zm-19.197 2.2c0 1.437.315 2.529.945 3.275.63.746 1.548 1.116 2.756 1.11 1.213 0 2.13-.37 2.75-1.11.62-.74.93-1.832.93-3.275 0-1.429-.31-2.511-.93-3.248-.62-.736-1.53-1.106-2.729-1.11-1.213 0-2.137.373-2.771 1.119-.634.746-.951 1.825-.951 3.239zm8.729 0c0 1.7-.444 3.036-1.333 4.008-.889.973-2.12 1.461-3.695 1.467-1.612 0-2.859-.477-3.739-1.431-.88-.954-1.318-2.305-1.312-4.052 0-1.731.44-3.07 1.318-4.017.88-.947 2.128-1.424 3.748-1.431 1.574 0 2.803.485 3.686 1.454.883.97 1.326 2.304 1.33 4.002h-.003z",
|
|
7163
7561
|
fill: "#fff"
|
|
7164
|
-
}))), _defs$
|
|
7562
|
+
}))), _defs$4 || (_defs$4 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
|
|
7165
7563
|
id: "logo-openebooks-with-text-color_svg__paint0_linear_53471_41905",
|
|
7166
7564
|
x1: 76.519,
|
|
7167
7565
|
y1: 132.496,
|
|
@@ -7189,29 +7587,29 @@ function SvgLogoOpenebooksWithTextColor(_ref) {
|
|
|
7189
7587
|
})))));
|
|
7190
7588
|
}
|
|
7191
7589
|
|
|
7192
|
-
var _g$
|
|
7590
|
+
var _g$9, _defs$5;
|
|
7193
7591
|
|
|
7194
|
-
var _excluded$
|
|
7592
|
+
var _excluded$1a = ["title", "titleId"];
|
|
7195
7593
|
|
|
7196
|
-
function _extends$
|
|
7594
|
+
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); }
|
|
7197
7595
|
|
|
7198
|
-
function _objectWithoutProperties$
|
|
7596
|
+
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; }
|
|
7199
7597
|
|
|
7200
|
-
function _objectWithoutPropertiesLoose$
|
|
7598
|
+
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; }
|
|
7201
7599
|
|
|
7202
7600
|
function SvgLogoOpenebooksWithTextNegative(_ref) {
|
|
7203
7601
|
var title = _ref.title,
|
|
7204
7602
|
titleId = _ref.titleId,
|
|
7205
|
-
props = _objectWithoutProperties$
|
|
7603
|
+
props = _objectWithoutProperties$P(_ref, _excluded$1a);
|
|
7206
7604
|
|
|
7207
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7605
|
+
return /*#__PURE__*/createElement("svg", _extends$Q({
|
|
7208
7606
|
viewBox: "0 0 155 139",
|
|
7209
7607
|
fill: "none",
|
|
7210
7608
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7211
7609
|
"aria-labelledby": titleId
|
|
7212
7610
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7213
7611
|
id: titleId
|
|
7214
|
-
}, title) : null, _g$
|
|
7612
|
+
}, title) : null, _g$9 || (_g$9 = /*#__PURE__*/createElement("g", {
|
|
7215
7613
|
clipPath: "url(#logo-openebooks-with-text-negative_svg__clip0_54498_42322)"
|
|
7216
7614
|
}, /*#__PURE__*/createElement("path", {
|
|
7217
7615
|
d: "M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",
|
|
@@ -7231,7 +7629,7 @@ function SvgLogoOpenebooksWithTextNegative(_ref) {
|
|
|
7231
7629
|
}), /*#__PURE__*/createElement("path", {
|
|
7232
7630
|
d: "M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",
|
|
7233
7631
|
fill: "#0B1F31"
|
|
7234
|
-
}))), _defs$
|
|
7632
|
+
}))), _defs$5 || (_defs$5 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
|
|
7235
7633
|
id: "logo-openebooks-with-text-negative_svg__paint0_linear_54498_42322",
|
|
7236
7634
|
x1: 127.8,
|
|
7237
7635
|
y1: 121.19,
|
|
@@ -7276,89 +7674,89 @@ function SvgLogoOpenebooksWithTextNegative(_ref) {
|
|
|
7276
7674
|
})))));
|
|
7277
7675
|
}
|
|
7278
7676
|
|
|
7279
|
-
var _path$
|
|
7677
|
+
var _path$F;
|
|
7280
7678
|
|
|
7281
|
-
var _excluded$
|
|
7679
|
+
var _excluded$1b = ["title", "titleId"];
|
|
7282
7680
|
|
|
7283
|
-
function _extends$
|
|
7681
|
+
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); }
|
|
7284
7682
|
|
|
7285
|
-
function _objectWithoutProperties$
|
|
7683
|
+
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; }
|
|
7286
7684
|
|
|
7287
|
-
function _objectWithoutPropertiesLoose$
|
|
7685
|
+
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; }
|
|
7288
7686
|
|
|
7289
7687
|
function SvgLogoQplAltBlack(_ref) {
|
|
7290
7688
|
var title = _ref.title,
|
|
7291
7689
|
titleId = _ref.titleId,
|
|
7292
|
-
props = _objectWithoutProperties$
|
|
7690
|
+
props = _objectWithoutProperties$Q(_ref, _excluded$1b);
|
|
7293
7691
|
|
|
7294
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7692
|
+
return /*#__PURE__*/createElement("svg", _extends$R({
|
|
7295
7693
|
viewBox: "0 0 250 134",
|
|
7296
7694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7297
7695
|
"aria-labelledby": titleId
|
|
7298
7696
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7299
7697
|
id: titleId
|
|
7300
|
-
}, title) : null, _path$
|
|
7698
|
+
}, title) : null, _path$F || (_path$F = /*#__PURE__*/createElement("path", {
|
|
7301
7699
|
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"
|
|
7302
7700
|
})));
|
|
7303
7701
|
}
|
|
7304
7702
|
|
|
7305
|
-
var _path$
|
|
7703
|
+
var _path$G;
|
|
7306
7704
|
|
|
7307
|
-
var _excluded$
|
|
7705
|
+
var _excluded$1c = ["title", "titleId"];
|
|
7308
7706
|
|
|
7309
|
-
function _extends$
|
|
7707
|
+
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); }
|
|
7310
7708
|
|
|
7311
|
-
function _objectWithoutProperties$
|
|
7709
|
+
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; }
|
|
7312
7710
|
|
|
7313
|
-
function _objectWithoutPropertiesLoose$
|
|
7711
|
+
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; }
|
|
7314
7712
|
|
|
7315
7713
|
function SvgLogoQplAltWhite(_ref) {
|
|
7316
7714
|
var title = _ref.title,
|
|
7317
7715
|
titleId = _ref.titleId,
|
|
7318
|
-
props = _objectWithoutProperties$
|
|
7716
|
+
props = _objectWithoutProperties$R(_ref, _excluded$1c);
|
|
7319
7717
|
|
|
7320
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7718
|
+
return /*#__PURE__*/createElement("svg", _extends$S({
|
|
7321
7719
|
viewBox: "0 0 250 134",
|
|
7322
7720
|
fill: "#fff",
|
|
7323
7721
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7324
7722
|
"aria-labelledby": titleId
|
|
7325
7723
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7326
7724
|
id: titleId
|
|
7327
|
-
}, title) : null, _path$
|
|
7725
|
+
}, title) : null, _path$G || (_path$G = /*#__PURE__*/createElement("path", {
|
|
7328
7726
|
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"
|
|
7329
7727
|
})));
|
|
7330
7728
|
}
|
|
7331
7729
|
|
|
7332
|
-
var _path$
|
|
7730
|
+
var _path$H, _path2$j, _path3$e, _path4$3, _path5$2;
|
|
7333
7731
|
|
|
7334
|
-
var _excluded$
|
|
7732
|
+
var _excluded$1d = ["title", "titleId"];
|
|
7335
7733
|
|
|
7336
|
-
function _extends$
|
|
7734
|
+
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); }
|
|
7337
7735
|
|
|
7338
|
-
function _objectWithoutProperties$
|
|
7736
|
+
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; }
|
|
7339
7737
|
|
|
7340
|
-
function _objectWithoutPropertiesLoose$
|
|
7738
|
+
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; }
|
|
7341
7739
|
|
|
7342
7740
|
function SvgLogoQplBlack(_ref) {
|
|
7343
7741
|
var title = _ref.title,
|
|
7344
7742
|
titleId = _ref.titleId,
|
|
7345
|
-
props = _objectWithoutProperties$
|
|
7743
|
+
props = _objectWithoutProperties$S(_ref, _excluded$1d);
|
|
7346
7744
|
|
|
7347
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7745
|
+
return /*#__PURE__*/createElement("svg", _extends$T({
|
|
7348
7746
|
viewBox: "0 0 320 43",
|
|
7349
7747
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7350
7748
|
"aria-labelledby": titleId
|
|
7351
7749
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7352
7750
|
id: titleId
|
|
7353
|
-
}, title) : null, _path$
|
|
7751
|
+
}, title) : null, _path$H || (_path$H = /*#__PURE__*/createElement("path", {
|
|
7354
7752
|
fillRule: "evenodd",
|
|
7355
7753
|
clipRule: "evenodd",
|
|
7356
7754
|
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"
|
|
7357
|
-
})), _path2$
|
|
7755
|
+
})), _path2$j || (_path2$j = /*#__PURE__*/createElement("path", {
|
|
7358
7756
|
fillRule: "evenodd",
|
|
7359
7757
|
clipRule: "evenodd",
|
|
7360
7758
|
d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
|
|
7361
|
-
})), _path3$
|
|
7759
|
+
})), _path3$e || (_path3$e = /*#__PURE__*/createElement("path", {
|
|
7362
7760
|
fillRule: "evenodd",
|
|
7363
7761
|
clipRule: "evenodd",
|
|
7364
7762
|
d: "M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"
|
|
@@ -7371,29 +7769,29 @@ function SvgLogoQplBlack(_ref) {
|
|
|
7371
7769
|
})));
|
|
7372
7770
|
}
|
|
7373
7771
|
|
|
7374
|
-
var _g$
|
|
7772
|
+
var _g$a, _defs$6;
|
|
7375
7773
|
|
|
7376
|
-
var _excluded$
|
|
7774
|
+
var _excluded$1e = ["title", "titleId"];
|
|
7377
7775
|
|
|
7378
|
-
function _extends$
|
|
7776
|
+
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); }
|
|
7379
7777
|
|
|
7380
|
-
function _objectWithoutProperties$
|
|
7778
|
+
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; }
|
|
7381
7779
|
|
|
7382
|
-
function _objectWithoutPropertiesLoose$
|
|
7780
|
+
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; }
|
|
7383
7781
|
|
|
7384
7782
|
function SvgLogoQplColor(_ref) {
|
|
7385
7783
|
var title = _ref.title,
|
|
7386
7784
|
titleId = _ref.titleId,
|
|
7387
|
-
props = _objectWithoutProperties$
|
|
7785
|
+
props = _objectWithoutProperties$T(_ref, _excluded$1e);
|
|
7388
7786
|
|
|
7389
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7787
|
+
return /*#__PURE__*/createElement("svg", _extends$U({
|
|
7390
7788
|
viewBox: "0 0 355 48",
|
|
7391
7789
|
fill: "none",
|
|
7392
7790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7393
7791
|
"aria-labelledby": titleId
|
|
7394
7792
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7395
7793
|
id: titleId
|
|
7396
|
-
}, title) : null, _g$
|
|
7794
|
+
}, title) : null, _g$a || (_g$a = /*#__PURE__*/createElement("g", {
|
|
7397
7795
|
clipPath: "url(#logo-qpl-color_svg__clip0)"
|
|
7398
7796
|
}, /*#__PURE__*/createElement("path", {
|
|
7399
7797
|
fillRule: "evenodd",
|
|
@@ -7423,7 +7821,7 @@ function SvgLogoQplColor(_ref) {
|
|
|
7423
7821
|
}), /*#__PURE__*/createElement("path", {
|
|
7424
7822
|
d: "M65.945 32.481a.78.78 0 01.033 1.395l-.856.485c-.312.18-.727.132-1.014-.039l-3.648-2.067c-.998.41-2.115.624-3.34.624-4.587 0-8.236-3.629-8.236-8.19a8.202 8.202 0 018.236-8.237 8.221 8.221 0 018.259 8.236c0 2.144-.916 4.438-2.547 6.016l3.113 1.777zm99.688-7.709a2.962 2.962 0 002.953-2.96c0-1.522-1.326-2.74-2.953-2.74h-3.107v5.7h3.107zm-3.107 7.104a.803.803 0 01-.79.786h-.832a.787.787 0 01-.791-.786v-14.42c0-.429.347-.787.79-.787h4.839c2.896 0 5.28 2.342 5.28 5.185 0 2.901-2.372 5.276-5.257 5.276h-3.239v4.746zm12.624-14.42c0-.425.365-.787.791-.787h.832c.444 0 .791.358.791.786v9.083c0 2.384 1.485 4.05 3.742 4.05 2.29 0 3.785-1.636 3.785-4.006v-9.126c0-.428.348-.786.79-.786h.834c.426 0 .79.362.79.786v9.213c0 3.571-2.585 6.212-6.2 6.212-3.591 0-6.155-2.64-6.155-6.212v-9.213zm23.645 6.051c1.395 0 2.251-.94 2.251-2.348 0-1.405-.815-2.24-2.251-2.24H195.6v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.239v4.7H199.167zm4.972-2.373c0 2.674-2.144 4.578-5.148 4.578h-4.992a.79.79 0 01-.79-.788V17.455c0-.427.347-.785.79-.785h4.796c2.832 0 4.863 1.845 4.863 4.38 0 1.393-.71 2.62-1.767 3.432 1.36.747 2.248 1.954 2.248 3.603zm13.305 2.372c.444 0 .792.358.792.786v.633a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.348-.785.79-.785h.855c.426 0 .79.362.79.786v13h5.931zm4.57-13c0-.424.365-.787.79-.787h.877c.426 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.877a.804.804 0 01-.79-.788V17.455zm15.525-1.004c2.162 0 3.857.685 5.565 2.134.32.32.344.815.021 1.138l-.563.557c-.324.403-.756.378-1.109.028-1.107-.955-2.582-1.543-3.936-1.543-3.19 0-5.734 2.664-5.734 5.9 0 3.217 2.548 5.878 5.734 5.878 1.523 0 2.425-.408 3.948-1.552.322-.255.676-.278 1.01-.052l.634.568c.37.278.327.842.012 1.155-1.514 1.461-3.47 2.218-5.582 2.218-4.594 0-8.28-3.639-8.28-8.193 0-4.562 3.694-8.236 8.28-8.236zm27.593 14.005c.444 0 .792.358.792.786v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.346-.785.79-.785h.855c.425 0 .79.363.79.786v13h5.931v.001zm4.57-13c0-.425.364-.787.79-.787h.875c.427 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.875a.802.802 0 01-.79-.789V17.455v.001zm13.947 6.051c1.396 0 2.252-.94 2.252-2.348 0-1.405-.815-2.24-2.252-2.24h-3.195v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.238v4.7h3.61zm4.973-2.373c0 2.674-2.145 4.578-5.149 4.578h-4.991a.792.792 0 01-.792-.788v-14.42c0-.427.348-.785.792-.785h4.795c2.833 0 4.864 1.845 4.864 4.38 0 1.393-.71 2.62-1.768 3.432 1.36.747 2.249 1.954 2.249 3.603zm11.291-3.574c1.509 0 2.778-1.257 2.778-2.807 0-1.443-1.292-2.698-2.778-2.698h-3.873v5.505h3.873zm-3.915 7.364a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.429.347-.786.79-.786h5.671c2.847 0 5.149 2.224 5.149 5.012 0 1.978-1.21 3.72-3.093 4.622l2.808 5.177c.291.54-.053 1.181-.704 1.181h-1.116a.75.75 0 01-.685-.4l-2.808-5.567h-3.576v5.181zm20.953-8.192a772.62 772.62 0 00-1.342-3.004l-2.708 6.052h5.412a687.64 687.64 0 01-1.362-3.048zm-2.137-6.789a.759.759 0 01.706-.443h.22c.33 0 .57.174.714.46l6.612 14.655c.247.533-.115 1.096-.714 1.096h-.876a.768.768 0 01-.714-.46l-1.52-3.374h-7.287l-1.494 3.36a.774.774 0 01-.722.474h-.875c-.598 0-.96-.562-.714-1.094l6.664-14.674zm18.459 7.616c1.508 0 2.777-1.257 2.777-2.807 0-1.443-1.292-2.698-2.777-2.698h-3.873v5.505h3.873zm-3.918 7.365a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.428.348-.786.79-.786h5.672c2.847 0 5.149 2.224 5.149 5.012 0 1.977-1.211 3.72-3.093 4.622l2.808 5.178c.29.54-.054 1.18-.704 1.18h-1.117a.744.744 0 01-.685-.4l-2.807-5.567h-3.577v5.181zm12.088-14.006a.773.773 0 01.67-1.2h1.028c.267 0 .499.147.654.35l4.12 5.66 4.123-5.665a.824.824 0 01.65-.345h1.03c.642 0 1 .665.653 1.225l-5.271 7.155v6.826a.806.806 0 01-.791.788h-.855a.79.79 0 01-.79-.788V25.07l-5.221-7.2zm-271.826-.365c0-.423.364-.785.79-.785h.832c.445 0 .792.357.792.785v9.084c0 2.384 1.484 4.05 3.742 4.05 2.289 0 3.785-1.636 3.785-4.006v-9.128c0-.428.347-.785.79-.785h.833c.426 0 .79.362.79.785v9.215c0 3.57-2.584 6.21-6.198 6.21-3.593 0-6.156-2.639-6.156-6.21v-9.215zm27.476 13.001c.444 0 .792.358.792.787v.632a.79.79 0 01-.792.787h-8.627a.79.79 0 01-.79-.787v-14.42c0-.428.346-.785.79-.785h8.627c.443 0 .792.357.792.785v.632a.791.791 0 01-.792.788h-6.982v4.57h5.91c.425 0 .79.362.79.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm15.147 0c.444 0 .792.358.792.787v.632a.793.793 0 01-.792.787h-8.628a.79.79 0 01-.79-.787v-14.42c0-.427.347-.785.79-.785h8.628c.444 0 .792.357.792.785v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-6.983v4.57h5.91c.426 0 .791.362.791.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm8.077 1.42a.78.78 0 01-.232.557.8.8 0 01-.558.23h-.767a.8.8 0 01-.79-.788V17.266c0-.427.365-.765.79-.765h.368a.75.75 0 01.585.28l9.139 11.326V17.505c0-.427.347-.786.79-.786h.767c.426 0 .792.363.792.786v14.66c0 .426-.367.765-.792.765h-.213a.752.752 0 01-.585-.28l-9.294-11.54v10.815zm15.855-2.074l.03-.04c.04-.05.076-.094.155-.195.085-.11.123-.158.163-.204.377-.492.834-.66 1.309-.253l.118.104a7 7 0 00.925.685c.785.487 1.602.775 2.412.775 1.51 0 2.56-.899 2.56-2.024 0-1.189-.964-2-3.607-3.098-2.96-1.286-4.08-2.444-4.08-4.85 0-2.245 1.87-4.25 5.04-4.25.97.007 1.929.205 2.822.584.307.128.583.264.825.402.148.083.253.15.266.164.415.208.622.732.276 1.28-.032.048-.06.091-.122.191l-.003.006a8.212 8.212 0 01-.135.211c-.31.482-.751.608-1.265.32-.009-.004-.206-.123-.305-.18a7.769 7.769 0 00-.585-.305c-.585-.272-1.156-.442-1.675-.466a2.67 2.67 0 00-.12-.003c-1.75 0-2.647.935-2.647 2.023 0 1.156.806 1.933 2.721 2.727 3.68 1.49 5.096 2.734 5.096 5.18 0 2.442-2.292 4.294-5.105 4.294a7.273 7.273 0 01-3.344-.825 7.02 7.02 0 01-1.523-1.03l-.046-.04c-.365-.323-.47-.69-.156-1.183zm-79.424.758c3.28 0 5.974-2.668 5.974-5.92 0-3.263-2.704-5.967-5.974-5.967-3.266 0-5.952 2.7-5.952 5.966 0 3.257 2.677 5.92 5.952 5.92v.001z",
|
|
7425
7823
|
fill: "#422980"
|
|
7426
|
-
}))), _defs$
|
|
7824
|
+
}))), _defs$6 || (_defs$6 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
7427
7825
|
id: "logo-qpl-color_svg__clip0"
|
|
7428
7826
|
}, /*#__PURE__*/createElement("path", {
|
|
7429
7827
|
fill: "#fff",
|
|
@@ -7432,37 +7830,37 @@ function SvgLogoQplColor(_ref) {
|
|
|
7432
7830
|
})))));
|
|
7433
7831
|
}
|
|
7434
7832
|
|
|
7435
|
-
var _path$
|
|
7833
|
+
var _path$I, _path2$k, _path3$f, _path4$4, _path5$3;
|
|
7436
7834
|
|
|
7437
|
-
var _excluded$
|
|
7835
|
+
var _excluded$1f = ["title", "titleId"];
|
|
7438
7836
|
|
|
7439
|
-
function _extends$
|
|
7837
|
+
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); }
|
|
7440
7838
|
|
|
7441
|
-
function _objectWithoutProperties$
|
|
7839
|
+
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; }
|
|
7442
7840
|
|
|
7443
|
-
function _objectWithoutPropertiesLoose$
|
|
7841
|
+
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; }
|
|
7444
7842
|
|
|
7445
7843
|
function SvgLogoQplWhite(_ref) {
|
|
7446
7844
|
var title = _ref.title,
|
|
7447
7845
|
titleId = _ref.titleId,
|
|
7448
|
-
props = _objectWithoutProperties$
|
|
7846
|
+
props = _objectWithoutProperties$U(_ref, _excluded$1f);
|
|
7449
7847
|
|
|
7450
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7848
|
+
return /*#__PURE__*/createElement("svg", _extends$V({
|
|
7451
7849
|
viewBox: "0 0 320 43",
|
|
7452
7850
|
fill: "#fff",
|
|
7453
7851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7454
7852
|
"aria-labelledby": titleId
|
|
7455
7853
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7456
7854
|
id: titleId
|
|
7457
|
-
}, title) : null, _path$
|
|
7855
|
+
}, title) : null, _path$I || (_path$I = /*#__PURE__*/createElement("path", {
|
|
7458
7856
|
fillRule: "evenodd",
|
|
7459
7857
|
clipRule: "evenodd",
|
|
7460
7858
|
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"
|
|
7461
|
-
})), _path2$
|
|
7859
|
+
})), _path2$k || (_path2$k = /*#__PURE__*/createElement("path", {
|
|
7462
7860
|
fillRule: "evenodd",
|
|
7463
7861
|
clipRule: "evenodd",
|
|
7464
7862
|
d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
|
|
7465
|
-
})), _path3$
|
|
7863
|
+
})), _path3$f || (_path3$f = /*#__PURE__*/createElement("path", {
|
|
7466
7864
|
fillRule: "evenodd",
|
|
7467
7865
|
clipRule: "evenodd",
|
|
7468
7866
|
d: "M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"
|
|
@@ -7475,35 +7873,35 @@ function SvgLogoQplWhite(_ref) {
|
|
|
7475
7873
|
})));
|
|
7476
7874
|
}
|
|
7477
7875
|
|
|
7478
|
-
var _path$
|
|
7876
|
+
var _path$J, _path2$l, _path3$g, _path4$5, _path5$4;
|
|
7479
7877
|
|
|
7480
|
-
var _excluded$
|
|
7878
|
+
var _excluded$1g = ["title", "titleId"];
|
|
7481
7879
|
|
|
7482
|
-
function _extends$
|
|
7880
|
+
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); }
|
|
7483
7881
|
|
|
7484
|
-
function _objectWithoutProperties$
|
|
7882
|
+
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; }
|
|
7485
7883
|
|
|
7486
|
-
function _objectWithoutPropertiesLoose$
|
|
7884
|
+
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; }
|
|
7487
7885
|
|
|
7488
7886
|
function SvgLogoReservoirIconColor(_ref) {
|
|
7489
7887
|
var title = _ref.title,
|
|
7490
7888
|
titleId = _ref.titleId,
|
|
7491
|
-
props = _objectWithoutProperties$
|
|
7889
|
+
props = _objectWithoutProperties$V(_ref, _excluded$1g);
|
|
7492
7890
|
|
|
7493
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7891
|
+
return /*#__PURE__*/createElement("svg", _extends$W({
|
|
7494
7892
|
viewBox: "0 0 105 129",
|
|
7495
7893
|
fill: "none",
|
|
7496
7894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7497
7895
|
"aria-labelledby": titleId
|
|
7498
7896
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7499
7897
|
id: titleId
|
|
7500
|
-
}, title) : null, _path$
|
|
7898
|
+
}, title) : null, _path$J || (_path$J = /*#__PURE__*/createElement("path", {
|
|
7501
7899
|
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",
|
|
7502
7900
|
fill: "#0576D3"
|
|
7503
|
-
})), _path2$
|
|
7901
|
+
})), _path2$l || (_path2$l = /*#__PURE__*/createElement("path", {
|
|
7504
7902
|
d: "M49.146 81.355V61.546L57.736 68l12.79 13.355h-21.38z",
|
|
7505
7903
|
fill: "#fff"
|
|
7506
|
-
})), _path3$
|
|
7904
|
+
})), _path3$g || (_path3$g = /*#__PURE__*/createElement("path", {
|
|
7507
7905
|
d: "M57.132 61.667H38.41l34.303 66.916h32.13l-27.66-51.28s-9.663-15.636-20.05-15.636z",
|
|
7508
7906
|
fill: "#004B98"
|
|
7509
7907
|
})), _path4$5 || (_path4$5 = /*#__PURE__*/createElement("path", {
|
|
@@ -7515,29 +7913,29 @@ function SvgLogoReservoirIconColor(_ref) {
|
|
|
7515
7913
|
})));
|
|
7516
7914
|
}
|
|
7517
7915
|
|
|
7518
|
-
var _g$
|
|
7916
|
+
var _g$b;
|
|
7519
7917
|
|
|
7520
|
-
var _excluded$
|
|
7918
|
+
var _excluded$1h = ["title", "titleId"];
|
|
7521
7919
|
|
|
7522
|
-
function _extends$
|
|
7920
|
+
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); }
|
|
7523
7921
|
|
|
7524
|
-
function _objectWithoutProperties$
|
|
7922
|
+
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; }
|
|
7525
7923
|
|
|
7526
|
-
function _objectWithoutPropertiesLoose$
|
|
7924
|
+
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; }
|
|
7527
7925
|
|
|
7528
7926
|
function SvgLogoReservoirVerticalColor(_ref) {
|
|
7529
7927
|
var title = _ref.title,
|
|
7530
7928
|
titleId = _ref.titleId,
|
|
7531
|
-
props = _objectWithoutProperties$
|
|
7929
|
+
props = _objectWithoutProperties$W(_ref, _excluded$1h);
|
|
7532
7930
|
|
|
7533
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7931
|
+
return /*#__PURE__*/createElement("svg", _extends$X({
|
|
7534
7932
|
viewBox: "0 0 234 261",
|
|
7535
7933
|
fill: "none",
|
|
7536
7934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7537
7935
|
"aria-labelledby": titleId
|
|
7538
7936
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7539
7937
|
id: titleId
|
|
7540
|
-
}, title) : null, _g$
|
|
7938
|
+
}, title) : null, _g$b || (_g$b = /*#__PURE__*/createElement("g", {
|
|
7541
7939
|
clipPath: "url(#logo-reservoir-vertical-color_svg__clip0_362_388)"
|
|
7542
7940
|
}, /*#__PURE__*/createElement("path", {
|
|
7543
7941
|
d: "M3.63 181.54H17.3a14.33 14.33 0 016.56 1.4 10.237 10.237 0 014.3 3.93 11.481 11.481 0 011.52 6v.06a11.16 11.16 0 01-2.22 7 10.896 10.896 0 01-6.08 3.92l9.4 16.46h-4.27l-8.92-15.9c-.13.011-.26.011-.39 0H7.28v15.87H3.63v-38.74zM17 201.17a9.403 9.403 0 006.57-2.17 7.75 7.75 0 002.35-6 7.624 7.624 0 00-2.42-6 9.677 9.677 0 00-6.66-2.14H7.28v16.35l9.72-.04zM41.15 219a11.557 11.557 0 01-4.39-5 17.6 17.6 0 01-1.54-7.64 17.739 17.739 0 011.54-7.65 11.911 11.911 0 014.34-5.08 11.786 11.786 0 016.52-1.8 11.809 11.809 0 016.46 1.73 11.392 11.392 0 014.22 4.88 16.998 16.998 0 011.49 7.33v1.4H37v-2.82h21.07l-1.8 2.55v-1.35a13.449 13.449 0 00-1.11-5.78 8.22 8.22 0 00-3.06-3.56 8.43 8.43 0 00-12.17 3.64 13.048 13.048 0 00-1.14 5.7v1.35a13.422 13.422 0 001.14 5.8 8.37 8.37 0 003.21 3.65 9.162 9.162 0 004.86 1.28 9.927 9.927 0 003.65-.63 7.162 7.162 0 002.69-1.78 6.86 6.86 0 001.53-2.69l.08-.24h3.49v.27a9.678 9.678 0 01-1.44 3.29c-.66 1.02-1.5 1.911-2.48 2.63a11.782 11.782 0 01-3.44 1.72c-1.358.41-2.771.612-4.19.6a12.665 12.665 0 01-6.74-1.8zM70.65 219.74a9.361 9.361 0 01-3.75-2.93 8.558 8.558 0 01-1.66-4.33v-.25h3.52v.25a6.002 6.002 0 002.34 3.88 8.222 8.222 0 005 1.43 10.21 10.21 0 003.69-.59 5.24 5.24 0 002.39-1.7c.56-.739.86-1.643.85-2.57A3.812 3.812 0 0082 210a8.8 8.8 0 00-4-1.75l-4.22-1a12.702 12.702 0 01-5.86-2.76 6.125 6.125 0 01-1.92-4.66 6.899 6.899 0 011.27-4.12 8.552 8.552 0 013.52-2.81 12.281 12.281 0 015.14-1 11.883 11.883 0 015.2 1.06 8.902 8.902 0 013.52 2.93 8.593 8.593 0 011.49 4.28v.3H82.8v-.19a5.802 5.802 0 00-2.11-3.91 7.231 7.231 0 00-4.69-1.51 8.543 8.543 0 00-3.33.6 5.081 5.081 0 00-2.2 1.7 4.18 4.18 0 00-.78 2.51 3.567 3.567 0 001.21 2.77 9.203 9.203 0 004 1.77l4.19 1c2.8.667 4.783 1.583 5.95 2.75a6.33 6.33 0 011.76 4.68 6.859 6.859 0 01-1.37 4.22 9.117 9.117 0 01-3.75 2.86 13.45 13.45 0 01-5.43 1 13.224 13.224 0 01-5.6-.98zM99.15 219a11.557 11.557 0 01-4.39-5 17.599 17.599 0 01-1.55-7.64 17.74 17.74 0 011.55-7.65 12.282 12.282 0 0117.32-5.15 11.367 11.367 0 014.21 4.88 16.841 16.841 0 011.49 7.33v1.4H95v-2.82h21.09l-1.8 2.55v-1.35a13.31 13.31 0 00-1.12-5.78 8.094 8.094 0 00-3.06-3.56 8.42 8.42 0 00-6.909-.95 8.408 8.408 0 00-5.251 4.59 12.91 12.91 0 00-1.15 5.7v1.35a13.269 13.269 0 001.15 5.8 8.41 8.41 0 003.2 3.65 9.169 9.169 0 004.87 1.26 10.014 10.014 0 003.65-.63 7.124 7.124 0 002.68-1.78 6.62 6.62 0 001.53-2.69l.08-.24h3.5l-.06.27a9.882 9.882 0 01-1.35 3.29 10.197 10.197 0 01-2.49 2.63 11.685 11.685 0 01-3.44 1.72 13.99 13.99 0 01-4.19.6 12.614 12.614 0 01-6.78-1.78zM125.67 192.36h3.55v5h.08a7.999 7.999 0 012.54-4 6.54 6.54 0 014.33-1.48 8.024 8.024 0 012.21.32v3.47a4.558 4.558 0 00-1-.28 9.786 9.786 0 00-1.64-.12 5.997 5.997 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.55l-.05-27.96zM143.52 192.36h3.73l8.49 24.22h.1l8.52-24.22H168l-10.37 27.93h-3.76l-10.35-27.93zM177.41 219a11.85 11.85 0 01-4.47-5 17.174 17.174 0 01-1.6-7.68v-.06a16.99 16.99 0 011.6-7.66 11.775 11.775 0 014.47-5 13.457 13.457 0 0113.31 0 11.994 11.994 0 014.47 5 17.067 17.067 0 011.61 7.68v.06a17.139 17.139 0 01-1.61 7.69 12.099 12.099 0 01-4.46 5 12.366 12.366 0 01-6.66 1.77 12.74 12.74 0 01-6.66-1.8zm11.47-2.73a8.821 8.821 0 003.17-3.89 14.997 14.997 0 001.13-6.07v-.06a14.877 14.877 0 00-1.13-6.07 8.728 8.728 0 00-3.19-3.85A8.63 8.63 0 00184 195a8.497 8.497 0 00-4.75 1.34 8.892 8.892 0 00-3.18 3.87 14.599 14.599 0 00-1.14 6v.06a14.813 14.813 0 001.14 6.07 8.837 8.837 0 003.18 3.89 9.254 9.254 0 009.59 0l.04.04zM204 186.63a2.288 2.288 0 01-.68-1.68 2.206 2.206 0 01.68-1.65 2.354 2.354 0 012.566-.512c.286.119.546.293.764.512a2.217 2.217 0 01.67 1.7 2.354 2.354 0 01-1.446 2.159 2.36 2.36 0 01-2.554-.479v-.05zm-.12 5.73h3.54v27.93h-3.54v-27.93zM215.8 192.36h3.55v5h.08a8.007 8.007 0 012.53-4 6.579 6.579 0 014.34-1.48c.432-.002.864.035 1.29.11.308.05.612.12.91.21v3.47a4.25 4.25 0 00-1-.28 10.002 10.002 0 00-1.64-.12 5.927 5.927 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.59v-27.96zM3.28 235.89H5.2l8.24 11.83-2.2-1.95h.9v-9.88h2.06v13.39h-1.92l-8.23-11.85 2.2 1.94h-.9v9.91H3.28v-13.39zM22 243.79l-4.71-7.9h2.31l3.42 5.9h.06l3.41-5.9h2.32l-4.72 7.9v5.49H22v-5.49zM31.86 235.89h2.08v13.39h-2.08v-13.39zm1 7.07h3.43a2.9 2.9 0 002.09-.7 2.513 2.513 0 00.75-1.94 2.541 2.541 0 00-.75-2 3.002 3.002 0 00-2.09-.7H32.9v-1.75h4a4.815 4.815 0 012.32.55c.64.376 1.163.923 1.51 1.58a4.54 4.54 0 01.57 2.3 4.54 4.54 0 01-.57 2.3 4.004 4.004 0 01-1.56 1.55 4.71 4.71 0 01-2.32.55h-4l.01-1.74zM44.71 235.89h2.08v11.59H53v1.8h-8.29v-13.39zM64.88 235.89h4.72a7.002 7.002 0 013.41.78 5.292 5.292 0 012.17 2.27 7.91 7.91 0 01.76 3.6 7.901 7.901 0 01-.76 3.62 5.257 5.257 0 01-2.18 2.33 6.999 6.999 0 01-3.42.79h-4.7v-13.39zm4.52 11.59c.84.026 1.671-.17 2.41-.57a3.608 3.608 0 001.49-1.66 6.298 6.298 0 00.51-2.67 6.28 6.28 0 00-.51-2.66 3.761 3.761 0 00-1.5-1.65 4.786 4.786 0 00-2.4-.56H67v9.79l2.4-.02zM79.52 235.89H88v1.8h-6.4v3.9h6.07v1.74H81.6v4.15H88v1.8h-8.5l.02-13.39zM93.69 249.05a4.238 4.238 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.054.4.237.772.52 1.06.306.315.683.552 1.1.69a4.79 4.79 0 001.58.24 4.24 4.24 0 001.55-.25 2.31 2.31 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.489 4.489 0 00-1.91-.77l-1.46-.3a6.003 6.003 0 01-2.93-1.34 3.202 3.202 0 01-1-2.41c-.01-.717.21-1.418.63-2a3.996 3.996 0 011.71-1.35 6.06 6.06 0 012.52-.49 6.14 6.14 0 012.46.47c.666.285 1.245.74 1.68 1.32.425.583.668 1.279.7 2v.15h-2v-.12a2 2 0 00-.46-1.07 2.42 2.42 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.126 2.126 0 00-.94.69 1.592 1.592 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.21 6.21 0 013 1.33 3.186 3.186 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.901 3.901 0 01-1.67 1.35 6.837 6.837 0 01-2.73.49 7.083 7.083 0 01-2.63-.44zM105.26 235.89h2.08v13.39h-2.08v-13.39zM113.85 248.65a5.64 5.64 0 01-2.16-2.41 8.373 8.373 0 01-.77-3.72 7.998 7.998 0 01.76-3.64 5.644 5.644 0 012.16-2.37 6.421 6.421 0 013.31-.83 6.26 6.26 0 012.72.55 5.11 5.11 0 011.91 1.51 5.518 5.518 0 011 2.17v.16h-2.08v-.11a3.676 3.676 0 00-1.31-1.8 3.742 3.742 0 00-2.2-.64 4 4 0 00-2.2.6 3.697 3.697 0 00-1.41 1.71 6.644 6.644 0 00-.49 2.69 6.809 6.809 0 00.5 2.76A4.005 4.005 0 00115 247c.656.418 1.422.63 2.2.61a4.172 4.172 0 001.92-.42 3.241 3.241 0 001.3-1.19 3.479 3.479 0 00.48-1.78V244h-3.51v-1.7h5.57v1.37a6.56 6.56 0 01-.69 3.11 4.686 4.686 0 01-2 2 6.498 6.498 0 01-3.11.69 6.247 6.247 0 01-3.31-.82zM126.56 235.89h1.92l8.24 11.83-2.2-1.95h.9v-9.88h2.07v13.39h-1.92l-8.24-11.85 2.2 1.94h-.9v9.91h-2.07v-13.39zM152 249.05a4.24 4.24 0 01-1.79-1.31 3.569 3.569 0 01-.74-2v-.14h2v.12c.055.398.233.769.51 1.06.311.313.691.55 1.11.69.51.168 1.044.249 1.58.24a4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.486 4.486 0 00-1.91-.77l-1.46-.3a6 6 0 01-2.93-1.34 3.208 3.208 0 01-1-2.41 3.417 3.417 0 01.64-2 3.995 3.995 0 011.71-1.35 6.673 6.673 0 015 0 4.1 4.1 0 011.69 1.32c.425.583.668 1.279.7 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.125 2.125 0 00-.94.69 1.59 1.59 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.212 6.212 0 013 1.33 3.215 3.215 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.895 3.895 0 01-1.76 1.38 6.855 6.855 0 01-2.73.49 7.076 7.076 0 01-2.58-.49zM166.38 243.79l-4.72-7.9H164l3.43 5.9 3.42-5.9h2.32l-4.73 7.9v5.49h-2.08l.02-5.49zM177.85 249.05a4.24 4.24 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.059.399.241.769.52 1.06.308.317.689.554 1.11.69a4.73 4.73 0 001.57.24 4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71c.241-.311.368-.696.36-1.09a1.583 1.583 0 00-.58-1.28 4.607 4.607 0 00-1.92-.77l-1.46-.3a6.057 6.057 0 01-2.93-1.34 3.206 3.206 0 01-1-2.41 3.343 3.343 0 01.63-2 3.995 3.995 0 011.71-1.35 6.702 6.702 0 015 0 4.238 4.238 0 011.69 1.32 3.74 3.74 0 01.69 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.18 2.18 0 00-.94.69 1.65 1.65 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.163 6.163 0 013 1.33 3.193 3.193 0 01.94 2.44 3.58 3.58 0 01-.62 2.12 3.853 3.853 0 01-1.76 1.38 6.838 6.838 0 01-2.73.49 7.059 7.059 0 01-2.56-.49zM192.36 237.69h-4.1v-1.8h10.27v1.8h-4.09v11.59h-2.08v-11.59zM201.82 235.89h8.5v1.8h-6.42v3.9h6.1v1.74h-6.1v4.15h6.42v1.8h-8.5v-13.39zM214.06 235.89h2.4l4.33 10.68h.06l4.33-10.68h2.41v13.39h-1.9v-9.87h-1l2.17-3.15-5.31 13h-1.54l-5.31-13 2.17 3.15H216v9.87h-1.9l-.04-13.39z",
|
|
@@ -7554,32 +7952,32 @@ function SvgLogoReservoirVerticalColor(_ref) {
|
|
|
7554
7952
|
}))));
|
|
7555
7953
|
}
|
|
7556
7954
|
|
|
7557
|
-
var _path$
|
|
7955
|
+
var _path$K, _path2$m, _path3$h, _path4$6, _path5$5;
|
|
7558
7956
|
|
|
7559
|
-
var _excluded$
|
|
7957
|
+
var _excluded$1i = ["title", "titleId"];
|
|
7560
7958
|
|
|
7561
|
-
function _extends$
|
|
7959
|
+
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); }
|
|
7562
7960
|
|
|
7563
|
-
function _objectWithoutProperties$
|
|
7961
|
+
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; }
|
|
7564
7962
|
|
|
7565
|
-
function _objectWithoutPropertiesLoose$
|
|
7963
|
+
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; }
|
|
7566
7964
|
|
|
7567
7965
|
function SvgLogoSchomburgBlack(_ref) {
|
|
7568
7966
|
var title = _ref.title,
|
|
7569
7967
|
titleId = _ref.titleId,
|
|
7570
|
-
props = _objectWithoutProperties$
|
|
7968
|
+
props = _objectWithoutProperties$X(_ref, _excluded$1i);
|
|
7571
7969
|
|
|
7572
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
7970
|
+
return /*#__PURE__*/createElement("svg", _extends$Y({
|
|
7573
7971
|
viewBox: "0 0 185 79",
|
|
7574
7972
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7575
7973
|
"aria-labelledby": titleId
|
|
7576
7974
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7577
7975
|
id: titleId
|
|
7578
|
-
}, title) : null, _path$
|
|
7976
|
+
}, title) : null, _path$K || (_path$K = /*#__PURE__*/createElement("path", {
|
|
7579
7977
|
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"
|
|
7580
|
-
})), _path2$
|
|
7978
|
+
})), _path2$m || (_path2$m = /*#__PURE__*/createElement("path", {
|
|
7581
7979
|
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"
|
|
7582
|
-
})), _path3$
|
|
7980
|
+
})), _path3$h || (_path3$h = /*#__PURE__*/createElement("path", {
|
|
7583
7981
|
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"
|
|
7584
7982
|
})), _path4$6 || (_path4$6 = /*#__PURE__*/createElement("path", {
|
|
7585
7983
|
d: "M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"
|
|
@@ -7588,32 +7986,32 @@ function SvgLogoSchomburgBlack(_ref) {
|
|
|
7588
7986
|
})));
|
|
7589
7987
|
}
|
|
7590
7988
|
|
|
7591
|
-
var _path$
|
|
7989
|
+
var _path$L, _path2$n, _path3$i, _path4$7, _path5$6;
|
|
7592
7990
|
|
|
7593
|
-
var _excluded$
|
|
7991
|
+
var _excluded$1j = ["title", "titleId"];
|
|
7594
7992
|
|
|
7595
|
-
function _extends$
|
|
7993
|
+
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); }
|
|
7596
7994
|
|
|
7597
|
-
function _objectWithoutProperties$
|
|
7995
|
+
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; }
|
|
7598
7996
|
|
|
7599
|
-
function _objectWithoutPropertiesLoose$
|
|
7997
|
+
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; }
|
|
7600
7998
|
|
|
7601
7999
|
function SvgLogoSchomburgCircleBlack(_ref) {
|
|
7602
8000
|
var title = _ref.title,
|
|
7603
8001
|
titleId = _ref.titleId,
|
|
7604
|
-
props = _objectWithoutProperties$
|
|
8002
|
+
props = _objectWithoutProperties$Y(_ref, _excluded$1j);
|
|
7605
8003
|
|
|
7606
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8004
|
+
return /*#__PURE__*/createElement("svg", _extends$Z({
|
|
7607
8005
|
viewBox: "0 0 67 67",
|
|
7608
8006
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7609
8007
|
"aria-labelledby": titleId
|
|
7610
8008
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7611
8009
|
id: titleId
|
|
7612
|
-
}, title) : null, _path$
|
|
8010
|
+
}, title) : null, _path$L || (_path$L = /*#__PURE__*/createElement("path", {
|
|
7613
8011
|
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"
|
|
7614
|
-
})), _path2$
|
|
8012
|
+
})), _path2$n || (_path2$n = /*#__PURE__*/createElement("path", {
|
|
7615
8013
|
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"
|
|
7616
|
-
})), _path3$
|
|
8014
|
+
})), _path3$i || (_path3$i = /*#__PURE__*/createElement("path", {
|
|
7617
8015
|
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"
|
|
7618
8016
|
})), _path4$7 || (_path4$7 = /*#__PURE__*/createElement("path", {
|
|
7619
8017
|
d: "M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"
|
|
@@ -7622,35 +8020,35 @@ function SvgLogoSchomburgCircleBlack(_ref) {
|
|
|
7622
8020
|
})));
|
|
7623
8021
|
}
|
|
7624
8022
|
|
|
7625
|
-
var _path$
|
|
8023
|
+
var _path$M, _path2$o, _path3$j, _path4$8, _path5$7;
|
|
7626
8024
|
|
|
7627
|
-
var _excluded$
|
|
8025
|
+
var _excluded$1k = ["title", "titleId"];
|
|
7628
8026
|
|
|
7629
|
-
function _extends$
|
|
8027
|
+
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); }
|
|
7630
8028
|
|
|
7631
|
-
function _objectWithoutProperties$
|
|
8029
|
+
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; }
|
|
7632
8030
|
|
|
7633
|
-
function _objectWithoutPropertiesLoose$
|
|
8031
|
+
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; }
|
|
7634
8032
|
|
|
7635
8033
|
function SvgLogoSchomburgCircleColor(_ref) {
|
|
7636
8034
|
var title = _ref.title,
|
|
7637
8035
|
titleId = _ref.titleId,
|
|
7638
|
-
props = _objectWithoutProperties$
|
|
8036
|
+
props = _objectWithoutProperties$Z(_ref, _excluded$1k);
|
|
7639
8037
|
|
|
7640
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8038
|
+
return /*#__PURE__*/createElement("svg", _extends$_({
|
|
7641
8039
|
viewBox: "0 0 67 67",
|
|
7642
8040
|
fill: "none",
|
|
7643
8041
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7644
8042
|
"aria-labelledby": titleId
|
|
7645
8043
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7646
8044
|
id: titleId
|
|
7647
|
-
}, title) : null, _path$
|
|
8045
|
+
}, title) : null, _path$M || (_path$M = /*#__PURE__*/createElement("path", {
|
|
7648
8046
|
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",
|
|
7649
8047
|
fill: "#C54B38"
|
|
7650
|
-
})), _path2$
|
|
8048
|
+
})), _path2$o || (_path2$o = /*#__PURE__*/createElement("path", {
|
|
7651
8049
|
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",
|
|
7652
8050
|
fill: "#C54B38"
|
|
7653
|
-
})), _path3$
|
|
8051
|
+
})), _path3$j || (_path3$j = /*#__PURE__*/createElement("path", {
|
|
7654
8052
|
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",
|
|
7655
8053
|
fill: "#C54B38"
|
|
7656
8054
|
})), _path4$8 || (_path4$8 = /*#__PURE__*/createElement("path", {
|
|
@@ -7662,33 +8060,33 @@ function SvgLogoSchomburgCircleColor(_ref) {
|
|
|
7662
8060
|
})));
|
|
7663
8061
|
}
|
|
7664
8062
|
|
|
7665
|
-
var _path$
|
|
8063
|
+
var _path$N, _path2$p, _path3$k, _path4$9, _path5$8;
|
|
7666
8064
|
|
|
7667
|
-
var _excluded$
|
|
8065
|
+
var _excluded$1l = ["title", "titleId"];
|
|
7668
8066
|
|
|
7669
|
-
function _extends
|
|
8067
|
+
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); }
|
|
7670
8068
|
|
|
7671
|
-
function _objectWithoutProperties$
|
|
8069
|
+
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; }
|
|
7672
8070
|
|
|
7673
|
-
function _objectWithoutPropertiesLoose
|
|
8071
|
+
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; }
|
|
7674
8072
|
|
|
7675
8073
|
function SvgLogoSchomburgCircleWhite(_ref) {
|
|
7676
8074
|
var title = _ref.title,
|
|
7677
8075
|
titleId = _ref.titleId,
|
|
7678
|
-
props = _objectWithoutProperties$
|
|
8076
|
+
props = _objectWithoutProperties$_(_ref, _excluded$1l);
|
|
7679
8077
|
|
|
7680
|
-
return /*#__PURE__*/createElement("svg", _extends
|
|
8078
|
+
return /*#__PURE__*/createElement("svg", _extends$$({
|
|
7681
8079
|
viewBox: "0 0 67 67",
|
|
7682
8080
|
fill: "#fff",
|
|
7683
8081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7684
8082
|
"aria-labelledby": titleId
|
|
7685
8083
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7686
8084
|
id: titleId
|
|
7687
|
-
}, title) : null, _path$
|
|
8085
|
+
}, title) : null, _path$N || (_path$N = /*#__PURE__*/createElement("path", {
|
|
7688
8086
|
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"
|
|
7689
|
-
})), _path2$
|
|
8087
|
+
})), _path2$p || (_path2$p = /*#__PURE__*/createElement("path", {
|
|
7690
8088
|
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"
|
|
7691
|
-
})), _path3$
|
|
8089
|
+
})), _path3$k || (_path3$k = /*#__PURE__*/createElement("path", {
|
|
7692
8090
|
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"
|
|
7693
8091
|
})), _path4$9 || (_path4$9 = /*#__PURE__*/createElement("path", {
|
|
7694
8092
|
d: "M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"
|
|
@@ -7697,35 +8095,35 @@ function SvgLogoSchomburgCircleWhite(_ref) {
|
|
|
7697
8095
|
})));
|
|
7698
8096
|
}
|
|
7699
8097
|
|
|
7700
|
-
var _path$
|
|
8098
|
+
var _path$O, _path2$q, _path3$l, _path4$a, _path5$9, _path6$2, _path7$2;
|
|
7701
8099
|
|
|
7702
|
-
var _excluded$
|
|
8100
|
+
var _excluded$1m = ["title", "titleId"];
|
|
7703
8101
|
|
|
7704
|
-
function _extends$
|
|
8102
|
+
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); }
|
|
7705
8103
|
|
|
7706
|
-
function _objectWithoutProperties
|
|
8104
|
+
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; }
|
|
7707
8105
|
|
|
7708
|
-
function _objectWithoutPropertiesLoose$
|
|
8106
|
+
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; }
|
|
7709
8107
|
|
|
7710
8108
|
function SvgLogoSchomburgColor(_ref) {
|
|
7711
8109
|
var title = _ref.title,
|
|
7712
8110
|
titleId = _ref.titleId,
|
|
7713
|
-
props = _objectWithoutProperties
|
|
8111
|
+
props = _objectWithoutProperties$$(_ref, _excluded$1m);
|
|
7714
8112
|
|
|
7715
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8113
|
+
return /*#__PURE__*/createElement("svg", _extends$10({
|
|
7716
8114
|
viewBox: "0 0 185 79",
|
|
7717
8115
|
fill: "none",
|
|
7718
8116
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7719
8117
|
"aria-labelledby": titleId
|
|
7720
8118
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7721
8119
|
id: titleId
|
|
7722
|
-
}, title) : null, _path$
|
|
8120
|
+
}, title) : null, _path$O || (_path$O = /*#__PURE__*/createElement("path", {
|
|
7723
8121
|
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",
|
|
7724
8122
|
fill: "#010101"
|
|
7725
|
-
})), _path2$
|
|
8123
|
+
})), _path2$q || (_path2$q = /*#__PURE__*/createElement("path", {
|
|
7726
8124
|
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",
|
|
7727
8125
|
fill: "#C54B38"
|
|
7728
|
-
})), _path3$
|
|
8126
|
+
})), _path3$l || (_path3$l = /*#__PURE__*/createElement("path", {
|
|
7729
8127
|
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",
|
|
7730
8128
|
fill: "#C54B38"
|
|
7731
8129
|
})), _path4$a || (_path4$a = /*#__PURE__*/createElement("path", {
|
|
@@ -7743,33 +8141,33 @@ function SvgLogoSchomburgColor(_ref) {
|
|
|
7743
8141
|
})));
|
|
7744
8142
|
}
|
|
7745
8143
|
|
|
7746
|
-
var _path$
|
|
8144
|
+
var _path$P, _path2$r, _path3$m, _path4$b, _path5$a;
|
|
7747
8145
|
|
|
7748
|
-
var _excluded$
|
|
8146
|
+
var _excluded$1n = ["title", "titleId"];
|
|
7749
8147
|
|
|
7750
|
-
function _extends$
|
|
8148
|
+
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); }
|
|
7751
8149
|
|
|
7752
|
-
function _objectWithoutProperties$
|
|
8150
|
+
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; }
|
|
7753
8151
|
|
|
7754
|
-
function _objectWithoutPropertiesLoose$
|
|
8152
|
+
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; }
|
|
7755
8153
|
|
|
7756
8154
|
function SvgLogoSchomburgWhite(_ref) {
|
|
7757
8155
|
var title = _ref.title,
|
|
7758
8156
|
titleId = _ref.titleId,
|
|
7759
|
-
props = _objectWithoutProperties$
|
|
8157
|
+
props = _objectWithoutProperties$10(_ref, _excluded$1n);
|
|
7760
8158
|
|
|
7761
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8159
|
+
return /*#__PURE__*/createElement("svg", _extends$11({
|
|
7762
8160
|
viewBox: "0 0 185 79",
|
|
7763
8161
|
fill: "#fff",
|
|
7764
8162
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7765
8163
|
"aria-labelledby": titleId
|
|
7766
8164
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7767
8165
|
id: titleId
|
|
7768
|
-
}, title) : null, _path$
|
|
8166
|
+
}, title) : null, _path$P || (_path$P = /*#__PURE__*/createElement("path", {
|
|
7769
8167
|
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"
|
|
7770
|
-
})), _path2$
|
|
8168
|
+
})), _path2$r || (_path2$r = /*#__PURE__*/createElement("path", {
|
|
7771
8169
|
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"
|
|
7772
|
-
})), _path3$
|
|
8170
|
+
})), _path3$m || (_path3$m = /*#__PURE__*/createElement("path", {
|
|
7773
8171
|
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"
|
|
7774
8172
|
})), _path4$b || (_path4$b = /*#__PURE__*/createElement("path", {
|
|
7775
8173
|
d: "M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"
|
|
@@ -7778,28 +8176,28 @@ function SvgLogoSchomburgWhite(_ref) {
|
|
|
7778
8176
|
})));
|
|
7779
8177
|
}
|
|
7780
8178
|
|
|
7781
|
-
var _g$
|
|
8179
|
+
var _g$c, _defs$7;
|
|
7782
8180
|
|
|
7783
|
-
var _excluded$
|
|
8181
|
+
var _excluded$1o = ["title", "titleId"];
|
|
7784
8182
|
|
|
7785
|
-
function _extends$
|
|
8183
|
+
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); }
|
|
7786
8184
|
|
|
7787
|
-
function _objectWithoutProperties$
|
|
8185
|
+
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; }
|
|
7788
8186
|
|
|
7789
|
-
function _objectWithoutPropertiesLoose$
|
|
8187
|
+
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; }
|
|
7790
8188
|
|
|
7791
8189
|
function SvgLogoSimplyeBlack(_ref) {
|
|
7792
8190
|
var title = _ref.title,
|
|
7793
8191
|
titleId = _ref.titleId,
|
|
7794
|
-
props = _objectWithoutProperties$
|
|
8192
|
+
props = _objectWithoutProperties$11(_ref, _excluded$1o);
|
|
7795
8193
|
|
|
7796
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8194
|
+
return /*#__PURE__*/createElement("svg", _extends$12({
|
|
7797
8195
|
viewBox: "0 0 512 148",
|
|
7798
8196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7799
8197
|
"aria-labelledby": titleId
|
|
7800
8198
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7801
8199
|
id: titleId
|
|
7802
|
-
}, title) : null, _g$
|
|
8200
|
+
}, title) : null, _g$c || (_g$c = /*#__PURE__*/createElement("g", {
|
|
7803
8201
|
clipPath: "url(#logo-simplye-black_svg__clip0)"
|
|
7804
8202
|
}, /*#__PURE__*/createElement("path", {
|
|
7805
8203
|
d: "M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"
|
|
@@ -7807,7 +8205,7 @@ function SvgLogoSimplyeBlack(_ref) {
|
|
|
7807
8205
|
d: "M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"
|
|
7808
8206
|
}), /*#__PURE__*/createElement("path", {
|
|
7809
8207
|
d: "M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"
|
|
7810
|
-
}))), _defs$
|
|
8208
|
+
}))), _defs$7 || (_defs$7 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
7811
8209
|
id: "logo-simplye-black_svg__clip0"
|
|
7812
8210
|
}, /*#__PURE__*/createElement("path", {
|
|
7813
8211
|
fill: "#fff",
|
|
@@ -7816,29 +8214,29 @@ function SvgLogoSimplyeBlack(_ref) {
|
|
|
7816
8214
|
})))));
|
|
7817
8215
|
}
|
|
7818
8216
|
|
|
7819
|
-
var _g$
|
|
8217
|
+
var _g$d, _defs$8;
|
|
7820
8218
|
|
|
7821
|
-
var _excluded$
|
|
8219
|
+
var _excluded$1p = ["title", "titleId"];
|
|
7822
8220
|
|
|
7823
|
-
function _extends
|
|
8221
|
+
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); }
|
|
7824
8222
|
|
|
7825
|
-
function _objectWithoutProperties$
|
|
8223
|
+
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; }
|
|
7826
8224
|
|
|
7827
|
-
function _objectWithoutPropertiesLoose
|
|
8225
|
+
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; }
|
|
7828
8226
|
|
|
7829
8227
|
function SvgLogoSimplyeWhite(_ref) {
|
|
7830
8228
|
var title = _ref.title,
|
|
7831
8229
|
titleId = _ref.titleId,
|
|
7832
|
-
props = _objectWithoutProperties$
|
|
8230
|
+
props = _objectWithoutProperties$12(_ref, _excluded$1p);
|
|
7833
8231
|
|
|
7834
|
-
return /*#__PURE__*/createElement("svg", _extends
|
|
8232
|
+
return /*#__PURE__*/createElement("svg", _extends$13({
|
|
7835
8233
|
viewBox: "0 0 512 148",
|
|
7836
8234
|
fill: "#fff",
|
|
7837
8235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7838
8236
|
"aria-labelledby": titleId
|
|
7839
8237
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7840
8238
|
id: titleId
|
|
7841
|
-
}, title) : null, _g$
|
|
8239
|
+
}, title) : null, _g$d || (_g$d = /*#__PURE__*/createElement("g", {
|
|
7842
8240
|
clipPath: "url(#logo-simplye-white_svg__clip0)"
|
|
7843
8241
|
}, /*#__PURE__*/createElement("path", {
|
|
7844
8242
|
d: "M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"
|
|
@@ -7846,7 +8244,7 @@ function SvgLogoSimplyeWhite(_ref) {
|
|
|
7846
8244
|
d: "M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"
|
|
7847
8245
|
}), /*#__PURE__*/createElement("path", {
|
|
7848
8246
|
d: "M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"
|
|
7849
|
-
}))), _defs$
|
|
8247
|
+
}))), _defs$8 || (_defs$8 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
7850
8248
|
id: "logo-simplye-white_svg__clip0"
|
|
7851
8249
|
}, /*#__PURE__*/createElement("path", {
|
|
7852
8250
|
transform: "translate(0 .118)",
|
|
@@ -7854,29 +8252,29 @@ function SvgLogoSimplyeWhite(_ref) {
|
|
|
7854
8252
|
})))));
|
|
7855
8253
|
}
|
|
7856
8254
|
|
|
7857
|
-
var _g$
|
|
8255
|
+
var _g$e, _defs$9;
|
|
7858
8256
|
|
|
7859
|
-
var _excluded$
|
|
8257
|
+
var _excluded$1q = ["title", "titleId"];
|
|
7860
8258
|
|
|
7861
|
-
function _extends$
|
|
8259
|
+
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); }
|
|
7862
8260
|
|
|
7863
|
-
function _objectWithoutProperties
|
|
8261
|
+
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; }
|
|
7864
8262
|
|
|
7865
|
-
function _objectWithoutPropertiesLoose$
|
|
8263
|
+
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; }
|
|
7866
8264
|
|
|
7867
8265
|
function SvgLogoSimplyeColor(_ref) {
|
|
7868
8266
|
var title = _ref.title,
|
|
7869
8267
|
titleId = _ref.titleId,
|
|
7870
|
-
props = _objectWithoutProperties
|
|
8268
|
+
props = _objectWithoutProperties$13(_ref, _excluded$1q);
|
|
7871
8269
|
|
|
7872
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8270
|
+
return /*#__PURE__*/createElement("svg", _extends$14({
|
|
7873
8271
|
viewBox: "0 0 682 196",
|
|
7874
8272
|
fill: "none",
|
|
7875
8273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7876
8274
|
"aria-labelledby": titleId
|
|
7877
8275
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7878
8276
|
id: titleId
|
|
7879
|
-
}, title) : null, _g$
|
|
8277
|
+
}, title) : null, _g$e || (_g$e = /*#__PURE__*/createElement("g", {
|
|
7880
8278
|
clipPath: "url(#logo-simplye-color_svg__clip0)"
|
|
7881
8279
|
}, /*#__PURE__*/createElement("path", {
|
|
7882
8280
|
d: "M32.454 44.821c-.672-.822-.72-1.921.288-2.254l69.866-23.102a1.258 1.258 0 011.654 1.195c-.001.69.559 1.155 1.242 1.26.528.083 1.108.12 1.67.068.727-.068 1.346-.526 1.346-1.255l-.004-7.35c0-.376-.164-.94-.744-1.218-.324-.158-.735-.28-1.108-.156l-78.258 25.96c-3.012.975-3.55 1.34-3.55 4.576l.027 133.016c0 .126.013.257.052.377 1.616 4.929 7.396 7.184 7.396 7.184 5.674 2.155 8.598 2.753 13.738.969 0 0 .115-132.697.047-133.28a.373.373 0 00-.306-.323c-.546-.103-8.954-.279-13.355-5.667",
|
|
@@ -7890,7 +8288,7 @@ function SvgLogoSimplyeColor(_ref) {
|
|
|
7890
8288
|
}), /*#__PURE__*/createElement("path", {
|
|
7891
8289
|
d: "M257.68 121.443c0 4.631-.848 8.852-2.547 12.658-1.698 3.81-4.144 7.024-7.333 9.65-3.19 2.624-7.077 4.657-11.654 6.096-4.581 1.44-9.703 2.162-15.361 2.162-4.221 0-8.028-.362-11.424-1.08-3.396-.721-6.406-1.594-9.03-2.625-2.626-1.027-4.891-2.134-6.793-3.319-1.906-1.181-3.423-2.238-4.554-3.165l9.261-15.128c.619.412 1.546 1.056 2.78 1.93 1.235.876 2.779 1.724 4.631 2.548 1.853.824 4.015 1.569 6.484 2.237 2.47.67 5.196 1.004 8.181 1.004 5.249 0 9.288-1.158 12.12-3.473 2.829-2.316 4.245-5.119 4.245-8.414 0-2.264-.645-4.193-1.929-5.79-1.29-1.593-2.987-3.009-5.096-4.245-2.11-1.235-4.554-2.443-7.332-3.627a127.762 127.762 0 01-8.645-4.092c-3.192-1.544-6.124-3.241-8.8-5.093-2.677-1.853-4.993-3.961-6.947-6.33-1.955-2.366-3.499-5.118-4.631-8.259-1.134-3.139-1.698-6.817-1.698-11.038 0-4.424.874-8.387 2.624-11.887 1.75-3.497 4.115-6.484 7.101-8.954 2.984-2.47 6.484-4.372 10.497-5.71 4.015-1.338 8.338-2.009 12.968-2.009 4.219 0 7.951.31 11.193.927 3.241.617 6.097 1.365 8.568 2.239 2.469.876 4.528 1.8 6.175 2.778 1.645.979 3.034 1.879 4.167 2.702l-8.799 15.283c-.926-.617-2.06-1.285-3.395-2.007-1.34-.718-2.884-1.389-4.632-2.008a50.57 50.57 0 00-5.712-1.62 28.702 28.702 0 00-6.329-.694c-4.221 0-7.565.901-10.034 2.701-2.471 1.803-3.706 4.452-3.706 7.95 0 2.06.487 3.782 1.467 5.172.976 1.39 2.315 2.65 4.013 3.782 1.699 1.134 3.706 2.214 6.022 3.242a601.234 601.234 0 017.486 3.396 147.494 147.494 0 019.88 4.94c3.189 1.75 5.994 3.86 8.414 6.329 2.416 2.471 4.373 5.379 5.865 8.723 1.491 3.345 2.239 7.385 2.239 12.118zm12.349 28.714v-75.18h20.686v75.18h-20.686zm23.002-97.256c0 3.294-1.211 6.174-3.628 8.645-2.418 2.47-5.429 3.705-9.03 3.705-3.604 0-6.588-1.236-8.955-3.705-2.368-2.47-3.55-5.35-3.55-8.645 0-3.293 1.182-6.123 3.55-8.49 2.367-2.367 5.351-3.551 8.955-3.551 3.601 0 6.612 1.184 9.03 3.55 2.417 2.368 3.628 5.198 3.628 8.49zm73.325 32.11c3.089-3.602 6.485-6.484 10.19-8.645 3.706-2.162 8.336-3.242 13.893-3.242 4.015 0 7.385.618 10.112 1.852 2.727 1.235 4.94 2.933 6.637 5.095 1.699 2.161 2.907 4.734 3.628 7.718.719 2.987 1.081 6.228 1.081 9.725v52.643h-20.531v-48.473c0-3.706-.643-6.535-1.929-8.49-1.29-1.956-3.628-2.934-7.024-2.934-1.648 0-3.192.284-4.632.848a15.621 15.621 0 00-3.86 2.161 26.835 26.835 0 00-3.086 2.78 92.35 92.35 0 00-2.471 2.701v51.407h-20.532v-48.473c0-3.807-.694-6.663-2.085-8.57-1.388-1.902-3.626-2.854-6.714-2.854-1.852 0-3.578.385-5.171 1.157-1.597.772-2.987 1.674-4.169 2.701-1.184 1.031-2.161 2.06-2.932 3.088a106.536 106.536 0 01-1.776 2.316v50.635h-20.532v-75.18h20.068v9.262a97.36 97.36 0 013.397-3.55c1.336-1.337 2.934-2.547 4.785-3.629 1.854-1.081 3.962-2.006 6.33-2.778 2.366-.772 5.041-1.158 8.027-1.158 5.351 0 9.545 1.08 12.583 3.242 3.034 2.16 5.272 5.043 6.713 8.645zm106.828 27.478c0-7.1-1.235-12.71-3.705-16.827-2.471-4.114-6.228-6.174-11.269-6.174-1.956 0-3.704.308-5.25.925-1.544.619-2.933 1.34-4.167 2.162-1.235.825-2.238 1.674-3.01 2.547a59.725 59.725 0 00-1.776 2.084v33.808c1.336 1.134 3.01 2.266 5.018 3.397 2.006 1.133 4.654 1.698 7.95 1.698 5.249 0 9.261-2.085 12.041-6.253 2.779-4.168 4.168-9.957 4.168-17.367zm21.767 0c0 5.97-.825 11.374-2.47 16.21-1.647 4.838-3.964 8.98-6.947 12.426a31.322 31.322 0 01-10.651 8.028c-4.118 1.904-8.647 2.856-13.587 2.856-4.629 0-8.336-.616-11.114-1.852-2.779-1.236-4.839-2.417-6.175-3.551v37.358h-20.531V74.976h20.069v7.873c2.057-2.57 4.758-4.836 8.103-6.791 3.344-1.955 7.588-2.934 12.737-2.934 9.571 0 17.059 3.396 22.461 10.188 5.403 6.793 8.105 16.518 8.105 29.177zm12.041 37.668V39.007h20.532v111.15h-20.532zm29.176-75.18h21.92l16.673 49.554h.772l15.284-49.555h21.149l-31.029 83.208c-1.649 4.425-3.449 8.387-5.404 11.887-1.956 3.497-4.272 6.43-6.946 8.8-2.679 2.365-5.843 4.192-9.495 5.48-3.654 1.285-8.054 1.93-13.198 1.93-3.192 0-5.713-.181-7.565-.541-1.852-.361-3.192-.644-4.013-.848l2.932-16.21c.514.205 1.286.385 2.316.541 1.028.154 2.674.23 4.941.23 5.248 0 9.054-1.183 11.422-3.551 2.367-2.368 4.269-5.557 5.712-9.569l2.779-7.72-28.25-73.637zm85.216 75.18V47.342h59.28v17.91h-37.823v23.156h33.344v16.981h-33.344v26.861h38.903v17.907h-60.36z",
|
|
7892
8290
|
fill: "#1B385E"
|
|
7893
|
-
}))), _defs$
|
|
8291
|
+
}))), _defs$9 || (_defs$9 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
7894
8292
|
id: "logo-simplye-color_svg__clip0"
|
|
7895
8293
|
}, /*#__PURE__*/createElement("path", {
|
|
7896
8294
|
fill: "#fff",
|
|
@@ -7899,88 +8297,88 @@ function SvgLogoSimplyeColor(_ref) {
|
|
|
7899
8297
|
})))));
|
|
7900
8298
|
}
|
|
7901
8299
|
|
|
7902
|
-
var _path$
|
|
8300
|
+
var _path$Q;
|
|
7903
8301
|
|
|
7904
|
-
var _excluded$
|
|
8302
|
+
var _excluded$1r = ["title", "titleId"];
|
|
7905
8303
|
|
|
7906
|
-
function _extends$
|
|
8304
|
+
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); }
|
|
7907
8305
|
|
|
7908
|
-
function _objectWithoutProperties$
|
|
8306
|
+
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; }
|
|
7909
8307
|
|
|
7910
|
-
function _objectWithoutPropertiesLoose$
|
|
8308
|
+
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; }
|
|
7911
8309
|
|
|
7912
8310
|
function SvgLogoSnflBlack(_ref) {
|
|
7913
8311
|
var title = _ref.title,
|
|
7914
8312
|
titleId = _ref.titleId,
|
|
7915
|
-
props = _objectWithoutProperties$
|
|
8313
|
+
props = _objectWithoutProperties$14(_ref, _excluded$1r);
|
|
7916
8314
|
|
|
7917
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8315
|
+
return /*#__PURE__*/createElement("svg", _extends$15({
|
|
7918
8316
|
viewBox: "0 0 84 111",
|
|
7919
8317
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7920
8318
|
"aria-labelledby": titleId
|
|
7921
8319
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7922
8320
|
id: titleId
|
|
7923
|
-
}, title) : null, _path$
|
|
8321
|
+
}, title) : null, _path$Q || (_path$Q = /*#__PURE__*/createElement("path", {
|
|
7924
8322
|
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"
|
|
7925
8323
|
})));
|
|
7926
8324
|
}
|
|
7927
8325
|
|
|
7928
|
-
var _path$
|
|
8326
|
+
var _path$R;
|
|
7929
8327
|
|
|
7930
|
-
var _excluded$
|
|
8328
|
+
var _excluded$1s = ["title", "titleId"];
|
|
7931
8329
|
|
|
7932
|
-
function _extends$
|
|
8330
|
+
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); }
|
|
7933
8331
|
|
|
7934
|
-
function _objectWithoutProperties$
|
|
8332
|
+
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; }
|
|
7935
8333
|
|
|
7936
|
-
function _objectWithoutPropertiesLoose$
|
|
8334
|
+
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; }
|
|
7937
8335
|
|
|
7938
8336
|
function SvgLogoSnflWhite(_ref) {
|
|
7939
8337
|
var title = _ref.title,
|
|
7940
8338
|
titleId = _ref.titleId,
|
|
7941
|
-
props = _objectWithoutProperties$
|
|
8339
|
+
props = _objectWithoutProperties$15(_ref, _excluded$1s);
|
|
7942
8340
|
|
|
7943
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8341
|
+
return /*#__PURE__*/createElement("svg", _extends$16({
|
|
7944
8342
|
viewBox: "0 0 84 111",
|
|
7945
8343
|
fill: "#fff",
|
|
7946
8344
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7947
8345
|
"aria-labelledby": titleId
|
|
7948
8346
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7949
8347
|
id: titleId
|
|
7950
|
-
}, title) : null, _path$
|
|
8348
|
+
}, title) : null, _path$R || (_path$R = /*#__PURE__*/createElement("path", {
|
|
7951
8349
|
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"
|
|
7952
8350
|
})));
|
|
7953
8351
|
}
|
|
7954
8352
|
|
|
7955
|
-
var _path$
|
|
8353
|
+
var _path$S, _path2$s, _path3$n, _path4$c, _path5$b, _path6$3, _path7$3, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14, _path15, _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;
|
|
7956
8354
|
|
|
7957
|
-
var _excluded$
|
|
8355
|
+
var _excluded$1t = ["title", "titleId"];
|
|
7958
8356
|
|
|
7959
|
-
function _extends$
|
|
8357
|
+
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); }
|
|
7960
8358
|
|
|
7961
|
-
function _objectWithoutProperties$
|
|
8359
|
+
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; }
|
|
7962
8360
|
|
|
7963
|
-
function _objectWithoutPropertiesLoose$
|
|
8361
|
+
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; }
|
|
7964
8362
|
|
|
7965
8363
|
function SvgLogoTreasuresColor(_ref) {
|
|
7966
8364
|
var title = _ref.title,
|
|
7967
8365
|
titleId = _ref.titleId,
|
|
7968
|
-
props = _objectWithoutProperties$
|
|
8366
|
+
props = _objectWithoutProperties$16(_ref, _excluded$1t);
|
|
7969
8367
|
|
|
7970
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8368
|
+
return /*#__PURE__*/createElement("svg", _extends$17({
|
|
7971
8369
|
viewBox: "0 0 324 265",
|
|
7972
8370
|
fill: "none",
|
|
7973
8371
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7974
8372
|
"aria-labelledby": titleId
|
|
7975
8373
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
7976
8374
|
id: titleId
|
|
7977
|
-
}, title) : null, _path$
|
|
8375
|
+
}, title) : null, _path$S || (_path$S = /*#__PURE__*/createElement("path", {
|
|
7978
8376
|
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",
|
|
7979
8377
|
fill: "#D3BA81"
|
|
7980
|
-
})), _path2$
|
|
8378
|
+
})), _path2$s || (_path2$s = /*#__PURE__*/createElement("path", {
|
|
7981
8379
|
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",
|
|
7982
8380
|
fill: "#D3BA81"
|
|
7983
|
-
})), _path3$
|
|
8381
|
+
})), _path3$n || (_path3$n = /*#__PURE__*/createElement("path", {
|
|
7984
8382
|
d: "M51.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.688zM104.139 153.784c-1.174-.059-5.388-.118-8.141-.118H80.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H94.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.06-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.06 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",
|
|
7985
8383
|
fill: "#D3BA81"
|
|
7986
8384
|
})), _path4$c || (_path4$c = /*#__PURE__*/createElement("path", {
|
|
@@ -8142,35 +8540,35 @@ function SvgLogoTreasuresColor(_ref) {
|
|
|
8142
8540
|
})));
|
|
8143
8541
|
}
|
|
8144
8542
|
|
|
8145
|
-
var _path$
|
|
8543
|
+
var _path$T, _path2$t, _path3$o, _path4$d, _path5$c, _path6$4, _path7$4, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$1, _path15$1, _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;
|
|
8146
8544
|
|
|
8147
|
-
var _excluded$
|
|
8545
|
+
var _excluded$1u = ["title", "titleId"];
|
|
8148
8546
|
|
|
8149
|
-
function _extends$
|
|
8547
|
+
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); }
|
|
8150
8548
|
|
|
8151
|
-
function _objectWithoutProperties$
|
|
8549
|
+
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; }
|
|
8152
8550
|
|
|
8153
|
-
function _objectWithoutPropertiesLoose$
|
|
8551
|
+
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; }
|
|
8154
8552
|
|
|
8155
8553
|
function SvgLogoTreasuresColorNegative(_ref) {
|
|
8156
8554
|
var title = _ref.title,
|
|
8157
8555
|
titleId = _ref.titleId,
|
|
8158
|
-
props = _objectWithoutProperties$
|
|
8556
|
+
props = _objectWithoutProperties$17(_ref, _excluded$1u);
|
|
8159
8557
|
|
|
8160
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
8558
|
+
return /*#__PURE__*/createElement("svg", _extends$18({
|
|
8161
8559
|
viewBox: "0 0 327 266",
|
|
8162
8560
|
fill: "none",
|
|
8163
8561
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8164
8562
|
"aria-labelledby": titleId
|
|
8165
8563
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
8166
8564
|
id: titleId
|
|
8167
|
-
}, title) : null, _path$
|
|
8565
|
+
}, title) : null, _path$T || (_path$T = /*#__PURE__*/createElement("path", {
|
|
8168
8566
|
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",
|
|
8169
8567
|
fill: "#D3BA81"
|
|
8170
|
-
})), _path2$
|
|
8568
|
+
})), _path2$t || (_path2$t = /*#__PURE__*/createElement("path", {
|
|
8171
8569
|
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",
|
|
8172
8570
|
fill: "#D3BA81"
|
|
8173
|
-
})), _path3$
|
|
8571
|
+
})), _path3$o || (_path3$o = /*#__PURE__*/createElement("path", {
|
|
8174
8572
|
d: "M53.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.688zM106.139 154.784c-1.174-.059-5.388-.118-8.141-.118H82.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H96.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.059-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.059 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",
|
|
8175
8573
|
fill: "#D3BA81"
|
|
8176
8574
|
})), _path4$d || (_path4$d = /*#__PURE__*/createElement("path", {
|
|
@@ -8334,12 +8732,16 @@ function SvgLogoTreasuresColorNegative(_ref) {
|
|
|
8334
8732
|
|
|
8335
8733
|
/* eslint-disable camelcase */
|
|
8336
8734
|
var logoSvgs = {
|
|
8735
|
+
appleAppStoreBlack: SvgLogoAppleAppStoreBlack,
|
|
8736
|
+
appleAppStoreWhite: SvgLogoAppleAppStoreWhite,
|
|
8337
8737
|
bplBlack: SvgLogoBplBlack,
|
|
8338
8738
|
bplWhite: SvgLogoBplWhite,
|
|
8739
|
+
cleverBadgeColor: SvgLogoCleverBadgeColor,
|
|
8339
8740
|
cleverColor: SvgLogoCleverColor,
|
|
8340
8741
|
cleverWhite: SvgLogoCleverWhite,
|
|
8341
8742
|
firstbookColor: SvgLogoFirstbookColor,
|
|
8342
8743
|
firstbookColorNegative: SvgLogoFirstbookColorNegative,
|
|
8744
|
+
googlePlayBlack: SvgLogoGooglePlayBlack,
|
|
8343
8745
|
lpaBlack: SvgLogoLpaBlack,
|
|
8344
8746
|
lpaColor: SvgLogoLpaColor,
|
|
8345
8747
|
lpaWhite: SvgLogoLpaWhite,
|
|
@@ -8375,7 +8777,7 @@ var logoSvgs = {
|
|
|
8375
8777
|
treasuresColorNegative: SvgLogoTreasuresColorNegative
|
|
8376
8778
|
};
|
|
8377
8779
|
|
|
8378
|
-
var _excluded$
|
|
8780
|
+
var _excluded$1v = ["children", "className", "decorative", "id", "name", "size", "title"];
|
|
8379
8781
|
/**
|
|
8380
8782
|
* The `Logo` component renders SVG-based logos and color variants that are
|
|
8381
8783
|
* commonly used by the New York Public Library.
|
|
@@ -8394,7 +8796,7 @@ var Logo$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
8394
8796
|
size = _props$size === void 0 ? "medium" : _props$size,
|
|
8395
8797
|
_props$title = props.title,
|
|
8396
8798
|
title = _props$title === void 0 ? name + " logo" : _props$title,
|
|
8397
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
8799
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1v);
|
|
8398
8800
|
|
|
8399
8801
|
var styles = useStyleConfig("Logo", {
|
|
8400
8802
|
size: size
|
|
@@ -8443,7 +8845,7 @@ var Logo$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
8443
8845
|
}, childSVG);
|
|
8444
8846
|
});
|
|
8445
8847
|
|
|
8446
|
-
var _excluded$
|
|
8848
|
+
var _excluded$1w = ["bodyContent", "closeButtonLabel", "headingText", "id", "isOpen", "onClose"],
|
|
8447
8849
|
_excluded2$5 = ["buttonText", "id", "modalProps"],
|
|
8448
8850
|
_excluded3$2 = ["bodyContent", "closeButtonLabel", "headingText", "id"];
|
|
8449
8851
|
var BaseModal = /*#__PURE__*/chakra(function (_ref) {
|
|
@@ -8454,7 +8856,7 @@ var BaseModal = /*#__PURE__*/chakra(function (_ref) {
|
|
|
8454
8856
|
id = _ref.id,
|
|
8455
8857
|
isOpen = _ref.isOpen,
|
|
8456
8858
|
onClose = _ref.onClose,
|
|
8457
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8859
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
8458
8860
|
|
|
8459
8861
|
// Based on --nypl-breakpoint-medium
|
|
8460
8862
|
var breakpointMedium = 600;
|
|
@@ -8553,7 +8955,7 @@ function useModal() {
|
|
|
8553
8955
|
};
|
|
8554
8956
|
}
|
|
8555
8957
|
|
|
8556
|
-
var _excluded$
|
|
8958
|
+
var _excluded$1x = ["children", "icon", "id", "isCentered", "notificationType"],
|
|
8557
8959
|
_excluded2$6 = ["alignText", "children", "icon", "notificationType"],
|
|
8558
8960
|
_excluded3$3 = ["ariaLabel", "className", "dismissible", "icon", "id", "isCentered", "noMargin", "notificationContent", "notificationHeading", "notificationType", "showIcon"];
|
|
8559
8961
|
/**
|
|
@@ -8566,7 +8968,7 @@ var NotificationHeading$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
8566
8968
|
id = props.id,
|
|
8567
8969
|
isCentered = props.isCentered,
|
|
8568
8970
|
notificationType = props.notificationType,
|
|
8569
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
8971
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1x);
|
|
8570
8972
|
|
|
8571
8973
|
var styles = useMultiStyleConfig("NotificationHeading", {
|
|
8572
8974
|
icon: icon,
|
|
@@ -8722,28 +9124,7 @@ var Notification$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
8722
9124
|
}, childHeading, childContent), dismissibleButton);
|
|
8723
9125
|
});
|
|
8724
9126
|
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
/**
|
|
8728
|
-
* range
|
|
8729
|
-
* Get an array of values from `start` to `stop` - 1 with an optional
|
|
8730
|
-
* `step` between values.
|
|
8731
|
-
*/
|
|
8732
|
-
var range = function range(start, stop, step) {
|
|
8733
|
-
if (step === void 0) {
|
|
8734
|
-
step = 1;
|
|
8735
|
-
}
|
|
8736
|
-
|
|
8737
|
-
if (!start) {
|
|
8738
|
-
return [];
|
|
8739
|
-
}
|
|
8740
|
-
|
|
8741
|
-
return Array(Math.ceil((stop - start) / step)).fill(start).map(function (x, y) {
|
|
8742
|
-
return x + y * step;
|
|
8743
|
-
});
|
|
8744
|
-
};
|
|
8745
|
-
|
|
8746
|
-
var _excluded$1s = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
|
|
9127
|
+
var _excluded$1y = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
|
|
8747
9128
|
/**
|
|
8748
9129
|
* A component that provides a navigational list of page items.
|
|
8749
9130
|
*/
|
|
@@ -8757,7 +9138,7 @@ var Pagination$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
8757
9138
|
initialPage = _props$initialPage === void 0 ? 1 : _props$initialPage,
|
|
8758
9139
|
onPageChange = props.onPageChange,
|
|
8759
9140
|
pageCount = props.pageCount,
|
|
8760
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9141
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1y);
|
|
8761
9142
|
|
|
8762
9143
|
var refCurrentPage = useRef(currentPage);
|
|
8763
9144
|
|
|
@@ -8949,7 +9330,7 @@ var Pagination$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
8949
9330
|
}, previousLiLink, getPaginationNumbers(selectedPage), nextLiLink));
|
|
8950
9331
|
});
|
|
8951
9332
|
|
|
8952
|
-
var _excluded$
|
|
9333
|
+
var _excluded$1z = ["darkMode", "id", "indicatorType", "isIndeterminate", "labelText", "showLabel", "size", "value"];
|
|
8953
9334
|
/**
|
|
8954
9335
|
* A component that displays a progress status for any task that takes a long
|
|
8955
9336
|
* time to complete or consists of multiple steps. Examples include downloading,
|
|
@@ -8971,7 +9352,7 @@ var ProgressIndicator$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
8971
9352
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
8972
9353
|
_props$value = props.value,
|
|
8973
9354
|
value = _props$value === void 0 ? 0 : _props$value,
|
|
8974
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9355
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1z);
|
|
8975
9356
|
|
|
8976
9357
|
var styles = useMultiStyleConfig("ProgressIndicator", {
|
|
8977
9358
|
darkMode: darkMode,
|
|
@@ -9037,7 +9418,7 @@ var ProgressIndicator$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9037
9418
|
}, rest), progressComponent(indicatorType));
|
|
9038
9419
|
});
|
|
9039
9420
|
|
|
9040
|
-
var _excluded$
|
|
9421
|
+
var _excluded$1A = ["className", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
|
|
9041
9422
|
var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
9042
9423
|
var className = props.className,
|
|
9043
9424
|
helperText = props.helperText,
|
|
@@ -9058,27 +9439,30 @@ var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
9058
9439
|
_props$showLabel = props.showLabel,
|
|
9059
9440
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
9060
9441
|
value = props.value,
|
|
9061
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9442
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1A);
|
|
9062
9443
|
|
|
9063
9444
|
var styles = useMultiStyleConfig("Radio", {});
|
|
9064
9445
|
var footnote = isInvalid ? invalidText : helperText;
|
|
9065
|
-
var ariaAttributes = {
|
|
9446
|
+
var ariaAttributes = getAriaAttrs({
|
|
9447
|
+
footnote: footnote,
|
|
9448
|
+
id: id,
|
|
9449
|
+
labelText: labelText,
|
|
9450
|
+
name: "Radio",
|
|
9451
|
+
showLabel: showLabel
|
|
9452
|
+
});
|
|
9066
9453
|
|
|
9067
9454
|
if (!id) {
|
|
9068
9455
|
console.warn("NYPL Reservoir Radio: This component's required `id` prop was not passed.");
|
|
9069
9456
|
}
|
|
9070
9457
|
|
|
9071
|
-
|
|
9072
|
-
|
|
9073
|
-
|
|
9074
|
-
|
|
9075
|
-
|
|
9076
|
-
|
|
9077
|
-
|
|
9078
|
-
|
|
9079
|
-
}
|
|
9080
|
-
|
|
9081
|
-
return createElement(Fragment, null, createElement(Radio$2, Object.assign({
|
|
9458
|
+
return createElement(ComponentWrapper, Object.assign({
|
|
9459
|
+
helperText: helperText,
|
|
9460
|
+
helperTextStyles: styles.helperErrorText,
|
|
9461
|
+
id: id,
|
|
9462
|
+
invalidText: invalidText,
|
|
9463
|
+
isInvalid: isInvalid,
|
|
9464
|
+
showHelperInvalidText: showHelperInvalidText
|
|
9465
|
+
}, rest), createElement(Radio$2, Object.assign({
|
|
9082
9466
|
className: className,
|
|
9083
9467
|
id: id,
|
|
9084
9468
|
isChecked: isChecked,
|
|
@@ -9087,19 +9471,14 @@ var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
9087
9471
|
isRequired: isRequired,
|
|
9088
9472
|
name: name,
|
|
9089
9473
|
onChange: onChange,
|
|
9090
|
-
value: value,
|
|
9091
9474
|
ref: ref,
|
|
9475
|
+
value: value,
|
|
9092
9476
|
alignItems: "flex-start",
|
|
9093
9477
|
__css: styles
|
|
9094
|
-
}, ariaAttributes
|
|
9095
|
-
id: id + "-helperText",
|
|
9096
|
-
isInvalid: isInvalid,
|
|
9097
|
-
text: footnote,
|
|
9098
|
-
__css: styles.helperErrorText
|
|
9099
|
-
}));
|
|
9478
|
+
}, ariaAttributes), showLabel && labelText));
|
|
9100
9479
|
}));
|
|
9101
9480
|
|
|
9102
|
-
var _excluded$
|
|
9481
|
+
var _excluded$1B = ["children", "className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
9103
9482
|
/**
|
|
9104
9483
|
* RadioGroup is a wrapper for DS `Radio` components that renders as a fieldset
|
|
9105
9484
|
* HTML element along with optional helper text. The `name` prop is essential
|
|
@@ -9135,7 +9514,7 @@ var RadioGroup$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
9135
9514
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
9136
9515
|
_props$showRequiredLa = props.showRequiredLabel,
|
|
9137
9516
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
9138
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9517
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1B);
|
|
9139
9518
|
|
|
9140
9519
|
var _React$useState = useState(defaultValue),
|
|
9141
9520
|
value = _React$useState[0],
|
|
@@ -9192,10 +9571,11 @@ var RadioGroup$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
9192
9571
|
isRequired: isRequired,
|
|
9193
9572
|
legendText: labelText,
|
|
9194
9573
|
showRequiredLabel: showRequiredLabel
|
|
9195
|
-
}, rest
|
|
9574
|
+
}, rest, {
|
|
9575
|
+
__css: styles
|
|
9576
|
+
}), createElement(RadioGroup$2, Object.assign({}, radioGroupProps), createElement(Stack, {
|
|
9196
9577
|
direction: [layout],
|
|
9197
|
-
spacing: spacingProp
|
|
9198
|
-
sx: styles.stack
|
|
9578
|
+
spacing: spacingProp
|
|
9199
9579
|
}, newChildren)), footnote && showHelperInvalidText && createElement(HelperErrorText, {
|
|
9200
9580
|
id: id + "-helperErrorText",
|
|
9201
9581
|
isInvalid: isInvalid,
|
|
@@ -9204,72 +9584,7 @@ var RadioGroup$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
9204
9584
|
}));
|
|
9205
9585
|
}));
|
|
9206
9586
|
|
|
9207
|
-
var _excluded$
|
|
9208
|
-
var Text$1 = /*#__PURE__*/chakra(function (props) {
|
|
9209
|
-
var children = props.children,
|
|
9210
|
-
_props$className = props.className,
|
|
9211
|
-
className = _props$className === void 0 ? "" : _props$className,
|
|
9212
|
-
isBold = props.isBold,
|
|
9213
|
-
isItalic = props.isItalic,
|
|
9214
|
-
noSpace = props.noSpace,
|
|
9215
|
-
_props$size = props.size,
|
|
9216
|
-
size = _props$size === void 0 ? "default" : _props$size,
|
|
9217
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$1w);
|
|
9218
|
-
|
|
9219
|
-
var styles = useStyleConfig("Text", {
|
|
9220
|
-
variant: size,
|
|
9221
|
-
isBold: isBold,
|
|
9222
|
-
isItalic: isItalic,
|
|
9223
|
-
noSpace: noSpace
|
|
9224
|
-
});
|
|
9225
|
-
|
|
9226
|
-
if (!children) {
|
|
9227
|
-
console.warn("NYPL Reservoir Text: No children were passed and the `Text` component " + "will not render correctly.");
|
|
9228
|
-
}
|
|
9229
|
-
|
|
9230
|
-
return createElement(Text$2, Object.assign({
|
|
9231
|
-
className: className,
|
|
9232
|
-
sx: styles
|
|
9233
|
-
}, rest), children);
|
|
9234
|
-
});
|
|
9235
|
-
|
|
9236
|
-
var _excluded$1x = ["children", "descriptionText", "headingText", "helperText", "id", "invalidText", "isInvalid"];
|
|
9237
|
-
var ComponentWrapper$1 = /*#__PURE__*/chakra(function (props) {
|
|
9238
|
-
var children = props.children,
|
|
9239
|
-
descriptionText = props.descriptionText,
|
|
9240
|
-
headingText = props.headingText,
|
|
9241
|
-
helperText = props.helperText,
|
|
9242
|
-
id = props.id,
|
|
9243
|
-
invalidText = props.invalidText,
|
|
9244
|
-
_props$isInvalid = props.isInvalid,
|
|
9245
|
-
isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
|
|
9246
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$1x);
|
|
9247
|
-
|
|
9248
|
-
var hasChildren = !!children;
|
|
9249
|
-
var styles = useMultiStyleConfig("ComponentWrapper", {
|
|
9250
|
-
hasChildren: hasChildren
|
|
9251
|
-
});
|
|
9252
|
-
var footnote = isInvalid ? invalidText : helperText; // Note: Typescript warns when there are no children passed and
|
|
9253
|
-
// doesn't compile. This is meant to log in non-Typescript apps.
|
|
9254
|
-
|
|
9255
|
-
if (!hasChildren) {
|
|
9256
|
-
console.warn("NYPL Reservoir ComponentWrapper: No children were passed.");
|
|
9257
|
-
}
|
|
9258
|
-
|
|
9259
|
-
return createElement(Box, Object.assign({
|
|
9260
|
-
__css: styles
|
|
9261
|
-
}, rest), headingText && createElement(Heading, {
|
|
9262
|
-
id: id + "-heading",
|
|
9263
|
-
text: headingText
|
|
9264
|
-
}), descriptionText && createElement(Text$1, null, descriptionText), children, footnote && createElement(HelperErrorText, {
|
|
9265
|
-
id: id + "-helperText",
|
|
9266
|
-
isInvalid: isInvalid,
|
|
9267
|
-
text: footnote,
|
|
9268
|
-
__css: styles.helperErrorText
|
|
9269
|
-
}));
|
|
9270
|
-
});
|
|
9271
|
-
|
|
9272
|
-
var _excluded$1y = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
|
|
9587
|
+
var _excluded$1C = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
|
|
9273
9588
|
/**
|
|
9274
9589
|
* Component that renders Chakra's `Select` component along with an accessible
|
|
9275
9590
|
* `Label` and optional `HelperErrorText` component.
|
|
@@ -9303,9 +9618,7 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/React__default.forwardRef(funct
|
|
|
9303
9618
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
9304
9619
|
_props$value = props.value,
|
|
9305
9620
|
value = _props$value === void 0 ? "" : _props$value,
|
|
9306
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9307
|
-
|
|
9308
|
-
var ariaAttributes = {};
|
|
9621
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1C);
|
|
9309
9622
|
|
|
9310
9623
|
var _useState = useState(0),
|
|
9311
9624
|
labelWidth = _useState[0],
|
|
@@ -9317,7 +9630,14 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/React__default.forwardRef(funct
|
|
|
9317
9630
|
labelPosition: labelPosition
|
|
9318
9631
|
});
|
|
9319
9632
|
var finalInvalidText = invalidText ? invalidText : "There is an error related to this field.";
|
|
9320
|
-
var footnote = isInvalid ? finalInvalidText : helperText;
|
|
9633
|
+
var footnote = isInvalid ? finalInvalidText : helperText;
|
|
9634
|
+
var ariaAttributes = getAriaAttrs({
|
|
9635
|
+
footnote: footnote,
|
|
9636
|
+
id: id,
|
|
9637
|
+
labelText: labelText,
|
|
9638
|
+
name: "Select",
|
|
9639
|
+
showLabel: showLabel
|
|
9640
|
+
}); // To control the `Select` component, both `onChange` and `value`
|
|
9321
9641
|
// must be passed.
|
|
9322
9642
|
|
|
9323
9643
|
var controlledProps = onChange ? {
|
|
@@ -9328,12 +9648,6 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/React__default.forwardRef(funct
|
|
|
9328
9648
|
|
|
9329
9649
|
var labelSelectGap = 8;
|
|
9330
9650
|
|
|
9331
|
-
if (!showLabel) {
|
|
9332
|
-
ariaAttributes["aria-label"] = labelText && footnote ? labelText + " - " + footnote : labelText;
|
|
9333
|
-
} else if (helperText) {
|
|
9334
|
-
ariaAttributes["aria-describedby"] = id + "-helperText";
|
|
9335
|
-
}
|
|
9336
|
-
|
|
9337
9651
|
if (!id) {
|
|
9338
9652
|
console.warn("NYPL Reservoir Select: This component's required `id` prop was not passed.");
|
|
9339
9653
|
}
|
|
@@ -9348,8 +9662,19 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/React__default.forwardRef(funct
|
|
|
9348
9662
|
setLabelWidth(0);
|
|
9349
9663
|
}
|
|
9350
9664
|
}, [labelPosition]);
|
|
9351
|
-
return React__default.createElement(
|
|
9665
|
+
return React__default.createElement(ComponentWrapper, Object.assign({
|
|
9352
9666
|
className: className,
|
|
9667
|
+
helperText: helperText,
|
|
9668
|
+
helperTextStyles: {
|
|
9669
|
+
marginLeft: {
|
|
9670
|
+
sm: "auto",
|
|
9671
|
+
md: labelWidth + "px"
|
|
9672
|
+
}
|
|
9673
|
+
},
|
|
9674
|
+
id: id,
|
|
9675
|
+
invalidText: finalInvalidText,
|
|
9676
|
+
isInvalid: isInvalid,
|
|
9677
|
+
showHelperInvalidText: showHelperInvalidText,
|
|
9353
9678
|
__css: styles
|
|
9354
9679
|
}, rest), React__default.createElement(Box, {
|
|
9355
9680
|
__css: labelPosition === "inline" && styles.inline
|
|
@@ -9376,18 +9701,10 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/React__default.forwardRef(funct
|
|
|
9376
9701
|
size: "medium"
|
|
9377
9702
|
}),
|
|
9378
9703
|
__css: styles.select
|
|
9379
|
-
}), children))
|
|
9380
|
-
id: id + "-helperText",
|
|
9381
|
-
isInvalid: isInvalid,
|
|
9382
|
-
text: footnote,
|
|
9383
|
-
ml: {
|
|
9384
|
-
sm: "auto",
|
|
9385
|
-
md: labelWidth + "px"
|
|
9386
|
-
}
|
|
9387
|
-
}));
|
|
9704
|
+
}), children)));
|
|
9388
9705
|
}));
|
|
9389
9706
|
|
|
9390
|
-
var _excluded$
|
|
9707
|
+
var _excluded$1D = ["action", "buttonOnClick", "className", "descriptionText", "headingText", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "method", "noBrandButtonType", "onSubmit", "selectProps", "textInputElement", "textInputProps"];
|
|
9391
9708
|
/**
|
|
9392
9709
|
* Renders a wrapper `form` element to be used with `Select` (optional),
|
|
9393
9710
|
* `Input`, and `Button` components together.
|
|
@@ -9416,7 +9733,7 @@ var SearchBar$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9416
9733
|
selectProps = props.selectProps,
|
|
9417
9734
|
textInputElement = props.textInputElement,
|
|
9418
9735
|
textInputProps = props.textInputProps,
|
|
9419
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9736
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1D);
|
|
9420
9737
|
|
|
9421
9738
|
var styles = useMultiStyleConfig("SearchBar", {});
|
|
9422
9739
|
var stateProps = {
|
|
@@ -9489,7 +9806,7 @@ var SearchBar$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9489
9806
|
// instead of the DS `TextInput` component.
|
|
9490
9807
|
|
|
9491
9808
|
var textInputElem = textInputElement || textInputNative;
|
|
9492
|
-
return createElement(ComponentWrapper
|
|
9809
|
+
return createElement(ComponentWrapper, Object.assign({
|
|
9493
9810
|
descriptionText: descriptionText,
|
|
9494
9811
|
headingText: headingText,
|
|
9495
9812
|
helperText: helperText,
|
|
@@ -9509,7 +9826,7 @@ var SearchBar$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9509
9826
|
}, selectElem, textInputElem, buttonElem));
|
|
9510
9827
|
});
|
|
9511
9828
|
|
|
9512
|
-
var _excluded$
|
|
9829
|
+
var _excluded$1E = ["className", "contentSize", "headingSize", "imageAspectRatio", "isBordered", "layout", "showButton", "showContent", "showHeading", "showImage", "width"];
|
|
9513
9830
|
/**
|
|
9514
9831
|
* The `SkeletonLoader` component renders a placeholder to be used while
|
|
9515
9832
|
* dynamic content is loading.
|
|
@@ -9536,7 +9853,7 @@ var SkeletonLoader$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9536
9853
|
_props$showImage = props.showImage,
|
|
9537
9854
|
showImage = _props$showImage === void 0 ? true : _props$showImage,
|
|
9538
9855
|
width = props.width,
|
|
9539
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9856
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1E);
|
|
9540
9857
|
|
|
9541
9858
|
var styles = useMultiStyleConfig("SkeletonLoader", {
|
|
9542
9859
|
isBordered: isBordered,
|
|
@@ -9598,7 +9915,7 @@ var SkeletonLoader$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9598
9915
|
})))));
|
|
9599
9916
|
});
|
|
9600
9917
|
|
|
9601
|
-
var _excluded$
|
|
9918
|
+
var _excluded$1F = ["className", "id", "target"];
|
|
9602
9919
|
/**
|
|
9603
9920
|
* SkipNavigation is a component that is used to provide a navigational list of
|
|
9604
9921
|
* links. The first link is used to skip to the main content of the page using
|
|
@@ -9611,7 +9928,7 @@ var SkipNavigation$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9611
9928
|
id = props.id,
|
|
9612
9929
|
_props$target = props.target,
|
|
9613
9930
|
target = _props$target === void 0 ? "#mainContent" : _props$target,
|
|
9614
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9931
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1F);
|
|
9615
9932
|
|
|
9616
9933
|
var styles = useStyleConfig("SkipNavigation");
|
|
9617
9934
|
return createElement(Box, Object.assign({
|
|
@@ -9631,7 +9948,7 @@ var SkipNavigation$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9631
9948
|
}, "Click to learn about accessibility at the Library"))));
|
|
9632
9949
|
});
|
|
9633
9950
|
|
|
9634
|
-
var _excluded$
|
|
9951
|
+
var _excluded$1G = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRangeSlider", "isRequired", "labelText", "max", "min", "name", "onChange", "showBoxes", "showHelperInvalidText", "showLabel", "showRequiredLabel", "showValues", "step"];
|
|
9635
9952
|
/**
|
|
9636
9953
|
* The `Slider` component renders a singular value slider or a range slider
|
|
9637
9954
|
* with a min and max value. The value(s) can be updated through the slider
|
|
@@ -9672,7 +9989,7 @@ var Slider = /*#__PURE__*/chakra(function (props) {
|
|
|
9672
9989
|
showValues = _props$showValues === void 0 ? true : _props$showValues,
|
|
9673
9990
|
_props$step = props.step,
|
|
9674
9991
|
step = _props$step === void 0 ? 1 : _props$step,
|
|
9675
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9992
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1G);
|
|
9676
9993
|
|
|
9677
9994
|
if (!id) {
|
|
9678
9995
|
console.warn("NYPL Reservoir Slider: This component's required `id` prop was not passed.");
|
|
@@ -9693,9 +10010,9 @@ var Slider = /*#__PURE__*/chakra(function (props) {
|
|
|
9693
10010
|
|
|
9694
10011
|
if (isRangeSlider && currentValue[0] > currentValue[1]) {
|
|
9695
10012
|
finalIsInvalid = true;
|
|
9696
|
-
}
|
|
10013
|
+
} // const footnote = finalIsInvalid ? invalidText : helperText;
|
|
10014
|
+
|
|
9697
10015
|
|
|
9698
|
-
var footnote = finalIsInvalid ? invalidText : helperText;
|
|
9699
10016
|
var styles = useMultiStyleConfig("CustomSlider", {
|
|
9700
10017
|
isDisabled: isDisabled,
|
|
9701
10018
|
isInvalid: finalIsInvalid,
|
|
@@ -9831,8 +10148,13 @@ var Slider = /*#__PURE__*/chakra(function (props) {
|
|
|
9831
10148
|
}));
|
|
9832
10149
|
};
|
|
9833
10150
|
|
|
9834
|
-
return createElement(
|
|
10151
|
+
return createElement(ComponentWrapper, Object.assign({
|
|
9835
10152
|
className: className,
|
|
10153
|
+
helperText: helperText,
|
|
10154
|
+
id: id,
|
|
10155
|
+
invalidText: invalidText,
|
|
10156
|
+
isInvalid: finalIsInvalid,
|
|
10157
|
+
showHelperInvalidText: showHelperInvalidText,
|
|
9836
10158
|
__css: styles
|
|
9837
10159
|
}, rest), showLabel && createElement(Label, {
|
|
9838
10160
|
id: id + "-label",
|
|
@@ -9848,14 +10170,10 @@ var Slider = /*#__PURE__*/chakra(function (props) {
|
|
|
9848
10170
|
__css: styles.leftValue
|
|
9849
10171
|
}, min), getSliderType(), showValues && createElement(Box, {
|
|
9850
10172
|
__css: styles.rightValue
|
|
9851
|
-
}, max), showBoxes && getTextInput("end"))
|
|
9852
|
-
id: id + "-helperText",
|
|
9853
|
-
isInvalid: finalIsInvalid,
|
|
9854
|
-
text: footnote
|
|
9855
|
-
}));
|
|
10173
|
+
}, max), showBoxes && getTextInput("end")));
|
|
9856
10174
|
});
|
|
9857
10175
|
|
|
9858
|
-
var _excluded$
|
|
10176
|
+
var _excluded$1H = ["children", "className", "id", "level"];
|
|
9859
10177
|
/**
|
|
9860
10178
|
* The `StatusBadge` component is used to display a visual badge for three
|
|
9861
10179
|
* different status levels.
|
|
@@ -9867,7 +10185,7 @@ var StatusBadge$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9867
10185
|
id = props.id,
|
|
9868
10186
|
_props$level = props.level,
|
|
9869
10187
|
level = _props$level === void 0 ? "low" : _props$level,
|
|
9870
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10188
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1H);
|
|
9871
10189
|
|
|
9872
10190
|
var styles = useStyleConfig("StatusBadge", {
|
|
9873
10191
|
variant: level
|
|
@@ -9884,7 +10202,7 @@ var StatusBadge$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9884
10202
|
}, rest), children);
|
|
9885
10203
|
});
|
|
9886
10204
|
|
|
9887
|
-
var _excluded$
|
|
10205
|
+
var _excluded$1I = ["calloutText", "className", "headingText", "id", "imageProps", "bodyContent"];
|
|
9888
10206
|
/**
|
|
9889
10207
|
* Internal component used in the `StructuredContent` component
|
|
9890
10208
|
* that renders the DS `Image` component.
|
|
@@ -9936,7 +10254,7 @@ var StructuredContent$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
9936
10254
|
src: ""
|
|
9937
10255
|
} : _props$imageProps,
|
|
9938
10256
|
bodyContent = props.bodyContent,
|
|
9939
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10257
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1I);
|
|
9940
10258
|
|
|
9941
10259
|
var hasImage = imageProps.src || imageProps.component;
|
|
9942
10260
|
var hasFigureImage = imageProps.caption || imageProps.credit;
|
|
@@ -10037,7 +10355,7 @@ var useCarouselStyles = function useCarouselStyles(slidesCount, slideWidth) {
|
|
|
10037
10355
|
};
|
|
10038
10356
|
};
|
|
10039
10357
|
|
|
10040
|
-
var _excluded$
|
|
10358
|
+
var _excluded$1J = ["children", "defaultIndex", "id", "onChange", "tabsData", "useHash"];
|
|
10041
10359
|
/**
|
|
10042
10360
|
* An internal function used to update the hash in the URL.
|
|
10043
10361
|
* This function is only used when `useHash` is `true`.
|
|
@@ -10156,7 +10474,7 @@ var Tabs = /*#__PURE__*/chakra(function (props) {
|
|
|
10156
10474
|
tabsData = props.tabsData,
|
|
10157
10475
|
_props$useHash = props.useHash,
|
|
10158
10476
|
useHash = _props$useHash === void 0 ? false : _props$useHash,
|
|
10159
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10477
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1J);
|
|
10160
10478
|
|
|
10161
10479
|
var styles = useMultiStyleConfig("Tabs", {}); // Just an estimate of the tab width for the mobile carousel.
|
|
10162
10480
|
|
|
@@ -10251,7 +10569,7 @@ var Tabs = /*#__PURE__*/chakra(function (props) {
|
|
|
10251
10569
|
}, createElement(Box, Object.assign({}, carouselStyle), tabs)), nextButton), panels);
|
|
10252
10570
|
}); // Tabs is also exported above so the props can display in Storybook.
|
|
10253
10571
|
|
|
10254
|
-
var _excluded$
|
|
10572
|
+
var _excluded$1K = ["aboveHeader", "breakout", "contentId", "contentPrimary", "contentSidebar", "contentTop", "footer", "header", "sidebar", "renderFooterElement", "renderHeaderElement", "renderSkipNavigation"];
|
|
10255
10573
|
/**
|
|
10256
10574
|
* The main top-level parent component that wraps all template-related
|
|
10257
10575
|
* components.
|
|
@@ -10480,7 +10798,7 @@ var TemplateAppContainer = /*#__PURE__*/chakra(function (props) {
|
|
|
10480
10798
|
renderHeaderElement = _props$renderHeaderEl === void 0 ? true : _props$renderHeaderEl,
|
|
10481
10799
|
_props$renderSkipNavi = props.renderSkipNavigation,
|
|
10482
10800
|
renderSkipNavigation = _props$renderSkipNavi === void 0 ? false : _props$renderSkipNavi,
|
|
10483
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10801
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1K);
|
|
10484
10802
|
|
|
10485
10803
|
var aboveHeaderElem = aboveHeader && createElement(TemplateAboveHeader, null, aboveHeader);
|
|
10486
10804
|
var breakoutElem = breakout && createElement(TemplateBreakout$1, null, breakout);
|
|
@@ -10497,8 +10815,8 @@ var TemplateAppContainer = /*#__PURE__*/chakra(function (props) {
|
|
|
10497
10815
|
}, footer));
|
|
10498
10816
|
});
|
|
10499
10817
|
|
|
10500
|
-
var _excluded$
|
|
10501
|
-
var onChangeDefault
|
|
10818
|
+
var _excluded$1L = ["defaultChecked", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "size"];
|
|
10819
|
+
var onChangeDefault = function onChangeDefault() {
|
|
10502
10820
|
return;
|
|
10503
10821
|
};
|
|
10504
10822
|
/**
|
|
@@ -10521,13 +10839,11 @@ var Toggle$2 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
10521
10839
|
labelText = props.labelText,
|
|
10522
10840
|
name = props.name,
|
|
10523
10841
|
_props$onChange = props.onChange,
|
|
10524
|
-
onChange = _props$onChange === void 0 ? onChangeDefault
|
|
10842
|
+
onChange = _props$onChange === void 0 ? onChangeDefault : _props$onChange,
|
|
10525
10843
|
_props$size = props.size,
|
|
10526
10844
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
10527
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10845
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1L);
|
|
10528
10846
|
|
|
10529
|
-
var footnote = isInvalid ? invalidText : helperText;
|
|
10530
|
-
var ariaAttributes = {};
|
|
10531
10847
|
var styles = useMultiStyleConfig("Toggle", {
|
|
10532
10848
|
isDisabled: isDisabled,
|
|
10533
10849
|
size: size
|
|
@@ -10535,20 +10851,33 @@ var Toggle$2 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
10535
10851
|
var switchStyles = useStyleConfig("Switch", {
|
|
10536
10852
|
size: size
|
|
10537
10853
|
});
|
|
10538
|
-
|
|
10854
|
+
var footnote = isInvalid ? invalidText : helperText;
|
|
10855
|
+
var ariaAttributes = getAriaAttrs({
|
|
10856
|
+
footnote: footnote,
|
|
10857
|
+
id: id,
|
|
10858
|
+
labelText: labelText,
|
|
10859
|
+
name: "Toggle",
|
|
10860
|
+
showLabel: true
|
|
10861
|
+
});
|
|
10539
10862
|
|
|
10540
10863
|
if (!id) {
|
|
10541
10864
|
console.warn("NYPL Reservoir Toggle: This component's required `id` prop was not passed.");
|
|
10542
10865
|
}
|
|
10543
10866
|
|
|
10544
|
-
return createElement(
|
|
10867
|
+
return createElement(ComponentWrapper, Object.assign({
|
|
10868
|
+
helperText: helperText,
|
|
10869
|
+
helperTextStyles: styles.helperErrorText,
|
|
10870
|
+
id: id,
|
|
10871
|
+
invalidText: invalidText,
|
|
10872
|
+
isInvalid: isInvalid
|
|
10873
|
+
}, rest), createElement(Box, {
|
|
10545
10874
|
__css: styles
|
|
10546
|
-
},
|
|
10875
|
+
}, createElement(Switch$1, Object.assign({
|
|
10547
10876
|
id: id,
|
|
10548
|
-
name: name || "default",
|
|
10549
10877
|
isDisabled: isDisabled,
|
|
10550
10878
|
isInvalid: isInvalid,
|
|
10551
10879
|
isRequired: isRequired,
|
|
10880
|
+
name: name || "default",
|
|
10552
10881
|
ref: ref,
|
|
10553
10882
|
size: size === "default" ? "lg" : "sm",
|
|
10554
10883
|
lineHeight: "1.5"
|
|
@@ -10559,12 +10888,7 @@ var Toggle$2 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
10559
10888
|
defaultChecked: defaultChecked
|
|
10560
10889
|
}, ariaAttributes, {
|
|
10561
10890
|
__css: switchStyles
|
|
10562
|
-
}), labelText))
|
|
10563
|
-
id: id + "-helperText",
|
|
10564
|
-
isInvalid: isInvalid,
|
|
10565
|
-
text: footnote,
|
|
10566
|
-
__css: styles.helperErrorText
|
|
10567
|
-
}));
|
|
10891
|
+
}), labelText)));
|
|
10568
10892
|
}));
|
|
10569
10893
|
|
|
10570
10894
|
/**
|
|
@@ -10655,7 +10979,7 @@ function useNYPLTheme() {
|
|
|
10655
10979
|
};
|
|
10656
10980
|
}
|
|
10657
10981
|
|
|
10658
|
-
var _excluded$
|
|
10982
|
+
var _excluded$1M = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
|
|
10659
10983
|
var VideoPlayer$1 = /*#__PURE__*/chakra(function (props) {
|
|
10660
10984
|
var aspectRatio = props.aspectRatio,
|
|
10661
10985
|
className = props.className,
|
|
@@ -10669,7 +10993,7 @@ var VideoPlayer$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10669
10993
|
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
10670
10994
|
videoId = props.videoId,
|
|
10671
10995
|
videoType = props.videoType,
|
|
10672
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10996
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1M);
|
|
10673
10997
|
|
|
10674
10998
|
var iframeTitleFinal = videoType === "vimeo" ? iframeTitle || "Vimeo video player" : iframeTitle || "YouTube video player";
|
|
10675
10999
|
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";
|
|
@@ -10728,7 +11052,7 @@ var VideoPlayer$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10728
11052
|
dangerouslySetInnerHTML: {
|
|
10729
11053
|
__html: errorMessage
|
|
10730
11054
|
}
|
|
10731
|
-
}) : createElement(ComponentWrapper
|
|
11055
|
+
}) : createElement(ComponentWrapper, {
|
|
10732
11056
|
headingText: headingText ? headingText : undefined,
|
|
10733
11057
|
descriptionText: descriptionText ? descriptionText : undefined,
|
|
10734
11058
|
helperText: helperText && showHelperInvalidText ? helperText : undefined,
|
|
@@ -10738,7 +11062,7 @@ var VideoPlayer$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10738
11062
|
}, embedElement)));
|
|
10739
11063
|
});
|
|
10740
11064
|
|
|
10741
|
-
var _excluded$
|
|
11065
|
+
var _excluded$1N = ["className", "columnHeaders", "columnHeadersBackgroundColor", "columnHeadersTextColor", "id", "showRowDividers", "tableData", "titleText", "useRowHeaders"];
|
|
10742
11066
|
/**
|
|
10743
11067
|
* Basic `Table` component used to organize and display tabular data in
|
|
10744
11068
|
* rows and columns.
|
|
@@ -10757,7 +11081,7 @@ var Table = /*#__PURE__*/chakra(function (props) {
|
|
|
10757
11081
|
titleText = props.titleText,
|
|
10758
11082
|
_props$useRowHeaders = props.useRowHeaders,
|
|
10759
11083
|
useRowHeaders = _props$useRowHeaders === void 0 ? false : _props$useRowHeaders,
|
|
10760
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11084
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1N);
|
|
10761
11085
|
|
|
10762
11086
|
var customColors = {};
|
|
10763
11087
|
columnHeadersBackgroundColor && (customColors["backgroundColor"] = columnHeadersBackgroundColor);
|
|
@@ -10787,6 +11111,13 @@ var Table = /*#__PURE__*/chakra(function (props) {
|
|
|
10787
11111
|
return null;
|
|
10788
11112
|
}
|
|
10789
11113
|
|
|
11114
|
+
for (var i = 1; i < tableData.length; i++) {
|
|
11115
|
+
if (tableData[0].length !== tableData[i].length) {
|
|
11116
|
+
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.");
|
|
11117
|
+
break;
|
|
11118
|
+
}
|
|
11119
|
+
}
|
|
11120
|
+
|
|
10790
11121
|
return createElement(Tbody, null, tableData.map(function (row, index) {
|
|
10791
11122
|
return createElement(Tr, {
|
|
10792
11123
|
key: index
|
|
@@ -10801,6 +11132,13 @@ var Table = /*#__PURE__*/chakra(function (props) {
|
|
|
10801
11132
|
}));
|
|
10802
11133
|
};
|
|
10803
11134
|
|
|
11135
|
+
for (var j = 0; j < tableData.length; j++) {
|
|
11136
|
+
if (columnHeaders.length !== tableData[j].length) {
|
|
11137
|
+
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.");
|
|
11138
|
+
break;
|
|
11139
|
+
}
|
|
11140
|
+
}
|
|
11141
|
+
|
|
10804
11142
|
return createElement(Table$1, Object.assign({
|
|
10805
11143
|
id: id,
|
|
10806
11144
|
sx: styles,
|
|
@@ -10808,5 +11146,5 @@ var Table = /*#__PURE__*/chakra(function (props) {
|
|
|
10808
11146
|
}, rest), tableCaption, columnHeadersElems, tableBodyElems());
|
|
10809
11147
|
});
|
|
10810
11148
|
|
|
10811
|
-
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
|
|
11149
|
+
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, useNYPLTheme, useWindowSize };
|
|
10812
11150
|
//# sourceMappingURL=design-system-react-components.esm.js.map
|