@nypl/design-system-react-components 0.25.3 → 0.25.7

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.
Files changed (135) hide show
  1. package/CHANGELOG.md +65 -0
  2. package/README.md +47 -11
  3. package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +4 -0
  4. package/dist/components/Breadcrumbs/BreadcrumbsTypes.d.ts +1 -0
  5. package/dist/components/Button/Button.d.ts +9 -6
  6. package/dist/components/Button/ButtonTypes.d.ts +2 -1
  7. package/dist/components/Card/Card.d.ts +0 -25
  8. package/dist/components/Icons/IconSvgs.d.ts +3 -0
  9. package/dist/components/Icons/IconTypes.d.ts +3 -0
  10. package/dist/components/Notification/Notification.d.ts +6 -4
  11. package/dist/components/ProgressIndicator/ProgressIndicator.d.ts +29 -0
  12. package/dist/components/ProgressIndicator/ProgressIndicatorTypes.d.ts +8 -0
  13. package/dist/components/SearchBar/SearchBar.d.ts +3 -3
  14. package/dist/components/Slider/Slider.d.ts +57 -0
  15. package/dist/components/Tabs/Tabs.d.ts +1 -1
  16. package/dist/components/TextInput/TextInput.d.ts +6 -0
  17. package/dist/design-system-react-components.cjs.development.js +1022 -455
  18. package/dist/design-system-react-components.cjs.development.js.map +1 -1
  19. package/dist/design-system-react-components.cjs.production.min.js +1 -1
  20. package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
  21. package/dist/design-system-react-components.esm.js +1015 -444
  22. package/dist/design-system-react-components.esm.js.map +1 -1
  23. package/dist/index.d.ts +8 -3
  24. package/dist/resources.scss +180 -170
  25. package/dist/styles.css +1 -1
  26. package/dist/theme/components/breadcrumb.d.ts +9 -0
  27. package/dist/theme/components/button.d.ts +10 -0
  28. package/dist/theme/components/progressIndicator.d.ts +50 -0
  29. package/dist/theme/components/slider.d.ts +51 -0
  30. package/dist/theme/foundations/breakpoints.d.ts +8 -8
  31. package/dist/theme/foundations/global.d.ts +6 -1
  32. package/package.json +71 -83
  33. package/src/__tests__/setup.ts +2 -2
  34. package/src/components/Accordion/Accordion.stories.mdx +30 -34
  35. package/src/components/Autosuggest/Autosuggest.stories.mdx +3 -3
  36. package/src/components/Autosuggest/Autosuggest.stories.tsx +1 -0
  37. package/src/components/Autosuggest/_Autosuggest.scss +5 -5
  38. package/src/components/Breadcrumbs/Breadcrumbs.stories.mdx +24 -8
  39. package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +33 -0
  40. package/src/components/Breadcrumbs/Breadcrumbs.tsx +5 -1
  41. package/src/components/Breadcrumbs/BreadcrumbsTypes.tsx +1 -0
  42. package/src/components/Breadcrumbs/__snapshots__/Breadcrumbs.test.tsx.snap +297 -1
  43. package/src/components/Button/Button.stories.mdx +8 -6
  44. package/src/components/Button/Button.test.tsx +20 -0
  45. package/src/components/Button/Button.tsx +14 -23
  46. package/src/components/Button/ButtonTypes.tsx +1 -0
  47. package/src/components/Button/__snapshots__/Button.test.tsx.snap +29 -4
  48. package/src/components/Card/Card.stories.mdx +1 -1
  49. package/src/components/Card/Card.tsx +3 -3
  50. package/src/components/CardEdition/CardEdition.stories.tsx +15 -47
  51. package/src/components/CardEdition/_CardEdition.scss +22 -23
  52. package/src/components/Chakra/Box.stories.mdx +14 -15
  53. package/src/components/Chakra/Center.stories.mdx +15 -8
  54. package/src/components/Chakra/Grid.stories.mdx +16 -7
  55. package/src/components/Chakra/Stack.stories.mdx +35 -18
  56. package/src/components/DatePicker/DatePicker.test.tsx +31 -30
  57. package/src/components/DatePicker/DatePicker.tsx +7 -4
  58. package/src/components/DatePicker/_DatePicker.scss +4 -4
  59. package/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap +19 -5
  60. package/src/components/Form/Form.stories.mdx +4 -5
  61. package/src/components/Grid/SimpleGrid.stories.mdx +1 -0
  62. package/src/components/Hero/HeroTypes.tsx +1 -0
  63. package/src/components/HorizontalRule/HorizontalRule.stories.mdx +2 -3
  64. package/src/components/Icons/Icon.stories.mdx +2 -3
  65. package/src/components/Icons/IconSvgs.tsx +6 -0
  66. package/src/components/Icons/IconTypes.tsx +3 -0
  67. package/src/components/Image/Image.stories.mdx +2 -3
  68. package/src/components/Input/Input.stories.tsx +20 -64
  69. package/src/components/Input/_Input.scss +23 -14
  70. package/src/components/Modal/Modal.stories.mdx +3 -3
  71. package/src/components/Modal/_Modal.scss +2 -2
  72. package/src/components/Notification/Notification.stories.mdx +1 -1
  73. package/src/components/Notification/Notification.tsx +13 -4
  74. package/src/components/Pagination/Pagination.stories.mdx +3 -2
  75. package/src/components/Pagination/Pagination.stories.tsx +1 -2
  76. package/src/components/ProgressIndicator/ProgressIndicator.stories.mdx +292 -0
  77. package/src/components/ProgressIndicator/ProgressIndicator.test.tsx +225 -0
  78. package/src/components/ProgressIndicator/ProgressIndicator.tsx +126 -0
  79. package/src/components/ProgressIndicator/ProgressIndicatorTypes.ts +8 -0
  80. package/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.test.tsx.snap +357 -0
  81. package/src/components/Radio/__snapshots__/Radio.test.tsx.snap +3 -0
  82. package/src/components/RadioGroup/RadioGroup.stories.mdx +2 -3
  83. package/src/components/RadioGroup/__snapshots__/RadioGroup.test.tsx.snap +4 -0
  84. package/src/components/SearchBar/SearchBar.Test.tsx +66 -21
  85. package/src/components/SearchBar/SearchBar.stories.mdx +110 -11
  86. package/src/components/SearchBar/SearchBar.tsx +15 -5
  87. package/src/components/Select/SelectTypes.tsx +1 -0
  88. package/src/components/Slider/Slider.stories.mdx +529 -0
  89. package/src/components/Slider/Slider.test.tsx +653 -0
  90. package/src/components/Slider/Slider.tsx +303 -0
  91. package/src/components/Slider/__snapshots__/Slider.test.tsx.snap +1946 -0
  92. package/src/components/StyleGuide/Bidirectionality.stories.mdx +1 -1
  93. package/src/components/StyleGuide/Breakpoints.stories.mdx +21 -7
  94. package/src/components/StyleGuide/Buttons.stories.mdx +9 -2
  95. package/src/components/StyleGuide/DesignTokens.stories.mdx +170 -0
  96. package/src/components/Tabs/Tabs.tsx +5 -5
  97. package/src/components/Template/Template.stories.mdx +6 -6
  98. package/src/components/TextInput/TextInput.stories.mdx +1 -1
  99. package/src/components/TextInput/TextInput.tsx +15 -2
  100. package/src/components/TextInput/TextInputTypes.tsx +2 -0
  101. package/src/components/VideoPlayer/VideoPlayer.stories.mdx +2 -3
  102. package/src/docs/Chakra.stories.mdx +2 -2
  103. package/src/index.ts +12 -6
  104. package/src/resources.scss +5 -5
  105. package/src/styles/base/{_02-breakpoints.scss → _01-breakpoints.scss} +9 -10
  106. package/src/styles/base/{_03-mixins.scss → _02-mixins.scss} +16 -5
  107. package/src/styles/base/{_04-base.scss → _03-base.scss} +7 -2
  108. package/src/styles/base/{_05-focus.scss → _04-focus.scss} +0 -15
  109. package/src/styles/base/_place-holder.scss +14 -3
  110. package/src/styles/{03-space → space}/_space-inline.scss +14 -14
  111. package/src/styles/{03-space → space}/_space-inset.scss +10 -10
  112. package/src/styles/space/_space-stack.scss +116 -0
  113. package/src/styles.scss +13 -44
  114. package/src/theme/components/breadcrumb.ts +10 -0
  115. package/src/theme/components/button.ts +10 -2
  116. package/src/theme/components/card.ts +11 -9
  117. package/src/theme/components/datePicker.ts +1 -1
  118. package/src/theme/components/list.ts +2 -2
  119. package/src/theme/components/notification.ts +5 -3
  120. package/src/theme/components/progressIndicator.ts +62 -0
  121. package/src/theme/components/skeletonLoader.ts +1 -1
  122. package/src/theme/components/slider.ts +79 -0
  123. package/src/theme/foundations/breakpoints.ts +8 -8
  124. package/src/theme/foundations/global.ts +6 -1
  125. package/src/theme/index.ts +4 -0
  126. package/src/utils/componentCategories.ts +3 -3
  127. package/src/styles/01-colors/_colors-brand.scss +0 -62
  128. package/src/styles/01-colors/_colors-utility.scss +0 -67
  129. package/src/styles/02-typography/_type-scale.css +0 -11
  130. package/src/styles/02-typography/_type-weight.css +0 -7
  131. package/src/styles/02-typography/_typefaces.css +0 -4
  132. package/src/styles/03-space/_space-stack.scss +0 -116
  133. package/src/styles/03-space/_space.css +0 -30
  134. package/src/styles/base/_card-grid.scss +0 -77
  135. package/src/styles/base/_typography.scss +0 -11
@@ -1,4 +1,4 @@
1
- import { useStyleConfig, Icon as Icon$2, Box, Accordion as Accordion$2, AccordionPanel, AccordionItem, AccordionButton, Breadcrumb as Breadcrumb$1, BreadcrumbItem, BreadcrumbLink, Button as Button$2, Link as Link$2, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, Checkbox as Checkbox$2, CheckboxGroup as CheckboxGroup$2, Stack, SimpleGrid as SimpleGrid$1, Input as Input$1, Textarea, extendTheme, ChakraProvider, Radio as Radio$2, useRadioGroup, Select as Select$2, Skeleton as Skeleton$1, Tabs as Tabs$1, Tab, TabPanel, TabList, TabPanels, Text as Text$2, useTheme } from '@chakra-ui/react';
1
+ import { useStyleConfig, Icon as Icon$2, Box, Accordion as Accordion$2, AccordionPanel, AccordionItem, AccordionButton, Breadcrumb as Breadcrumb$1, BreadcrumbItem, BreadcrumbLink, Button as Button$2, Link as Link$2, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, Checkbox as Checkbox$2, CheckboxGroup as CheckboxGroup$2, Stack, SimpleGrid as SimpleGrid$1, Input as Input$1, Textarea, extendTheme, ChakraProvider, CircularProgress, CircularProgressLabel, Progress, Radio as Radio$2, useRadioGroup, 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, Text as Text$2, useTheme } from '@chakra-ui/react';
2
2
  export { Box, ButtonGroup, Center, Circle, Grid, GridItem, HStack, Square, Stack, Tab, TabList, TabPanel, TabPanels, VStack } from '@chakra-ui/react';
3
3
  import React__default, { createElement, cloneElement, Fragment, Children, forwardRef, useState, Component, useEffect } from 'react';
4
4
  import { v4 } from 'uuid';
@@ -123,6 +123,9 @@ var IconNames;
123
123
  IconNames["AccessibilityFull"] = "accessibility_full";
124
124
  IconNames["AccessibilityPartial"] = "accessibility_partial";
125
125
  IconNames["ActionCheckCircle"] = "action_check_circle";
126
+ IconNames["ActionHelpDefault"] = "action_help_default";
127
+ IconNames["ActionHelpOutline"] = "action_help_outline";
128
+ IconNames["ActionLaunch"] = "action_launch";
126
129
  IconNames["Arrow"] = "arrow";
127
130
  IconNames["Check"] = "check";
128
131
  IconNames["Clock"] = "clock";
@@ -292,13 +295,13 @@ function _objectWithoutProperties$3(source, excluded) { if (source == null) retu
292
295
 
293
296
  function _objectWithoutPropertiesLoose$4(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
294
297
 
295
- function SvgArrow(_ref) {
298
+ function SvgActionHelpDefault(_ref) {
296
299
  var title = _ref.title,
297
300
  titleId = _ref.titleId,
298
301
  props = _objectWithoutProperties$3(_ref, _excluded$3);
299
302
 
300
303
  return /*#__PURE__*/createElement("svg", _extends$4({
301
- viewBox: "0 0 24 14",
304
+ viewBox: "0 0 24 24",
302
305
  xmlns: "http://www.w3.org/2000/svg",
303
306
  "aria-labelledby": titleId
304
307
  }, props), title ? /*#__PURE__*/createElement("title", {
@@ -306,11 +309,11 @@ function SvgArrow(_ref) {
306
309
  }, title) : null, _path$3 || (_path$3 = /*#__PURE__*/createElement("path", {
307
310
  fillRule: "evenodd",
308
311
  clipRule: "evenodd",
309
- d: "M10.526 12.871L.263 1.676 1.737.324 12 11.52 22.263.324l1.474 1.352L13.474 12.87a2 2 0 01-2.948 0z"
312
+ d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17v-2h2v2h-2zm3.17-6.83l.9-.92c.57-.57.93-1.37.93-2.25 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2s2 .9 2 2c0 .55-.22 1.05-.59 1.41l-1.24 1.26C11.45 12.4 11 13.4 11 14.5v.5h2c0-1.5.45-2.1 1.17-2.83z"
310
313
  })));
311
314
  }
312
315
 
313
- var _g, _defs;
316
+ var _path$4;
314
317
 
315
318
  var _excluded$4 = ["title", "titleId"];
316
319
 
@@ -320,37 +323,25 @@ function _objectWithoutProperties$4(source, excluded) { if (source == null) retu
320
323
 
321
324
  function _objectWithoutPropertiesLoose$5(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
322
325
 
323
- function SvgBrooklyn(_ref) {
326
+ function SvgActionHelpOutline(_ref) {
324
327
  var title = _ref.title,
325
328
  titleId = _ref.titleId,
326
329
  props = _objectWithoutProperties$4(_ref, _excluded$4);
327
330
 
328
331
  return /*#__PURE__*/createElement("svg", _extends$5({
329
- width: 328,
330
- height: 120,
331
- fill: "none",
332
+ viewBox: "0 0 24 24",
332
333
  xmlns: "http://www.w3.org/2000/svg",
333
334
  "aria-labelledby": titleId
334
335
  }, props), title ? /*#__PURE__*/createElement("title", {
335
336
  id: titleId
336
- }, title) : null, _g || (_g = /*#__PURE__*/createElement("g", {
337
- clipPath: "url(#brooklyn_svg__clip0)",
338
- fill: "#000"
339
- }, /*#__PURE__*/createElement("path", {
340
- 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"
341
- }), /*#__PURE__*/createElement("path", {
342
- 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"
343
- }), /*#__PURE__*/createElement("path", {
344
- 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"
345
- }))), _defs || (_defs = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
346
- id: "brooklyn_svg__clip0"
347
- }, /*#__PURE__*/createElement("path", {
348
- fill: "#fff",
349
- d: "M0 0h327.045v119.691H0z"
350
- })))));
337
+ }, title) : null, _path$4 || (_path$4 = /*#__PURE__*/createElement("path", {
338
+ fillRule: "evenodd",
339
+ clipRule: "evenodd",
340
+ d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm11 4v2h-2v-2h2zm-1 4c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM8 10c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.283-.79 1.973-1.56 2.646C13.712 13.283 13 13.905 13 15h-2c0-1.821.942-2.543 1.77-3.178.65-.498 1.23-.943 1.23-1.822 0-1.1-.9-2-2-2s-2 .9-2 2H8z"
341
+ })));
351
342
  }
352
343
 
353
- var _path$4;
344
+ var _path$5;
354
345
 
355
346
  var _excluded$5 = ["title", "titleId"];
356
347
 
@@ -360,7 +351,7 @@ function _objectWithoutProperties$5(source, excluded) { if (source == null) retu
360
351
 
361
352
  function _objectWithoutPropertiesLoose$6(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
362
353
 
363
- function SvgCheck(_ref) {
354
+ function SvgActionLaunch(_ref) {
364
355
  var title = _ref.title,
365
356
  titleId = _ref.titleId,
366
357
  props = _objectWithoutProperties$5(_ref, _excluded$5);
@@ -371,12 +362,14 @@ function SvgCheck(_ref) {
371
362
  "aria-labelledby": titleId
372
363
  }, props), title ? /*#__PURE__*/createElement("title", {
373
364
  id: titleId
374
- }, title) : null, _path$4 || (_path$4 = /*#__PURE__*/createElement("path", {
375
- d: "M8.795 15.875l-4.17-4.17-1.42 1.41 5.59 5.59 12-12-1.41-1.41-10.59 10.58z"
365
+ }, title) : null, _path$5 || (_path$5 = /*#__PURE__*/createElement("path", {
366
+ fillRule: "evenodd",
367
+ clipRule: "evenodd",
368
+ d: "M5 5v14h14v-7h2v7c0 1.1-.9 2-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h7v2H5zm9 0V3h7v7h-2V6.41l-9.83 9.83-1.41-1.41L17.59 5H14z"
376
369
  })));
377
370
  }
378
371
 
379
- var _path$5;
372
+ var _path$6;
380
373
 
381
374
  var _excluded$6 = ["title", "titleId"];
382
375
 
@@ -386,25 +379,25 @@ function _objectWithoutProperties$6(source, excluded) { if (source == null) retu
386
379
 
387
380
  function _objectWithoutPropertiesLoose$7(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
388
381
 
389
- function SvgClock(_ref) {
382
+ function SvgArrow(_ref) {
390
383
  var title = _ref.title,
391
384
  titleId = _ref.titleId,
392
385
  props = _objectWithoutProperties$6(_ref, _excluded$6);
393
386
 
394
387
  return /*#__PURE__*/createElement("svg", _extends$7({
395
- viewBox: "0 0 24 24",
388
+ viewBox: "0 0 24 14",
396
389
  xmlns: "http://www.w3.org/2000/svg",
397
390
  "aria-labelledby": titleId
398
391
  }, props), title ? /*#__PURE__*/createElement("title", {
399
392
  id: titleId
400
- }, title) : null, _path$5 || (_path$5 = /*#__PURE__*/createElement("path", {
393
+ }, title) : null, _path$6 || (_path$6 = /*#__PURE__*/createElement("path", {
401
394
  fillRule: "evenodd",
402
395
  clipRule: "evenodd",
403
- d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM11 7h1.5v5.25l4.5 2.67-.75 1.23L11 13V7z"
396
+ d: "M10.526 12.871L.263 1.676 1.737.324 12 11.52 22.263.324l1.474 1.352L13.474 12.87a2 2 0 01-2.948 0z"
404
397
  })));
405
398
  }
406
399
 
407
- var _path$6;
400
+ var _g, _defs;
408
401
 
409
402
  var _excluded$7 = ["title", "titleId"];
410
403
 
@@ -414,23 +407,37 @@ function _objectWithoutProperties$7(source, excluded) { if (source == null) retu
414
407
 
415
408
  function _objectWithoutPropertiesLoose$8(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
416
409
 
417
- function SvgClose(_ref) {
410
+ function SvgBrooklyn(_ref) {
418
411
  var title = _ref.title,
419
412
  titleId = _ref.titleId,
420
413
  props = _objectWithoutProperties$7(_ref, _excluded$7);
421
414
 
422
415
  return /*#__PURE__*/createElement("svg", _extends$8({
423
- viewBox: "0 0 24 24",
416
+ width: 328,
417
+ height: 120,
418
+ fill: "none",
424
419
  xmlns: "http://www.w3.org/2000/svg",
425
420
  "aria-labelledby": titleId
426
421
  }, props), title ? /*#__PURE__*/createElement("title", {
427
422
  id: titleId
428
- }, title) : null, _path$6 || (_path$6 = /*#__PURE__*/createElement("path", {
429
- d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
430
- })));
423
+ }, title) : null, _g || (_g = /*#__PURE__*/createElement("g", {
424
+ clipPath: "url(#brooklyn_svg__clip0)",
425
+ fill: "#000"
426
+ }, /*#__PURE__*/createElement("path", {
427
+ 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"
428
+ }), /*#__PURE__*/createElement("path", {
429
+ 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"
430
+ }), /*#__PURE__*/createElement("path", {
431
+ 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"
432
+ }))), _defs || (_defs = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
433
+ id: "brooklyn_svg__clip0"
434
+ }, /*#__PURE__*/createElement("path", {
435
+ fill: "#fff",
436
+ d: "M0 0h327.045v119.691H0z"
437
+ })))));
431
438
  }
432
439
 
433
- var _path$7, _path2$2, _path3$2;
440
+ var _path$7;
434
441
 
435
442
  var _excluded$8 = ["title", "titleId"];
436
443
 
@@ -440,7 +447,7 @@ function _objectWithoutProperties$8(source, excluded) { if (source == null) retu
440
447
 
441
448
  function _objectWithoutPropertiesLoose$9(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
442
449
 
443
- function SvgFileTypeAudio(_ref) {
450
+ function SvgCheck(_ref) {
444
451
  var title = _ref.title,
445
452
  titleId = _ref.titleId,
446
453
  props = _objectWithoutProperties$8(_ref, _excluded$8);
@@ -452,19 +459,11 @@ function SvgFileTypeAudio(_ref) {
452
459
  }, props), title ? /*#__PURE__*/createElement("title", {
453
460
  id: titleId
454
461
  }, title) : null, _path$7 || (_path$7 = /*#__PURE__*/createElement("path", {
455
- fillRule: "evenodd",
456
- clipRule: "evenodd",
457
- d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
458
- })), _path2$2 || (_path2$2 = /*#__PURE__*/createElement("path", {
459
- fillRule: "evenodd",
460
- clipRule: "evenodd",
461
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
462
- })), _path3$2 || (_path3$2 = /*#__PURE__*/createElement("path", {
463
- d: "M7.5 12.5v3h2L12 18v-8l-2.5 2.5h-2zm6.75 1.5A2.25 2.25 0 0013 11.985v4.025A2.237 2.237 0 0014.25 14zM13 9.615v1.03a3.503 3.503 0 010 6.71v1.03a4.498 4.498 0 000-8.77z"
462
+ d: "M8.795 15.875l-4.17-4.17-1.42 1.41 5.59 5.59 12-12-1.41-1.41-10.59 10.58z"
464
463
  })));
465
464
  }
466
465
 
467
- var _path$8, _path2$3, _path3$3;
466
+ var _path$8;
468
467
 
469
468
  var _excluded$9 = ["title", "titleId"];
470
469
 
@@ -474,7 +473,7 @@ function _objectWithoutProperties$9(source, excluded) { if (source == null) retu
474
473
 
475
474
  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; }
476
475
 
477
- function SvgFileTypeDoc(_ref) {
476
+ function SvgClock(_ref) {
478
477
  var title = _ref.title,
479
478
  titleId = _ref.titleId,
480
479
  props = _objectWithoutProperties$9(_ref, _excluded$9);
@@ -488,17 +487,11 @@ function SvgFileTypeDoc(_ref) {
488
487
  }, title) : null, _path$8 || (_path$8 = /*#__PURE__*/createElement("path", {
489
488
  fillRule: "evenodd",
490
489
  clipRule: "evenodd",
491
- d: "M3 2.188a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705v15.971a1 1 0 01-1 1H4a1 1 0 01-1-1v-20zm2 1v18h14V6.627l-3.416-3.44H5z"
492
- })), _path2$3 || (_path2$3 = /*#__PURE__*/createElement("path", {
493
- fillRule: "evenodd",
494
- clipRule: "evenodd",
495
- d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
496
- })), _path3$3 || (_path3$3 = /*#__PURE__*/createElement("path", {
497
- d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
490
+ d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM11 7h1.5v5.25l4.5 2.67-.75 1.23L11 13V7z"
498
491
  })));
499
492
  }
500
493
 
501
- var _path$9, _path2$4;
494
+ var _path$9;
502
495
 
503
496
  var _excluded$a = ["title", "titleId"];
504
497
 
@@ -508,7 +501,7 @@ function _objectWithoutProperties$a(source, excluded) { if (source == null) retu
508
501
 
509
502
  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; }
510
503
 
511
- function SvgFileTypeGenericDoc(_ref) {
504
+ function SvgClose(_ref) {
512
505
  var title = _ref.title,
513
506
  titleId = _ref.titleId,
514
507
  props = _objectWithoutProperties$a(_ref, _excluded$a);
@@ -520,17 +513,11 @@ function SvgFileTypeGenericDoc(_ref) {
520
513
  }, props), title ? /*#__PURE__*/createElement("title", {
521
514
  id: titleId
522
515
  }, title) : null, _path$9 || (_path$9 = /*#__PURE__*/createElement("path", {
523
- fillRule: "evenodd",
524
- clipRule: "evenodd",
525
- d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
526
- })), _path2$4 || (_path2$4 = /*#__PURE__*/createElement("path", {
527
- fillRule: "evenodd",
528
- clipRule: "evenodd",
529
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
516
+ d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
530
517
  })));
531
518
  }
532
519
 
533
- var _path$a, _path2$5, _path3$4, _circle, _path4;
520
+ var _path$a, _path2$2, _path3$2;
534
521
 
535
522
  var _excluded$b = ["title", "titleId"];
536
523
 
@@ -540,7 +527,7 @@ function _objectWithoutProperties$b(source, excluded) { if (source == null) retu
540
527
 
541
528
  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; }
542
529
 
543
- function SvgFileTypeImage(_ref) {
530
+ function SvgFileTypeAudio(_ref) {
544
531
  var title = _ref.title,
545
532
  titleId = _ref.titleId,
546
533
  props = _objectWithoutProperties$b(_ref, _excluded$b);
@@ -555,24 +542,16 @@ function SvgFileTypeImage(_ref) {
555
542
  fillRule: "evenodd",
556
543
  clipRule: "evenodd",
557
544
  d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
558
- })), _path2$5 || (_path2$5 = /*#__PURE__*/createElement("path", {
559
- fillRule: "evenodd",
560
- clipRule: "evenodd",
561
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
562
- })), _path3$4 || (_path3$4 = /*#__PURE__*/createElement("path", {
563
- d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
564
- })), _circle || (_circle = /*#__PURE__*/createElement("circle", {
565
- cx: 9.375,
566
- cy: 10.125,
567
- r: 1.125
568
- })), _path4 || (_path4 = /*#__PURE__*/createElement("path", {
545
+ })), _path2$2 || (_path2$2 = /*#__PURE__*/createElement("path", {
569
546
  fillRule: "evenodd",
570
547
  clipRule: "evenodd",
571
548
  d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
549
+ })), _path3$2 || (_path3$2 = /*#__PURE__*/createElement("path", {
550
+ d: "M7.5 12.5v3h2L12 18v-8l-2.5 2.5h-2zm6.75 1.5A2.25 2.25 0 0013 11.985v4.025A2.237 2.237 0 0014.25 14zM13 9.615v1.03a3.503 3.503 0 010 6.71v1.03a4.498 4.498 0 000-8.77z"
572
551
  })));
573
552
  }
574
553
 
575
- var _path$b, _path2$6, _path3$5;
554
+ var _path$b, _path2$3, _path3$3;
576
555
 
577
556
  var _excluded$c = ["title", "titleId"];
578
557
 
@@ -582,7 +561,7 @@ function _objectWithoutProperties$c(source, excluded) { if (source == null) retu
582
561
 
583
562
  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; }
584
563
 
585
- function SvgFileTypePdf(_ref) {
564
+ function SvgFileTypeDoc(_ref) {
586
565
  var title = _ref.title,
587
566
  titleId = _ref.titleId,
588
567
  props = _objectWithoutProperties$c(_ref, _excluded$c);
@@ -596,17 +575,17 @@ function SvgFileTypePdf(_ref) {
596
575
  }, title) : null, _path$b || (_path$b = /*#__PURE__*/createElement("path", {
597
576
  fillRule: "evenodd",
598
577
  clipRule: "evenodd",
599
- d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
600
- })), _path2$6 || (_path2$6 = /*#__PURE__*/createElement("path", {
578
+ d: "M3 2.188a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705v15.971a1 1 0 01-1 1H4a1 1 0 01-1-1v-20zm2 1v18h14V6.627l-3.416-3.44H5z"
579
+ })), _path2$3 || (_path2$3 = /*#__PURE__*/createElement("path", {
601
580
  fillRule: "evenodd",
602
581
  clipRule: "evenodd",
603
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
604
- })), _path3$5 || (_path3$5 = /*#__PURE__*/createElement("path", {
605
- d: "M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"
582
+ d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
583
+ })), _path3$3 || (_path3$3 = /*#__PURE__*/createElement("path", {
584
+ d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
606
585
  })));
607
586
  }
608
587
 
609
- var _path$c, _path2$7, _path3$6;
588
+ var _path$c, _path2$4;
610
589
 
611
590
  var _excluded$d = ["title", "titleId"];
612
591
 
@@ -616,7 +595,7 @@ function _objectWithoutProperties$d(source, excluded) { if (source == null) retu
616
595
 
617
596
  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; }
618
597
 
619
- function SvgFileTypeSpreadsheet(_ref) {
598
+ function SvgFileTypeGenericDoc(_ref) {
620
599
  var title = _ref.title,
621
600
  titleId = _ref.titleId,
622
601
  props = _objectWithoutProperties$d(_ref, _excluded$d);
@@ -631,16 +610,14 @@ function SvgFileTypeSpreadsheet(_ref) {
631
610
  fillRule: "evenodd",
632
611
  clipRule: "evenodd",
633
612
  d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
634
- })), _path2$7 || (_path2$7 = /*#__PURE__*/createElement("path", {
613
+ })), _path2$4 || (_path2$4 = /*#__PURE__*/createElement("path", {
635
614
  fillRule: "evenodd",
636
615
  clipRule: "evenodd",
637
616
  d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
638
- })), _path3$6 || (_path3$6 = /*#__PURE__*/createElement("path", {
639
- d: "M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"
640
617
  })));
641
618
  }
642
619
 
643
- var _path$d, _path2$8;
620
+ var _path$d, _path2$5, _path3$4, _circle, _path4;
644
621
 
645
622
  var _excluded$e = ["title", "titleId"];
646
623
 
@@ -650,7 +627,7 @@ function _objectWithoutProperties$e(source, excluded) { if (source == null) retu
650
627
 
651
628
  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; }
652
629
 
653
- function SvgFileTypeVideo(_ref) {
630
+ function SvgFileTypeImage(_ref) {
654
631
  var title = _ref.title,
655
632
  titleId = _ref.titleId,
656
633
  props = _objectWithoutProperties$e(_ref, _excluded$e);
@@ -665,14 +642,24 @@ function SvgFileTypeVideo(_ref) {
665
642
  fillRule: "evenodd",
666
643
  clipRule: "evenodd",
667
644
  d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
668
- })), _path2$8 || (_path2$8 = /*#__PURE__*/createElement("path", {
645
+ })), _path2$5 || (_path2$5 = /*#__PURE__*/createElement("path", {
669
646
  fillRule: "evenodd",
670
647
  clipRule: "evenodd",
671
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2zM7.333 10.5h7c.321 0 .584.262.584.583v2.042l2.333-2.333v6.416l-2.333-2.333v2.042c0 .32-.263.583-.584.583h-7a.585.585 0 01-.583-.583v-5.834c0-.32.263-.583.583-.583zm6.417 5.833v-4.666H7.917v4.666h5.833z"
648
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
649
+ })), _path3$4 || (_path3$4 = /*#__PURE__*/createElement("path", {
650
+ d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
651
+ })), _circle || (_circle = /*#__PURE__*/createElement("circle", {
652
+ cx: 9.375,
653
+ cy: 10.125,
654
+ r: 1.125
655
+ })), _path4 || (_path4 = /*#__PURE__*/createElement("path", {
656
+ fillRule: "evenodd",
657
+ clipRule: "evenodd",
658
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
672
659
  })));
673
660
  }
674
661
 
675
- var _path$e;
662
+ var _path$e, _path2$6, _path3$5;
676
663
 
677
664
  var _excluded$f = ["title", "titleId"];
678
665
 
@@ -682,13 +669,13 @@ function _objectWithoutProperties$f(source, excluded) { if (source == null) retu
682
669
 
683
670
  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; }
684
671
 
685
- function SvgDownload(_ref) {
672
+ function SvgFileTypePdf(_ref) {
686
673
  var title = _ref.title,
687
674
  titleId = _ref.titleId,
688
675
  props = _objectWithoutProperties$f(_ref, _excluded$f);
689
676
 
690
677
  return /*#__PURE__*/createElement("svg", _extends$g({
691
- viewBox: "0 0 14 18",
678
+ viewBox: "0 0 24 24",
692
679
  xmlns: "http://www.w3.org/2000/svg",
693
680
  "aria-labelledby": titleId
694
681
  }, props), title ? /*#__PURE__*/createElement("title", {
@@ -696,11 +683,17 @@ function SvgDownload(_ref) {
696
683
  }, title) : null, _path$e || (_path$e = /*#__PURE__*/createElement("path", {
697
684
  fillRule: "evenodd",
698
685
  clipRule: "evenodd",
699
- d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
686
+ d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
687
+ })), _path2$6 || (_path2$6 = /*#__PURE__*/createElement("path", {
688
+ fillRule: "evenodd",
689
+ clipRule: "evenodd",
690
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
691
+ })), _path3$5 || (_path3$5 = /*#__PURE__*/createElement("path", {
692
+ d: "M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"
700
693
  })));
701
694
  }
702
695
 
703
- var _path$f, _path2$9;
696
+ var _path$f, _path2$7, _path3$6;
704
697
 
705
698
  var _excluded$g = ["title", "titleId"];
706
699
 
@@ -710,26 +703,31 @@ function _objectWithoutProperties$g(source, excluded) { if (source == null) retu
710
703
 
711
704
  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; }
712
705
 
713
- function SvgErrorFilled(_ref) {
706
+ function SvgFileTypeSpreadsheet(_ref) {
714
707
  var title = _ref.title,
715
708
  titleId = _ref.titleId,
716
709
  props = _objectWithoutProperties$g(_ref, _excluded$g);
717
710
 
718
711
  return /*#__PURE__*/createElement("svg", _extends$h({
719
- viewBox: "0 0 24 25",
712
+ viewBox: "0 0 24 24",
720
713
  xmlns: "http://www.w3.org/2000/svg",
721
714
  "aria-labelledby": titleId
722
715
  }, props), title ? /*#__PURE__*/createElement("title", {
723
716
  id: titleId
724
717
  }, title) : null, _path$f || (_path$f = /*#__PURE__*/createElement("path", {
725
- d: "M12 .912c-6.624 0-12 5.376-12 12s5.376 12 12 12 12-5.376 12-12-5.376-12-12-12z"
726
- })), _path2$9 || (_path2$9 = /*#__PURE__*/createElement("path", {
727
- d: "M13.2 14.112h-2.4v-7.2h2.4v7.2zM13.2 18.912h-2.4v-2.4h2.4v2.4z",
728
- fill: "#fff"
718
+ fillRule: "evenodd",
719
+ clipRule: "evenodd",
720
+ d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
721
+ })), _path2$7 || (_path2$7 = /*#__PURE__*/createElement("path", {
722
+ fillRule: "evenodd",
723
+ clipRule: "evenodd",
724
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
725
+ })), _path3$6 || (_path3$6 = /*#__PURE__*/createElement("path", {
726
+ d: "M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"
729
727
  })));
730
728
  }
731
729
 
732
- var _path$g;
730
+ var _path$g, _path2$8;
733
731
 
734
732
  var _excluded$h = ["title", "titleId"];
735
733
 
@@ -739,13 +737,13 @@ function _objectWithoutProperties$h(source, excluded) { if (source == null) retu
739
737
 
740
738
  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; }
741
739
 
742
- function SvgErrorOutline(_ref) {
740
+ function SvgFileTypeVideo(_ref) {
743
741
  var title = _ref.title,
744
742
  titleId = _ref.titleId,
745
743
  props = _objectWithoutProperties$h(_ref, _excluded$h);
746
744
 
747
745
  return /*#__PURE__*/createElement("svg", _extends$i({
748
- viewBox: "0 0 24 25",
746
+ viewBox: "0 0 24 24",
749
747
  xmlns: "http://www.w3.org/2000/svg",
750
748
  "aria-labelledby": titleId
751
749
  }, props), title ? /*#__PURE__*/createElement("title", {
@@ -753,7 +751,11 @@ function SvgErrorOutline(_ref) {
753
751
  }, title) : null, _path$g || (_path$g = /*#__PURE__*/createElement("path", {
754
752
  fillRule: "evenodd",
755
753
  clipRule: "evenodd",
756
- d: "M11.988.912C5.364.912 0 6.288 0 12.912s5.364 12 11.988 12c6.636 0 12.012-5.376 12.012-12s-5.376-12-12.012-12zm1.212 13.2v-7.2h-2.4v7.2h2.4zm0 4.8v-2.4h-2.4v2.4h2.4zm-10.8-6c0 5.304 4.296 9.6 9.6 9.6 5.304 0 9.6-4.296 9.6-9.6 0-5.304-4.296-9.6-9.6-9.6a9.597 9.597 0 00-9.6 9.6z"
754
+ d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
755
+ })), _path2$8 || (_path2$8 = /*#__PURE__*/createElement("path", {
756
+ fillRule: "evenodd",
757
+ clipRule: "evenodd",
758
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2zM7.333 10.5h7c.321 0 .584.262.584.583v2.042l2.333-2.333v6.416l-2.333-2.333v2.042c0 .32-.263.583-.584.583h-7a.585.585 0 01-.583-.583v-5.834c0-.32.263-.583.583-.583zm6.417 5.833v-4.666H7.917v4.666h5.833z"
757
759
  })));
758
760
  }
759
761
 
@@ -767,23 +769,25 @@ function _objectWithoutProperties$i(source, excluded) { if (source == null) retu
767
769
 
768
770
  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; }
769
771
 
770
- function SvgHeadset(_ref) {
772
+ function SvgDownload(_ref) {
771
773
  var title = _ref.title,
772
774
  titleId = _ref.titleId,
773
775
  props = _objectWithoutProperties$i(_ref, _excluded$i);
774
776
 
775
777
  return /*#__PURE__*/createElement("svg", _extends$j({
776
- viewBox: "0 0 18 19",
778
+ viewBox: "0 0 14 18",
777
779
  xmlns: "http://www.w3.org/2000/svg",
778
780
  "aria-labelledby": titleId
779
781
  }, props), title ? /*#__PURE__*/createElement("title", {
780
782
  id: titleId
781
783
  }, title) : null, _path$h || (_path$h = /*#__PURE__*/createElement("path", {
782
- d: "M9 0a9 9 0 00-9 9v7c0 1.66 1.34 3 3 3h3v-8H2V9c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3V9a9 9 0 00-9-9z"
784
+ fillRule: "evenodd",
785
+ clipRule: "evenodd",
786
+ d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
783
787
  })));
784
788
  }
785
789
 
786
- var _path$i, _path2$a, _circle$1, _path3$7, _circle2, _path4$1, _path5;
790
+ var _path$i, _path2$9;
787
791
 
788
792
  var _excluded$j = ["title", "titleId"];
789
793
 
@@ -793,18 +797,101 @@ function _objectWithoutProperties$j(source, excluded) { if (source == null) retu
793
797
 
794
798
  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; }
795
799
 
796
- function SvgLogoBrooklynpl(_ref) {
800
+ function SvgErrorFilled(_ref) {
797
801
  var title = _ref.title,
798
802
  titleId = _ref.titleId,
799
803
  props = _objectWithoutProperties$j(_ref, _excluded$j);
800
804
 
801
805
  return /*#__PURE__*/createElement("svg", _extends$k({
806
+ viewBox: "0 0 24 25",
802
807
  xmlns: "http://www.w3.org/2000/svg",
803
- viewBox: "0 0 327.045 119.691",
804
808
  "aria-labelledby": titleId
805
809
  }, props), title ? /*#__PURE__*/createElement("title", {
806
810
  id: titleId
807
811
  }, title) : null, _path$i || (_path$i = /*#__PURE__*/createElement("path", {
812
+ d: "M12 .912c-6.624 0-12 5.376-12 12s5.376 12 12 12 12-5.376 12-12-5.376-12-12-12z"
813
+ })), _path2$9 || (_path2$9 = /*#__PURE__*/createElement("path", {
814
+ d: "M13.2 14.112h-2.4v-7.2h2.4v7.2zM13.2 18.912h-2.4v-2.4h2.4v2.4z",
815
+ fill: "#fff"
816
+ })));
817
+ }
818
+
819
+ var _path$j;
820
+
821
+ var _excluded$k = ["title", "titleId"];
822
+
823
+ function _extends$l() { _extends$l = Object.assign || 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); }
824
+
825
+ 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; }
826
+
827
+ 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; }
828
+
829
+ function SvgErrorOutline(_ref) {
830
+ var title = _ref.title,
831
+ titleId = _ref.titleId,
832
+ props = _objectWithoutProperties$k(_ref, _excluded$k);
833
+
834
+ return /*#__PURE__*/createElement("svg", _extends$l({
835
+ viewBox: "0 0 24 25",
836
+ xmlns: "http://www.w3.org/2000/svg",
837
+ "aria-labelledby": titleId
838
+ }, props), title ? /*#__PURE__*/createElement("title", {
839
+ id: titleId
840
+ }, title) : null, _path$j || (_path$j = /*#__PURE__*/createElement("path", {
841
+ fillRule: "evenodd",
842
+ clipRule: "evenodd",
843
+ d: "M11.988.912C5.364.912 0 6.288 0 12.912s5.364 12 11.988 12c6.636 0 12.012-5.376 12.012-12s-5.376-12-12.012-12zm1.212 13.2v-7.2h-2.4v7.2h2.4zm0 4.8v-2.4h-2.4v2.4h2.4zm-10.8-6c0 5.304 4.296 9.6 9.6 9.6 5.304 0 9.6-4.296 9.6-9.6 0-5.304-4.296-9.6-9.6-9.6a9.597 9.597 0 00-9.6 9.6z"
844
+ })));
845
+ }
846
+
847
+ var _path$k;
848
+
849
+ var _excluded$l = ["title", "titleId"];
850
+
851
+ function _extends$m() { _extends$m = Object.assign || 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); }
852
+
853
+ 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; }
854
+
855
+ 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; }
856
+
857
+ function SvgHeadset(_ref) {
858
+ var title = _ref.title,
859
+ titleId = _ref.titleId,
860
+ props = _objectWithoutProperties$l(_ref, _excluded$l);
861
+
862
+ return /*#__PURE__*/createElement("svg", _extends$m({
863
+ viewBox: "0 0 18 19",
864
+ xmlns: "http://www.w3.org/2000/svg",
865
+ "aria-labelledby": titleId
866
+ }, props), title ? /*#__PURE__*/createElement("title", {
867
+ id: titleId
868
+ }, title) : null, _path$k || (_path$k = /*#__PURE__*/createElement("path", {
869
+ d: "M9 0a9 9 0 00-9 9v7c0 1.66 1.34 3 3 3h3v-8H2V9c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3V9a9 9 0 00-9-9z"
870
+ })));
871
+ }
872
+
873
+ var _path$l, _path2$a, _circle$1, _path3$7, _circle2, _path4$1, _path5;
874
+
875
+ var _excluded$m = ["title", "titleId"];
876
+
877
+ function _extends$n() { _extends$n = Object.assign || 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); }
878
+
879
+ 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; }
880
+
881
+ 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; }
882
+
883
+ function SvgLogoBrooklynpl(_ref) {
884
+ var title = _ref.title,
885
+ titleId = _ref.titleId,
886
+ props = _objectWithoutProperties$m(_ref, _excluded$m);
887
+
888
+ return /*#__PURE__*/createElement("svg", _extends$n({
889
+ xmlns: "http://www.w3.org/2000/svg",
890
+ viewBox: "0 0 327.045 119.691",
891
+ "aria-labelledby": titleId
892
+ }, props), title ? /*#__PURE__*/createElement("title", {
893
+ id: titleId
894
+ }, title) : null, _path$l || (_path$l = /*#__PURE__*/createElement("path", {
808
895
  d: "M277.596 75.851c0-8.969-.046-17.9-.046-26.856-.017-6.498 1.196-19.651-11.682-24.62a21.82 21.82 0 00-3.504-.856 26.031 26.031 0 00-9.896.856 22.694 22.694 0 00-6.023 3.272c-.433.31-1.28 1.032-1.839 1.528a37.478 37.478 0 00-3.353 3.46c-.026 0 .27-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.683H153.65V0h-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.107A35.017 35.017 0 0042.053.39c-.714-.067-3.53-.218-4.05-.233a511.864 511.864 0 00-8.722-.078H0q0 38 .047 75.97c.716 0 34.158-.142 34.76-.142 1.346 0 2.306-.06 3.594-.06a54.638 54.638 0 008.574-.913 22.542 22.542 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.75c.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.632 2.316.066 3.614 2.608 3.71 3.974v28.438zM37.066 55.633c-2.638 2.797-7.72 2.224-11.953 2.224V46.128c7.693 0 8.73.014 9.917.52a5.162 5.162 0 013.279 4.882c0 2.352-.525 3.34-1.244 4.103zm0-28.068c-2.638 2.798-7.72 2.224-11.953 2.224V18.06c7.693 0 8.73.014 9.917.521a5.162 5.162 0 013.279 4.88c0 2.353-.525 3.342-1.244 4.104zM62.55 48.67c-.521-2.765-4.888-7.078-7.423-8.7a28.131 28.131 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-.001 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.963z"
809
896
  })), _path2$a || (_path2$a = /*#__PURE__*/createElement("path", {
810
897
  d: "M143.024 91.463a9.615 9.615 0 014.517.779c.239.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.678 4.678 0 00-2.07 2.289 6.192 6.192 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.237 6.237 0 002.336-1.557v6.619a15.868 15.868 0 01-2.648 1.012 11.664 11.664 0 01-8.177-1.48c-2.858-1.685-5.446-6.504-3.815-11.525a10.195 10.195 0 015.607-5.996 15.992 15.992 0 013.504-.78zm-69.777.623h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.898 2.898 0 002.492.779 3.404 3.404 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.062a12.708 12.708 0 01-2.468.444 22.58 22.58 0 01-3.92-.027 11.635 11.635 0 01-4.732-1.325 7.208 7.208 0 01-2.826-3.407 20.37 20.37 0 01-.539-5.653zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.909 7.909 0 00-6.896-6.604c-2.203-.325-13.693-.151-13.878-.151v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738a10.61 10.61 0 001.087-3.015c.061-.324.197-1.088.207-1.331a23.295 23.295 0 00-.125-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.551 2.551 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zm51.961 3.887a9.564 9.564 0 00-6.368-6.922 8.678 8.678 0 00-7.82 1.282V81.027h-7.243v29.827h7.243v-1.246a5.684 5.684 0 002.96 1.635 10.31 10.31 0 005.496-.42 9.963 9.963 0 006.029-8.457 15.003 15.003 0 00-.297-3.55zm-10.802 6.252a3.615 3.615 0 113.615-3.615 3.615 3.615 0 01-3.615 3.615z"
@@ -825,28 +912,28 @@ function SvgLogoBrooklynpl(_ref) {
825
912
  })));
826
913
  }
827
914
 
828
- var _path$j, _path2$b, _path3$8, _path4$2, _path5$1, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17;
915
+ var _path$m, _path2$b, _path3$8, _path4$2, _path5$1, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17;
829
916
 
830
- var _excluded$k = ["title", "titleId"];
917
+ var _excluded$n = ["title", "titleId"];
831
918
 
832
- function _extends$l() { _extends$l = Object.assign || 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); }
919
+ function _extends$o() { _extends$o = Object.assign || 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); }
833
920
 
834
- 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; }
921
+ 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; }
835
922
 
836
- 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; }
923
+ 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; }
837
924
 
838
925
  function SvgLogoNypl(_ref) {
839
926
  var title = _ref.title,
840
927
  titleId = _ref.titleId,
841
- props = _objectWithoutProperties$k(_ref, _excluded$k);
928
+ props = _objectWithoutProperties$n(_ref, _excluded$n);
842
929
 
843
- return /*#__PURE__*/createElement("svg", _extends$l({
930
+ return /*#__PURE__*/createElement("svg", _extends$o({
844
931
  viewBox: "0 0 317 178",
845
932
  xmlns: "http://www.w3.org/2000/svg",
846
933
  "aria-labelledby": titleId
847
934
  }, props), title ? /*#__PURE__*/createElement("title", {
848
935
  id: titleId
849
- }, title) : null, _path$j || (_path$j = /*#__PURE__*/createElement("path", {
936
+ }, title) : null, _path$m || (_path$m = /*#__PURE__*/createElement("path", {
850
937
  d: "M159.458 2.388h2.395l17.461 25.224V2.388h2.264v29.175h-2.221L161.722 6.165v25.398h-2.221V2.387h-.043z"
851
938
  })), _path2$b || (_path2$b = /*#__PURE__*/createElement("path", {
852
939
  fillRule: "evenodd",
@@ -899,22 +986,22 @@ function SvgLogoNypl(_ref) {
899
986
  })));
900
987
  }
901
988
 
902
- var _path$k, _defs$1;
989
+ var _path$n, _defs$1;
903
990
 
904
- var _excluded$l = ["title", "titleId"];
991
+ var _excluded$o = ["title", "titleId"];
905
992
 
906
- function _extends$m() { _extends$m = Object.assign || 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); }
993
+ function _extends$p() { _extends$p = Object.assign || 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); }
907
994
 
908
- 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; }
995
+ 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; }
909
996
 
910
- 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; }
997
+ 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; }
911
998
 
912
999
  function SvgLogoNyplNegative(_ref) {
913
1000
  var title = _ref.title,
914
1001
  titleId = _ref.titleId,
915
- props = _objectWithoutProperties$l(_ref, _excluded$l);
1002
+ props = _objectWithoutProperties$o(_ref, _excluded$o);
916
1003
 
917
- return /*#__PURE__*/createElement("svg", _extends$m({
1004
+ return /*#__PURE__*/createElement("svg", _extends$p({
918
1005
  width: 457,
919
1006
  height: 269,
920
1007
  fill: "none",
@@ -923,7 +1010,7 @@ function SvgLogoNyplNegative(_ref) {
923
1010
  "aria-labelledby": titleId
924
1011
  }, props), title ? /*#__PURE__*/createElement("title", {
925
1012
  id: titleId
926
- }, title) : null, _path$k || (_path$k = /*#__PURE__*/createElement("path", {
1013
+ }, title) : null, _path$n || (_path$n = /*#__PURE__*/createElement("path", {
927
1014
  fill: "url(#logo_nypl_negative_svg__pattern0)",
928
1015
  d: "M0 0h457v268.295H0z"
929
1016
  })), _defs$1 || (_defs$1 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("pattern", {
@@ -942,48 +1029,48 @@ function SvgLogoNyplNegative(_ref) {
942
1029
  }))));
943
1030
  }
944
1031
 
945
- var _path$l;
1032
+ var _path$o;
946
1033
 
947
- var _excluded$m = ["title", "titleId"];
1034
+ var _excluded$p = ["title", "titleId"];
948
1035
 
949
- function _extends$n() { _extends$n = Object.assign || 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); }
1036
+ function _extends$q() { _extends$q = Object.assign || 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); }
950
1037
 
951
- 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; }
1038
+ 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; }
952
1039
 
953
- 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; }
1040
+ 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; }
954
1041
 
955
1042
  function SvgLogoQueenspl(_ref) {
956
1043
  var title = _ref.title,
957
1044
  titleId = _ref.titleId,
958
- props = _objectWithoutProperties$m(_ref, _excluded$m);
1045
+ props = _objectWithoutProperties$p(_ref, _excluded$p);
959
1046
 
960
- return /*#__PURE__*/createElement("svg", _extends$n({
1047
+ return /*#__PURE__*/createElement("svg", _extends$q({
961
1048
  xmlns: "http://www.w3.org/2000/svg",
962
1049
  viewBox: "0 0 1114 601",
963
1050
  "aria-labelledby": titleId
964
1051
  }, props), title ? /*#__PURE__*/createElement("title", {
965
1052
  id: titleId
966
- }, title) : null, _path$l || (_path$l = /*#__PURE__*/createElement("path", {
1053
+ }, title) : null, _path$o || (_path$o = /*#__PURE__*/createElement("path", {
967
1054
  d: "M115.2 66.6L0 133.2l.2 134.1.3 134.1 172 99.4c94.6 54.6 172.5 99.6 173.2 99.8 1 .5 112.9-63.2 116-66 1-.9-12.3-9-55.7-34-31.4-18.1-57-33.2-57-33.5 0-.3 25.7-15.4 57-33.5l57-32.8V133.5L347.9 67C284.5 30.4 232.2.4 231.6.3c-.6-.2-53 29.7-116.4 66.3zm172.5 100.5c30.7 17.7 56.4 32.7 57.1 33.3.9.9 1.2 28.4 1 133.2l-.3 132.1-56-32.4c-30.8-17.9-56.6-32.7-57.2-33-.7-.3-26.8 14.2-58 32.2-31.3 18-57.1 33-57.6 33.2-.4.2-.6-59.3-.5-132.2l.3-132.7 57-32.9c31.4-18.1 57.3-32.9 57.7-32.9.4 0 25.9 14.5 56.5 32.1zm322.4-99.6c-8.1 2.3-14.5 6.2-20.6 12.6-23.2 24.3-12 65.1 20 73.4 7.5 1.9 17.4 1.9 24.7 0l5.7-1.5 9.6 5.5c12.2 6.9 12.6 7 17.3 4.6 7.8-4 6.8-6.5-5.3-13.3l-9.3-5.2 3.4-4c13-15.2 13.6-39.4 1.4-55.7-4.8-6.4-12.4-12.1-19.8-14.9-7.5-2.9-19.8-3.5-27.1-1.5zm25.3 13.9c3.1 1.5 7.5 4.9 10 7.7 14.6 16.2 10 40.3-9.7 50.6-4.5 2.4-6.3 2.8-14.2 2.8-7.8 0-9.7-.4-14-2.7-14.4-7.6-21.5-23.7-16.9-38.4 6-19.2 27.1-28.6 44.8-20zm319.7-14c-.8.9-1 13.3-.9 43.7l.3 42.4 4.6.3c3 .2 5-.2 5.7-1.1.8-.9 1.3-10.6 1.4-31.2l.3-29.9 25.3 31.7c24.1 30.1 25.6 31.7 28.7 31.7 2.1 0 3.5-.6 3.9-1.6.9-2.4.7-82.7-.3-84.2-.5-.9-2.5-1.2-5.7-1l-4.9.3-.5 30.6-.5 30.7L987 97.9C965.3 70.7 961.1 66 958.9 66c-1.5 0-3.2.6-3.8 1.4zm117.2-.4c-11.9 2.4-20.3 11.7-20.3 22.7 0 10.4 6.1 18.4 18.5 24.2 13.7 6.4 15.9 7.6 19.1 10.7 6.4 6 5.2 13.8-2.9 17.4-7.2 3.3-13 2.2-23.2-4.6-6.2-4.1-7.2-4-10.8.8-2.6 3.5-1.6 6.1 3.9 9.9 10.6 7.2 26 9.2 35.9 4.5 15.1-7 19.1-23.5 8.7-35.6-2.6-3.1-6.8-5.7-17.8-11.1-15.8-7.7-18.4-10-18.4-16.7 0-3.2.7-4.7 3-7.1 5.2-5.1 12.5-5.4 22.5-.7 2.9 1.4 6 2.6 6.9 2.6 2.1 0 5.9-6.5 5.1-8.9-.8-2.7-9.8-6.9-17.1-8.1-6.6-1.1-7.3-1.1-13.1 0zm-379.6 1.6c-.4.4-.7 14.4-.7 31 0 28.3.1 30.7 2.1 35.9 2.8 7.5 9.9 14.6 17.6 17.5 8.2 3.1 21.5 2.5 28.9-1.2 6-3.1 11.8-9.3 14.8-15.7 2-4.4 2.1-6 2.1-36.1V68.5l-4.8-.3c-2.7-.2-5.5.2-6.3.9-1.1.9-1.4 6.2-1.4 29.8 0 27.8-.1 28.8-2.2 33.1-1.3 2.4-4 5.7-6.1 7.4-3.2 2.6-4.9 3.1-10.5 3.4-8.8.5-14.4-2.3-18.7-9.3l-3-4.8-.5-30.1-.5-30.1-5-.3c-2.8-.2-5.4 0-5.8.4zm97.5.6c-1.8 1.8-1.7 80.7.1 83.1 1.1 1.6 3.6 1.7 27.2 1.5l26-.3v-10l-20.7-.3-20.8-.2v-27l17.8-.2 17.7-.3v-10l-17.7-.3-17.8-.2V79l20.8-.2 20.7-.3v-10l-26-.3c-19.4-.2-26.4.1-27.3 1zm82.3 0c-.3.7-.4 20-.3 42.8l.3 41.5h53v-10l-20.7-.3-20.8-.2v-27l17.8-.2 17.7-.3v-10l-17.7-.3-17.8-.2V79l20.8-.2 20.7-.3v-10l-26.3-.3c-20.5-.2-26.4 0-26.7 1zm123 187.8c-15 2.4-27.1 11.6-33.8 25.8-3 6.3-3.2 7.3-3.2 18.3 0 11.3.1 11.7 3.7 19 4.6 9.3 12.2 16.8 21.5 21.2 6.5 3 7.4 3.2 18.8 3.2 11.5 0 12.3-.1 18.5-3.2 7.3-3.6 13-8.4 13-10.8 0-2.3-4.9-6.5-7.5-6.5-1.2 0-3.4.9-4.8 2s-5.1 3.2-8.3 4.7c-11 5-25.7 1.6-34-8.1-6.1-7.1-7.9-12.1-7.9-21.6 0-10 2-15.4 8.3-22.2 10.6-11.5 28.2-13.1 41.1-3.7 2.3 1.6 4.9 2.9 6 2.9 1.8 0 7.1-5.2 7.1-6.9 0-3.2-10.6-10.4-19-12.9-5.2-1.6-13.9-2.1-19.5-1.2zm-412 2.3c-.3.6-.4 19.9-.3 42.7l.3 41.5h11l.3-14.7.3-14.6 13.2-.4c14.2-.4 17.5-1.4 24.5-7.3 11.3-9.5 11.3-30.9 0-41.1-7.5-6.7-10.1-7.4-30.6-7.4-13.7 0-18.4.3-18.7 1.3zm36.6 13c5.9 3 9.4 9.7 8.4 15.8-.9 5.3-6.4 11.5-11.3 12.9-2.1.5-7.9 1-12.9 1H595v-32h10.3c8.9 0 11 .3 14.8 2.3zm45-12.4c-1.4 2.6-1.4 49.4 0 58.1 1.8 11.1 7.4 19 17.2 24.2 3.6 2 5.7 2.3 15.2 2.3 10 0 11.5-.2 16.1-2.7 7.3-3.8 13-10.7 15.4-18.6 1.8-5.7 2-9.3 2-34.2 0-15.3-.3-28.5-.6-29.4-.7-1.9-9.4-2.2-11.2-.4-.9.9-1.2 8.9-1.2 29.8 0 27.7-.1 28.7-2.2 33-1.3 2.4-4 5.7-6.1 7.4-7.1 5.6-21 4.6-26.8-2-5.2-5.9-5.4-7.1-5.9-38.9l-.5-30-5.2-.3c-4.3-.3-5.4 0-6.2 1.7zm98.1-.7c-.9.9-1.2 11.6-1.2 41.9 0 34.2.2 40.8 1.4 41.9 1.1.8 6.8 1.1 20.8.8 17.6-.3 19.7-.5 23.4-2.5 15-8 18.1-28 5.9-38l-3.8-3.2 3.1-3.9c4.2-5.2 5.2-8.2 5.2-15.3 0-7.4-1.7-11.5-6.5-16.2-5.9-5.7-10.3-6.7-30-6.7-12 0-17.5.4-18.3 1.2zm36.5 12.4c1.5 1.1 3.5 4 4.3 6.2 1.3 3.7 1.3 4.7 0 8.4-2.5 6.9-5.4 8.2-18.1 8.6l-10.9.4v-26.4l10.9.4c9.2.3 11.5.7 13.8 2.4zm1 37.4c4.5 2.7 6.5 6.3 6.5 11.2-.1 4.9-2.5 8.6-7.3 11-2.6 1.4-5.9 1.8-14.1 1.8H775v-26h11.3c9.3 0 11.7.3 14.4 2zm48.5-49.8c-1.9 1.9-1.7 82.1.2 83.7.9.8 8.2 1.1 24.2.9l22.9-.3v-10l-17.7-.3-17.8-.2-.2-37.3-.3-37.2-5-.3c-3-.2-5.5.2-6.3 1zm69.9.7c-1.7 3.1-1.5 80.2.2 82.5 1 1.3 2.4 1.7 6.2 1.4l5-.3v-85l-5.2-.3c-4.3-.3-5.4 0-6.2 1.7zm-20 189.8c-15 32.2-36.1 80.3-35.9 81.8.3 1.7 1.2 2 5.9 2.3l5.6.3 4.5-10.3 4.5-10.3 19.7-.3 19.6-.2 4 8.7c5.7 12.5 5 11.8 11.1 11.8 5 0 5.4-.2 5.6-2.5.2-1.5-6.9-18.6-18-43l-18.2-40.5-3.6-.3c-3-.3-3.7.1-4.8 2.5zm12.3 36.6l7.4 16.7h-15c-13.9 0-15-.1-14.4-1.8 1.1-3.1 14.1-32 14.3-31.8.1.1 3.5 7.7 7.7 16.9zm-327.9-37c-.3.6-.4 19.9-.3 42.7l.3 41.5h48v-10l-17.7-.3-17.8-.2v-36.3c0-26.9-.3-36.6-1.2-37.5-1.6-1.6-10.7-1.6-11.3.1zm70.1.3c-.8 2-.8 80.8 0 82.8.7 1.9 9.4 2.2 11.2.4.9-.9 1.2-11.5 1.2-41.4 0-22.1-.3-40.9-.6-41.8-.9-2.3-10.9-2.3-11.8 0zm45.6-.4c-.9.9-1.2 11.6-1.2 41.9 0 34.2.2 40.8 1.4 41.9 1.1.8 6.8 1.1 20.8.8l19.3-.3 5.5-3.1c13.8-7.8 16.3-27 4.8-36.8l-4.1-3.5 2.8-3.3c4.1-4.8 5.5-8.9 5.5-15.8 0-7.4-1.6-11.6-6.5-16.3-5.9-5.7-10.3-6.7-30-6.7-12 0-17.5.4-18.3 1.2zm36.5 12.4c1.5 1.1 3.5 4 4.3 6.2 1.3 3.7 1.3 4.7 0 8.4-1 2.7-2.7 5-4.9 6.5-3 2-4.6 2.3-13.7 2.3H711v-26.2l10.9.4c9.2.3 11.5.7 13.8 2.4zm.2 37.2c10 5.1 10 17.3 0 22.4-2.6 1.4-5.9 1.8-14.1 1.8H711v-26h10.8c8.2 0 11.5.4 14.1 1.8zm49.3-49.6c-.9.9-1.2 11.6-1.2 41.9 0 33.9.2 40.9 1.4 41.8.8.7 3.6 1.1 6.3.9l4.8-.3.3-15.8.3-15.7H817l8 16 8 16h6c9 0 8.9-1.4-.8-19.2l-7.9-14.6 4.3-3.1c8.7-6.1 13.5-16.6 12-26.2-.8-5.7-5.7-14.1-9.9-17.3-6.4-4.9-10.4-5.6-31.1-5.6-13.6 0-19.6.4-20.4 1.2zm39.1 12.2c1.8.7 4.5 2.8 6 4.5 5.2 6.2 4.5 14-1.9 20.2l-3.5 3.4-14 .3-13.9.4V460h12c7.9 0 13.2.5 15.3 1.4zm141.3-11.9c-.8 2.1-.8 80.8 0 82.9.9 2.3 10.9 2.3 11.8 0 .3-.9.6-8.1.6-16V502h19.5l8 15.8 8 15.7h5.9c9.3 0 9.3-.7-.2-18.1-8-14.8-8-14.9-5.9-16.4 9.6-6.7 14-14.1 14-24 .1-7.8-2.4-14-7.5-19.2-6.9-6.8-8.9-7.3-32.4-7.6-18.8-.3-21.2-.1-21.8 1.3zm40 12.1c4.2 2 7 5.5 8.5 10.5 1 3.3.9 4.3-1.2 8.6-1.3 2.6-3.9 5.8-5.8 7-3.1 2.1-4.6 2.3-16.2 2.3H978v-30h12.1c9.1 0 12.9.4 15.5 1.6zm37.9-11.5c-.8 2.4.2 4 16.7 26.7l11.8 16.3v19.2c0 13.7.3 19.6 1.2 20.5 1.8 1.8 10.5 1.5 11.2-.4.3-.9.6-10.1.6-20.4v-18.9l14.5-19.8c17.1-23.2 17.5-24.6 8.4-25.1l-5.7-.3-11.7 16.1c-6.5 8.9-12.1 15.8-12.4 15.3-.4-.4-5-6.7-10.1-13.8-13-18.1-12.4-17.5-18.6-17.5-4.4 0-5.4.3-5.9 2.1z"
968
1055
  })));
969
1056
  }
970
1057
 
971
- var _path$m;
1058
+ var _path$p;
972
1059
 
973
- var _excluded$n = ["title", "titleId"];
1060
+ var _excluded$q = ["title", "titleId"];
974
1061
 
975
- function _extends$o() { _extends$o = Object.assign || 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); }
1062
+ function _extends$r() { _extends$r = Object.assign || 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); }
976
1063
 
977
- 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; }
1064
+ 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; }
978
1065
 
979
- 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; }
1066
+ 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; }
980
1067
 
981
1068
  function SvgLpaNegative(_ref) {
982
1069
  var title = _ref.title,
983
1070
  titleId = _ref.titleId,
984
- props = _objectWithoutProperties$n(_ref, _excluded$n);
1071
+ props = _objectWithoutProperties$q(_ref, _excluded$q);
985
1072
 
986
- return /*#__PURE__*/createElement("svg", _extends$o({
1073
+ return /*#__PURE__*/createElement("svg", _extends$r({
987
1074
  width: 205,
988
1075
  height: 80,
989
1076
  fill: "none",
@@ -991,28 +1078,28 @@ function SvgLpaNegative(_ref) {
991
1078
  "aria-labelledby": titleId
992
1079
  }, props), title ? /*#__PURE__*/createElement("title", {
993
1080
  id: titleId
994
- }, title) : null, _path$m || (_path$m = /*#__PURE__*/createElement("path", {
1081
+ }, title) : null, _path$p || (_path$p = /*#__PURE__*/createElement("path", {
995
1082
  d: "M49.294 14.905c-3.663-3.189-7.768-5.292-12.788-6.106-6.174-1.018-10.754.44-13.366 1.289-.543.17-.61.509-.61.95-.035 1.12.44 2.001.814 2.34.407.373.814.17 1.424-.034 2.409-.814 5.733-1.39 9.227-.983 3.325.373 6.412 1.39 8.719 2.68-3.257.474-8.142 1.73-13.264 5.427-4.207-.237-9.499.34-15.367 3.29-11.127 5.564-18.115 19.71-11.534 35.11 2.68 6.243 8.752 12.01 15.842 14.079 4.138 1.22 7.836 1.12 8.82 1.051.305.238.814.61 1.425 1.018 9.939 6.581 19.098 5.258 24.492 2.307 4.953-2.714 11.534-9.533 11.737-21.405 9.193-8.854 7.463-19.065 6.242-23.407-2.884-10.347-12.518-16.894-21.813-17.606zM59.879 51.54c.034.78-.305 1.12-1.22 1.764-1.222.849-3.088 1.866-4.92 2.443-.237.068-.339-.204-.271-.373.237-.441.577-1.12.78-1.56.407-.883.814-1.799 1.154-2.68.712-1.832 1.424-4.207 1.865-6.14.068-.306.272-.34.373-.17.204.305.883 1.832 1.357 3.358.51 1.628.848 2.917.882 3.358zm-9.498 1.052c-.712 1.459-1.357 2.68-2.035 3.528-.407.509-3.087 1.425-8.04-.678-3.46-1.46-5.428-2.986-8.379-6.853a45.943 45.943 0 01-1.594-2.273c-.407-.644-.61-1.153-1.764-.916-.848.17-2.646.882-3.63 2.341-.373.577-.102 1.052.237 1.595.645 1.085 1.629 2.374 2.545 3.46 3.222 3.867 7.293 7.123 12.076 8.752.645.203 1.866.542 2.409.678.373.102.542.543.339.746-1.255 1.357-4.512 3.562-5.496 4.071-2.374 1.221-4.783 2.07-6.58 2.34-.611.103-1.188.204-2.036-.508-1.052-.916-2.002-2.002-2.85-3.087-1.662-2.171-2.95-4.647-3.833-7.226-1.832-5.325-2.035-11.126-.78-16.588 1.153-5.054 3.528-9.803 6.988-13.67.475-.543 2.273-2.307 2.816-2.68.44-.272 1.017-.543 2.442-.272 2.307.475 6.174 1.594 10.313 4.139 5.529 3.392 8.684 7.157 9.668 8.379.78.983.814 1.662.678 2.747-.475 4.58-2.239 9.397-3.494 11.975zm-2.239-32.837c.272.034.577.102.984.644.78 1.086 2.07 3.29 2.578 4.444.916 2.171 1.628 4.953 1.934 6.344.067.339-.204.271-.306.203-.305-.339-.95-.882-1.153-1.051-.95-.95-3.698-3.155-6.92-5.02-2.884-1.663-6.276-3.02-7.667-3.393-.17-.034-.237-.305-.034-.407.61-.272 2.578-1.018 4.953-1.459 1.832-.34 3.901-.475 5.631-.305zM4.584 50.965c-1.187-7.294 1.018-14.451 5.801-19.099 2.578-2.51 5.7-4.511 9.125-5.63 1.018-.34 2.85-.815 4.071-1.019.34-.034.441.373.238.577-1.154 1.221-2.782 3.765-3.291 4.614-3.969 6.614-5.699 14.586-4.885 22.253.984 9.464 5.665 15.163 6.412 16.147.17.238.339.645-.034.712-.068 0-.441-.067-.984-.17C10.419 67.01 5.704 57.784 4.584 50.966zm30.192 22.151c-.408-.17-.374-.475 0-.61 1.051-.373 2.985-1.154 3.9-1.662a29.517 29.517 0 005.157-3.528c.814-.679 2.544-2.24 3.562-3.427.339-.407.916-1.12 2.035-1.255 2.171-.237 2.816-.339 4.342-.712 1.459-.373 3.97-1.255 5.632-2.171.203-.102.542 0 .44.509-.746 3.697-3.324 9.396-7.938 12.314-5.325 3.46-11.533 3.087-17.13.542zM64.322 47.37c-.271.44-.678.34-.848-.034-.135-.407-.305-.984-.44-1.39-.713-1.968-1.595-3.902-2.68-5.7a62.217 62.217 0 00-1.799-2.781c-.407-.611-.407-.916-.407-1.663-.034-4.24-1.357-10.075-3.46-13.84-.203-.373.102-.61.34-.51 5.665 2.613 8.718 6.446 10.176 10.076 3.257 8.074.577 13.433-.882 15.842zM93.327 42.857c0-2.578-2.002-3.8-4.614-3.8h-3.969V51.1h2.578v-4.308h1.086c3.019 0 4.919-1.323 4.919-3.935zm-2.578.034c0 1.323-.679 2.002-2.307 2.002h-1.12v-3.868h1.188c1.594-.034 2.239.645 2.239 1.866zm5.427 4.342h5.563c.306-3.256-1.051-5.156-3.799-5.156-2.442 0-4.342 1.798-4.342 4.58 0 2.815 1.662 4.647 4.614 4.647 1.797 0 2.713-.509 3.29-.848l-.78-1.56c-.441.203-1.086.61-2.307.61-1.425 0-2.103-.916-2.239-2.273zm0-1.628c.17-1.153.746-1.798 1.764-1.798 1.086 0 1.493.814 1.527 1.798h-3.29zM109 42.315c-.204-.102-.543-.238-1.187-.238-1.12 0-1.832.746-2.205 1.425v-1.188h-2.409V51.1h2.409v-5.529c.203-.407.848-1.323 1.899-1.323.509 0 .781.102.916.204l.577-2.138zm3.969 1.763h2.103v-1.797h-2.103v-.713c0-1.153.441-1.73 1.425-1.73.644 0 1.051.17 1.221.237l.543-1.797c-.204-.136-.848-.407-2.138-.407-2.238 0-3.46 1.424-3.46 3.527v.916h-1.323v1.798h1.323v7.022h2.409v-7.056zm11.364 2.545c0-2.273-1.391-4.58-4.444-4.58s-4.376 2.375-4.376 4.648c0 2.272 1.323 4.579 4.41 4.579 3.053.034 4.41-2.409 4.41-4.647zm-2.544.101c0 1.629-.475 2.748-1.866 2.748-1.357 0-1.9-1.187-1.9-2.85 0-1.628.441-2.781 1.798-2.781 1.391 0 1.968 1.221 1.968 2.883zm9.6-4.41c-.204-.101-.543-.237-1.187-.237-1.12 0-1.832.746-2.205 1.425v-1.188h-2.409V51.1h2.409v-5.529c.203-.407.848-1.323 1.899-1.323.509 0 .781.102.916.204l.577-2.138zm8.107 1.154c-.339-.814-1.017-1.391-2.272-1.391-1.425 0-2.171.78-2.646 1.289v-1.085h-2.341v8.785h2.409V45.13c.169-.237.746-1.086 1.628-1.086.712 0 1.018.442 1.018 1.324v5.665h2.408v-6.005c.339-.407.882-.983 1.628-.983.781 0 1.052.474 1.052 1.322v5.666h2.408v-6.174c0-1.629-.644-2.85-2.51-2.85-1.255.068-2.069.61-2.782 1.459zm9.567-1.188h-2.409v8.786h2.409v-8.785zm.271-2.578c0-.746-.644-1.424-1.493-1.424-.848 0-1.458.644-1.458 1.424 0 .78.61 1.459 1.458 1.459.849 0 1.493-.678 1.493-1.459zm9.668 11.364v-6.173c0-1.629-.712-2.85-2.646-2.85-1.459 0-2.341.78-2.815 1.323v-1.085h-2.341v8.785h2.408v-5.902c.17-.238.882-1.086 1.798-1.086.882 0 1.188.441 1.188 1.323v5.665h2.408zm6.751-8.785c-.441-.136-.984-.204-1.561-.204-2.442 0-3.901 1.289-3.901 3.189 0 1.153.577 2.069 1.561 2.646-.509.305-.984.814-.984 1.662 0 .644.305 1.052.78 1.323-.882.475-1.493 1.187-1.493 2.137 0 1.594 1.459 2.34 3.868 2.34 2.883 0 4.817-1.322 4.817-3.188 0-2.612-2.307-2.612-4.139-2.714-1.255-.068-1.764-.17-1.764-.644 0-.238.17-.408.339-.51.34.069.679.102 1.052.102 2.442 0 3.799-1.288 3.799-3.188 0-.51-.101-.984-.339-1.425h1.187v-1.56h-3.222v.034zm-1.561 4.613c-.984 0-1.594-.61-1.594-1.628 0-1.018.61-1.629 1.594-1.629.984 0 1.595.611 1.595 1.629 0 1.017-.577 1.628-1.595 1.628zm-1.017 4.478c.373.068.78.102 1.187.136 1.289.101 2.103.067 2.103.983 0 .746-.814 1.29-2.307 1.29-1.221 0-1.73-.476-1.73-1.188.034-.509.272-.916.747-1.221zm13.162-2.544h4.817l.814 2.272h2.781l-4.715-12.042h-2.476l-4.58 12.042h2.578l.781-2.272zm4.07-2.036h-3.358l1.018-2.883c.373-1.018.61-1.934.644-2.07h.034c.034.136.272 1.052.645 2.07l1.017 2.883zm11.025-4.478c-.203-.101-.543-.237-1.187-.237-1.119 0-1.832.746-2.205 1.425v-1.188h-2.409V51.1h2.409v-5.529c.204-.407.848-1.323 1.9-1.323.508 0 .78.102.916.204l.576-2.138zm1.662 1.764v4.478c0 1.696.713 2.748 2.782 2.748 1.086 0 1.832-.305 2.205-.509l-.543-1.798c-.169.102-.644.34-1.153.34-.678 0-.882-.374-.882-1.256v-4.003h2.069v-1.797h-2.069v-2.545h-2.375v2.545h-1.424v1.797h1.39zM205 48.488c0-1.492-1.017-2.103-2.408-2.68-1.018-.407-1.798-.576-1.798-1.153 0-.475.373-.78 1.221-.78.848 0 1.527.34 1.866.577l.848-1.629c-.407-.237-1.323-.712-2.816-.712-2.001 0-3.29 1.052-3.29 2.68 0 1.323.746 2.035 1.967 2.612 1.256.61 2.205.746 2.205 1.357 0 .509-.508.78-1.458.78-.984 0-1.832-.475-2.171-.712l-.815 1.662c.543.373 1.561.814 3.121.814 2.239 0 3.528-.984 3.528-2.816zM85.117 32.409h5.801v-.848h-4.817V20.366h-.984V32.41zm8.04-10.414c.407 0 .712-.34.712-.747a.717.717 0 00-.712-.712.717.717 0 00-.712.712c0 .407.305.747.712.747zm-.475 10.414h.95v-8.616h-.95v8.616zm6.174.204c2.646 0 4.274-2.104 4.274-4.546 0-2.51-1.187-4.478-3.663-4.478-.882 0-1.73.407-2.273.984v-5.19h-.95v12.551c.644.407 1.594.679 2.612.679zm.034-.815c-.679 0-1.29-.135-1.696-.339v-6.038c.475-.543 1.357-.984 2.103-.984 2.103 0 2.815 1.798 2.815 3.664.034 1.798-1.017 3.697-3.222 3.697zm6.411.611h.95v-6.004c.238-.51 1.018-1.9 2.205-1.9.373 0 .577.068.712.136l.238-.882c-.136-.068-.441-.136-.814-.136-1.221 0-2.002 1.052-2.307 1.696v-1.492h-.984v8.582zm7.328.204c1.017 0 2.001-.51 2.612-1.29.034.306.067.815.135 1.086h.95c-.102-.373-.169-.984-.169-1.73v-4.342c0-1.866-.984-2.748-2.748-2.748-1.12 0-2.07.373-2.816 1.086l.509.644c.712-.678 1.425-.916 2.239-.916 1.289 0 1.9.645 1.9 2.036v.983h-.407c-2.002 0-4.546.645-4.546 2.952-.068 1.357.916 2.239 2.341 2.239zm.135-.815c-.746 0-1.56-.508-1.56-1.458 0-1.595 1.628-2.171 3.562-2.171h.407v2.306c-.645.848-1.459 1.323-2.409 1.323zm5.903.611h.95v-6.004c.237-.51 1.017-1.9 2.205-1.9.373 0 .576.068.712.136l.237-.882c-.135-.068-.441-.136-.814-.136-1.221 0-2.001 1.052-2.306 1.696v-1.492h-.95v8.582h-.034zm5.292 4.139c1.866 0 2.544-1.29 3.155-2.918l3.697-9.871h-.984l-2.646 7.395-2.713-7.395h-1.018l3.223 8.548-.441 1.221c-.509 1.357-1.018 2.172-2.273 2.172-.339 0-.475-.034-.611-.068l-.136.78c.17.102.374.136.747.136zm12.856-4.139h.916v-7.87h2.239v-.746h-2.239v-1.357c0-1.56.645-2.375 1.968-2.375.509 0 .916.136 1.085.238l.238-.814c-.238-.102-.679-.238-1.323-.238-1.9 0-2.917 1.187-2.917 3.155v1.458h-1.493v.747h1.493v7.802h.033zm7.633.204c2.714 0 3.935-2.375 3.935-4.546 0-2.137-1.255-4.478-3.969-4.478s-3.867 2.34-3.867 4.512c.034 2.17 1.221 4.512 3.901 4.512zm.034-.815c-1.934 0-2.917-1.764-2.917-3.731 0-1.934.882-3.664 2.849-3.664 1.968 0 2.985 1.764 2.985 3.698 0 1.967-.949 3.697-2.917 3.697zm6.072.611h.95v-6.004c.238-.51 1.018-1.9 2.205-1.9.373 0 .577.068.712.136l.238-.882c-.136-.068-.441-.136-.814-.136-1.222 0-2.002 1.052-2.307 1.696v-1.492h-.95v8.582h-.034zm11.975.204c.814 0 1.425-.34 1.662-.51l-.373-.712c-.17.136-.678.407-1.187.407-.781 0-1.052-.474-1.052-1.356v-5.87h2.205v-.745h-2.205V21.35h-.95v2.443h-1.458v.746h1.458v5.936c0 1.357.611 2.138 1.9 2.138zm3.494-.204h.95v-6.276c.305-.475 1.357-1.696 2.646-1.696s1.764.78 1.764 2.07v5.902h.95v-6.106c0-1.56-.713-2.714-2.511-2.714-1.458 0-2.442.984-2.849 1.56v-5.766h-.95v13.026zm12.28.204c1.391 0 2.375-.475 2.917-.882l-.407-.747c-.475.373-1.391.814-2.476.814-2.069 0-2.883-1.797-2.917-3.765v-.204h5.936c.034-.17.034-.305.034-.474 0-2.205-1.187-3.766-3.257-3.766-2.306 0-3.697 2.002-3.697 4.41 0 2.51 1.221 4.614 3.867 4.614zm-2.816-5.564c.238-1.492 1.12-2.646 2.612-2.646 1.629 0 2.307 1.323 2.341 2.646h-4.953zM85.083 13.752h.916V3.303l7.225 10.448h.916V1.71h-.95v10.38L86.033 1.71h-.984v12.043h.034zm14.62.17c1.391 0 2.375-.476 2.918-.883l-.407-.746c-.475.373-1.391.814-2.477.814-2.069 0-2.883-1.798-2.917-3.765v-.204h5.937c.033-.17.033-.305.033-.475 0-2.205-1.187-3.765-3.256-3.765-2.307 0-3.698 2.001-3.698 4.41 0 2.51 1.222 4.613 3.868 4.613zm-2.815-5.53c.237-1.493 1.12-2.646 2.612-2.646 1.628 0 2.307 1.323 2.341 2.646h-4.953zm9.43 5.36h.882l2.341-7.26 2.341 7.26h.882l2.612-8.617h-.95l-2.103 7.192-2.273-7.192h-.916l-2.273 7.158-2.103-7.158h-1.018l2.578 8.617zm16.928 0h.984V9.206l4.003-7.497h-1.018l-3.426 6.513h-.034l-3.426-6.513h-1.12l4.037 7.497v4.546zm7.87.17c2.714 0 3.935-2.376 3.935-4.547 0-2.137-1.255-4.477-3.969-4.477s-3.867 2.34-3.867 4.511c0 2.205 1.187 4.512 3.901 4.512zm0-.815c-1.968 0-2.917-1.764-2.917-3.732 0-1.933.882-3.663 2.849-3.663 1.968 0 2.985 1.764 2.985 3.697 0 1.968-.95 3.698-2.917 3.698zm5.733.645h.95V7.747c.237-.509 1.017-1.9 2.205-1.9.373 0 .576.068.712.136l.238-.882c-.136-.068-.441-.135-.815-.135-1.221 0-2.001 1.051-2.306 1.696V5.169h-.984v8.582zm10.787 0h1.188L144.821 8.9l3.799-3.766h-1.187l-3.766 3.766 3.969 4.85zm-5.02 0h.95V.758h-.95v12.992zm12.212 0h.984V8.628h1.526c2.714 0 4.241-1.357 4.241-3.528 0-2.137-1.595-3.392-4.105-3.392h-2.646v12.043zm.984-5.97V2.556h1.526c2.307 0 3.189 1.086 3.189 2.578 0 1.595-.95 2.646-3.223 2.646h-1.492zm9.837 6.14c1.459 0 2.443-.95 2.85-1.595 0 .475.068 1.12.136 1.425h.949c-.101-.34-.169-.984-.169-1.663V5.135h-.95v6.242c-.305.509-1.357 1.73-2.646 1.73-1.323 0-1.764-.814-1.764-2.07V5.136h-.95v6.072c0 1.56.713 2.714 2.544 2.714zm8.956 0c2.646 0 4.274-2.104 4.274-4.547 0-2.51-1.187-4.477-3.663-4.477a3.2 3.2 0 00-2.273.983V.691h-.95v12.552c.61.44 1.56.678 2.612.678zm.034-.815c-.679 0-1.289-.136-1.662-.34V6.764c.475-.542 1.357-.983 2.103-.983 2.103 0 2.815 1.798 2.815 3.663-.033 1.798-1.085 3.664-3.256 3.664zm6.038.645h.95V.758h-.95v12.992zm4.139-10.449c.407 0 .712-.339.712-.746a.716.716 0 00-.712-.712.717.717 0 00-.713.712c0 .441.34.746.713.746zm-.475 10.448h.95V5.136h-.95v8.617zm6.547.17c1.289 0 2.205-.475 2.68-.882l-.407-.712c-.373.339-1.222.78-2.205.78-1.9 0-2.748-1.832-2.748-3.732 0-2.001.882-3.663 2.782-3.663.949 0 1.594.373 2.103.78l.475-.678c-.475-.407-1.289-.916-2.578-.916-2.205 0-3.8 1.764-3.8 4.511 0 2.341 1.221 4.512 3.698 4.512z",
996
1083
  fill: "#fff"
997
1084
  })));
998
1085
  }
999
1086
 
1000
- var _path$n, _path2$c;
1087
+ var _path$q, _path2$c;
1001
1088
 
1002
- var _excluded$o = ["title", "titleId"];
1089
+ var _excluded$r = ["title", "titleId"];
1003
1090
 
1004
- function _extends$p() { _extends$p = Object.assign || 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); }
1091
+ function _extends$s() { _extends$s = Object.assign || 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); }
1005
1092
 
1006
- 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; }
1093
+ 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; }
1007
1094
 
1008
- 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; }
1095
+ 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; }
1009
1096
 
1010
1097
  function SvgLpaPositive(_ref) {
1011
1098
  var title = _ref.title,
1012
1099
  titleId = _ref.titleId,
1013
- props = _objectWithoutProperties$o(_ref, _excluded$o);
1100
+ props = _objectWithoutProperties$r(_ref, _excluded$r);
1014
1101
 
1015
- return /*#__PURE__*/createElement("svg", _extends$p({
1102
+ return /*#__PURE__*/createElement("svg", _extends$s({
1016
1103
  width: 186,
1017
1104
  height: 74,
1018
1105
  fill: "none",
@@ -1020,7 +1107,7 @@ function SvgLpaPositive(_ref) {
1020
1107
  "aria-labelledby": titleId
1021
1108
  }, props), title ? /*#__PURE__*/createElement("title", {
1022
1109
  id: titleId
1023
- }, title) : null, _path$n || (_path$n = /*#__PURE__*/createElement("path", {
1110
+ }, title) : null, _path$q || (_path$q = /*#__PURE__*/createElement("path", {
1024
1111
  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",
1025
1112
  fill: "#008375"
1026
1113
  })), _path2$c || (_path2$c = /*#__PURE__*/createElement("path", {
@@ -1031,20 +1118,20 @@ function SvgLpaPositive(_ref) {
1031
1118
 
1032
1119
  var _rect;
1033
1120
 
1034
- var _excluded$p = ["title", "titleId"];
1121
+ var _excluded$s = ["title", "titleId"];
1035
1122
 
1036
- function _extends$q() { _extends$q = Object.assign || 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); }
1123
+ function _extends$t() { _extends$t = Object.assign || 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); }
1037
1124
 
1038
- 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; }
1125
+ 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; }
1039
1126
 
1040
- 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; }
1127
+ 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; }
1041
1128
 
1042
1129
  function SvgMinus(_ref) {
1043
1130
  var title = _ref.title,
1044
1131
  titleId = _ref.titleId,
1045
- props = _objectWithoutProperties$p(_ref, _excluded$p);
1132
+ props = _objectWithoutProperties$s(_ref, _excluded$s);
1046
1133
 
1047
- return /*#__PURE__*/createElement("svg", _extends$q({
1134
+ return /*#__PURE__*/createElement("svg", _extends$t({
1048
1135
  viewBox: "0 -11 24 24",
1049
1136
  width: 24,
1050
1137
  height: 2,
@@ -1059,22 +1146,22 @@ function SvgMinus(_ref) {
1059
1146
  })));
1060
1147
  }
1061
1148
 
1062
- var _path$o, _mask, _g$1;
1149
+ var _path$r, _mask, _g$1;
1063
1150
 
1064
- var _excluded$q = ["title", "titleId"];
1151
+ var _excluded$t = ["title", "titleId"];
1065
1152
 
1066
- function _extends$r() { _extends$r = Object.assign || 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); }
1153
+ function _extends$u() { _extends$u = Object.assign || 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); }
1067
1154
 
1068
- 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; }
1155
+ 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; }
1069
1156
 
1070
- 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; }
1157
+ 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; }
1071
1158
 
1072
1159
  function SvgNyplCircleNegative(_ref) {
1073
1160
  var title = _ref.title,
1074
1161
  titleId = _ref.titleId,
1075
- props = _objectWithoutProperties$q(_ref, _excluded$q);
1162
+ props = _objectWithoutProperties$t(_ref, _excluded$t);
1076
1163
 
1077
- return /*#__PURE__*/createElement("svg", _extends$r({
1164
+ return /*#__PURE__*/createElement("svg", _extends$u({
1078
1165
  width: 125,
1079
1166
  height: 126,
1080
1167
  fill: "none",
@@ -1082,7 +1169,7 @@ function SvgNyplCircleNegative(_ref) {
1082
1169
  "aria-labelledby": titleId
1083
1170
  }, props), title ? /*#__PURE__*/createElement("title", {
1084
1171
  id: titleId
1085
- }, title) : null, _path$o || (_path$o = /*#__PURE__*/createElement("path", {
1172
+ }, title) : null, _path$r || (_path$r = /*#__PURE__*/createElement("path", {
1086
1173
  fillRule: "evenodd",
1087
1174
  clipRule: "evenodd",
1088
1175
  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",
@@ -1107,22 +1194,22 @@ function SvgNyplCircleNegative(_ref) {
1107
1194
  }))));
1108
1195
  }
1109
1196
 
1110
- var _mask$1, _g$2, _path$p;
1197
+ var _mask$1, _g$2, _path$s;
1111
1198
 
1112
- var _excluded$r = ["title", "titleId"];
1199
+ var _excluded$u = ["title", "titleId"];
1113
1200
 
1114
- function _extends$s() { _extends$s = Object.assign || 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); }
1201
+ function _extends$v() { _extends$v = Object.assign || 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); }
1115
1202
 
1116
- 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; }
1203
+ 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; }
1117
1204
 
1118
- 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; }
1205
+ 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; }
1119
1206
 
1120
1207
  function SvgNyplCirclePositive(_ref) {
1121
1208
  var title = _ref.title,
1122
1209
  titleId = _ref.titleId,
1123
- props = _objectWithoutProperties$r(_ref, _excluded$r);
1210
+ props = _objectWithoutProperties$u(_ref, _excluded$u);
1124
1211
 
1125
- return /*#__PURE__*/createElement("svg", _extends$s({
1212
+ return /*#__PURE__*/createElement("svg", _extends$v({
1126
1213
  width: 48,
1127
1214
  height: 49,
1128
1215
  fill: "none",
@@ -1149,7 +1236,7 @@ function SvgNyplCirclePositive(_ref) {
1149
1236
  clipRule: "evenodd",
1150
1237
  d: "M39.765 39.222c-.67.668-1.05.144-1.269-.285-.937-1.993-1.853-3.66-3.33-5.276-.256-.26-.06-.623.317-.586.48.038.796.012 1.325-.215.447-.192.96-.819 1.216-1.72.186-.656.195-.85.597-.89.1-.01.284.015.395.047.49.14 1.017.54 1.401.835.987.753 2.459 2.415 2.717 2.953.163.343.007.575-.086.77-.516 1.055-2.144 3.241-3.283 4.367zm-27.24-13.927c-1.408-3.426-.489-6.512.133-7.682.314-.59.62-.977 1.02-.866.436.122.536.567.596 1.392.443 6.85 4.59 9.157 9.798 11.575 4.109 2.099 8.784 4.498 12.702 10.31.593.84.678 1.35.009 1.83-2.389 1.63-4.553 2.765-7.719 3.503-.477.111-.968.028-1.39-1.06-4.399-11.324-11.783-10.814-15.15-19.002zM2.439 19.71c.05-.278.07-.356.238-.574.266-.396 3.485-4.006 8.475-4.88.657-.095 1.13-.05 1.238.214.188.46-.194.727-.654.992-8.003 4.78-7.436 11.885-7.512 14.791.024 1.189-.835 1.405-1.05.845-.94-2.56-1.729-6.572-.735-11.388zM7.85 9.238c.164-.173.271-.253.514-.322 3.074-.762 6.157-.277 8.378.713.498.22.723.533.395.742-.416.242-1.677 1.062-2.375 1.711-.202.175-.564.184-.777.156-2.603-.343-3.955-.546-7.868.936-.6.253-1.14-.09-.864-.562.521-.933 1.733-2.492 2.597-3.374zm22.898 18.96c.133-.38.287-.606.583-.791.56-.35 1.488-.366 2.384-.427.869-.058 1.797-.11 2.415-.395.373-.171.747-.66 1.325-.412.274.118.423.369.505.618.091.277.158.558.13.93-.084 1.074-.957 1.598-1.114 2.602-.014.155-.04.38-.13.469-.666.677-1.984.535-3.175.415-.427-.042-.849-.054-1.137-.191-.208-.098-.395-.296-.568-.456-.381-.353-.597-.613-.979-1.041-.13-.145-.423-.408-.442-.567-.017-.153.147-.592.203-.753zM12.908 6.17c-.673-.077-.683-.568-.398-.76.73-.512 1.917-1.13 3.11-1.603.358-.141.543-.178.87-.145.88.088 2.336.68 4.007 1.87 2.004 1.43 3.787 4.144 2.594 3.924-.754-.13-.425-.094-1.31-.191-.902-.08-1.495.012-1.911-.03-.182-.015-.325-.136-.452-.24-1.692-1.515-3.646-2.477-6.51-2.825zm5.314 6.118c.794-.628 3.085-1.501 5.812-.83.772.19 2.79.848 4.13 1.505 1.315.602 2.251 1.72 3.473 2.396 1.542.856 3.662 1.256 5.294 2.054.329.16 1.197.741.954.865-.824.362-2.255.153-3.112-.043-.432-.1-.97-.21-1.184.175-.231.416-.065 1.054.114 1.443.213.465.511.799.898.977.53.245 1.256.257 1.744.538.908.521.943 2.228.348 3.074-.498.71-1.98.838-3.354.772-1.329-.064-2.87-.203-3.85.205-.965.401-1.43 1.079-2.004 1.92-.076.105-.202.127-.322.045-3.41-2.048-7.716-3.102-10.016-6.349-.567-.8-.924-1.775-1.115-2.933-.453-2.739.706-4.643 2.19-5.814zm20.12 10.245a6.726 6.726 0 01-.048-.431c.001-.151.312-.357.458-.473.22-.175.475-.367.642-.451.06-.038.1.05.108.067.614.931.384 3.233-.06 4.328-.051.111-.145.154-.183.073-.227-.494-.563-.939-.948-1.183-.072-.055-.077-.17-.072-.191.125-.52.19-1.097.103-1.74zm6.764 7.362c-.18.562-.395 1.268-.854.94-.854-.634-2.75-1.853-4.587-2.53-.099-.023-.088-.16-.053-.236.13-.289.189-.555.245-.896.052-.32.283-.533.441-.789.471-.75.726-2.06.829-2.878a7.214 7.214 0 00-.131-2.284c-.07-.298-.285-.682-.28-1.011.006-.323.158-.66.19-1.04.09-1.101-1.3-2.019-2.059-2.373-1.721-.803-3.55-1.52-5.41-2.5-1.049-.554-1.89-1.767-2.733-2.418-.85-.656-3.584-1.74-4.677-2.028-.246-.077-.334-.18-.375-.376-.45-2.148-1.72-4.514-4.089-6.343-.767-.596.094-.935 1.15-.986 16.657-.57 26.242 14.746 22.393 27.748zM9.883 40.854c-.437-.358-.625-.66-.877-1.084-2.04-3.258-3.183-14.797-.554-18.71.836-1.372 1.723-.74 1.428.32-.503 2.38-.195 3.713.963 6.295 1.82 3.837 7.437 9.164 8.924 11.096 2.55 3.313 3.397 5.727 3.386 6.378-.014.499-.11.817-.985.743-4.615-.366-9.077-2.278-12.285-5.038zM23.896.003C10.73.003 0 10.7 0 24.005c0 13.303 10.794 24.007 23.911 24.007C37.225 48.012 48 37.313 48 24.01 48 10.706 37.21.003 23.896.003z",
1151
1238
  fill: "#000"
1152
- }))), _path$p || (_path$p = /*#__PURE__*/createElement("path", {
1239
+ }))), _path$s || (_path$s = /*#__PURE__*/createElement("path", {
1153
1240
  fillRule: "evenodd",
1154
1241
  clipRule: "evenodd",
1155
1242
  d: "M25.05 16.998c.593.196 1.235.362 1.689.615.269.15.54.553.915.505.372-.048.605-.785.678-1.167.106-.55.048-1.254-.141-1.609-.315-.588-1.21-.722-2.147-.677-.637.03-.995.086-1.483.236-.52.16-1.24.503-.931 1.23.206.488.907.697 1.42.867z",
@@ -1157,22 +1244,22 @@ function SvgNyplCirclePositive(_ref) {
1157
1244
  })));
1158
1245
  }
1159
1246
 
1160
- var _path$q, _defs$2;
1247
+ var _path$t, _defs$2;
1161
1248
 
1162
- var _excluded$s = ["title", "titleId"];
1249
+ var _excluded$v = ["title", "titleId"];
1163
1250
 
1164
- function _extends$t() { _extends$t = Object.assign || 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); }
1251
+ function _extends$w() { _extends$w = Object.assign || 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); }
1165
1252
 
1166
- 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; }
1253
+ 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; }
1167
1254
 
1168
- 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; }
1255
+ 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; }
1169
1256
 
1170
1257
  function SvgNyplFullLockUpNegative(_ref) {
1171
1258
  var title = _ref.title,
1172
1259
  titleId = _ref.titleId,
1173
- props = _objectWithoutProperties$s(_ref, _excluded$s);
1260
+ props = _objectWithoutProperties$v(_ref, _excluded$v);
1174
1261
 
1175
- return /*#__PURE__*/createElement("svg", _extends$t({
1262
+ return /*#__PURE__*/createElement("svg", _extends$w({
1176
1263
  width: 457,
1177
1264
  height: 269,
1178
1265
  fill: "none",
@@ -1181,7 +1268,7 @@ function SvgNyplFullLockUpNegative(_ref) {
1181
1268
  "aria-labelledby": titleId
1182
1269
  }, props), title ? /*#__PURE__*/createElement("title", {
1183
1270
  id: titleId
1184
- }, title) : null, _path$q || (_path$q = /*#__PURE__*/createElement("path", {
1271
+ }, title) : null, _path$t || (_path$t = /*#__PURE__*/createElement("path", {
1185
1272
  fill: "url(#nypl_full_lock_up_negative_svg__pattern0)",
1186
1273
  d: "M0 .379h457v268.295H0z"
1187
1274
  })), _defs$2 || (_defs$2 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("pattern", {
@@ -1200,22 +1287,22 @@ function SvgNyplFullLockUpNegative(_ref) {
1200
1287
  }))));
1201
1288
  }
1202
1289
 
1203
- var _path$r, _path2$d, _path3$9, _path4$3, _path5$2, _path6$1, _path7$1, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14$1, _path15$1, _path16$1, _path17$1;
1290
+ var _path$u, _path2$d, _path3$9, _path4$3, _path5$2, _path6$1, _path7$1, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14$1, _path15$1, _path16$1, _path17$1;
1204
1291
 
1205
- var _excluded$t = ["title", "titleId"];
1292
+ var _excluded$w = ["title", "titleId"];
1206
1293
 
1207
- function _extends$u() { _extends$u = Object.assign || 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); }
1294
+ function _extends$x() { _extends$x = Object.assign || 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); }
1208
1295
 
1209
- 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; }
1296
+ 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; }
1210
1297
 
1211
- 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; }
1298
+ 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; }
1212
1299
 
1213
1300
  function SvgNyplFullLockUp(_ref) {
1214
1301
  var title = _ref.title,
1215
1302
  titleId = _ref.titleId,
1216
- props = _objectWithoutProperties$t(_ref, _excluded$t);
1303
+ props = _objectWithoutProperties$w(_ref, _excluded$w);
1217
1304
 
1218
- return /*#__PURE__*/createElement("svg", _extends$u({
1305
+ return /*#__PURE__*/createElement("svg", _extends$x({
1219
1306
  width: 457,
1220
1307
  height: 258,
1221
1308
  fill: "none",
@@ -1223,7 +1310,7 @@ function SvgNyplFullLockUp(_ref) {
1223
1310
  "aria-labelledby": titleId
1224
1311
  }, props), title ? /*#__PURE__*/createElement("title", {
1225
1312
  id: titleId
1226
- }, title) : null, _path$r || (_path$r = /*#__PURE__*/createElement("path", {
1313
+ }, title) : null, _path$u || (_path$u = /*#__PURE__*/createElement("path", {
1227
1314
  d: "M229.882 3.455h3.452l25.173 36.473V3.455h3.264V45.64h-3.201L233.146 8.917V45.64h-3.201V3.455h-.063z",
1228
1315
  fill: "#000"
1229
1316
  })), _path2$d || (_path2$d = /*#__PURE__*/createElement("path", {
@@ -1293,22 +1380,22 @@ function SvgNyplFullLockUp(_ref) {
1293
1380
  })));
1294
1381
  }
1295
1382
 
1296
- var _path$s, _path2$e, _path3$a, _path4$4, _path5$3, _path6$2, _path7$2, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$2, _path15$2;
1383
+ var _path$v, _path2$e, _path3$a, _path4$4, _path5$3, _path6$2, _path7$2, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$2, _path15$2;
1297
1384
 
1298
- var _excluded$u = ["title", "titleId"];
1385
+ var _excluded$x = ["title", "titleId"];
1299
1386
 
1300
- function _extends$v() { _extends$v = Object.assign || 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); }
1387
+ function _extends$y() { _extends$y = Object.assign || 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); }
1301
1388
 
1302
- 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; }
1389
+ 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; }
1303
1390
 
1304
- 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; }
1391
+ 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; }
1305
1392
 
1306
1393
  function SvgNyplNoLionNegative(_ref) {
1307
1394
  var title = _ref.title,
1308
1395
  titleId = _ref.titleId,
1309
- props = _objectWithoutProperties$u(_ref, _excluded$u);
1396
+ props = _objectWithoutProperties$x(_ref, _excluded$x);
1310
1397
 
1311
- return /*#__PURE__*/createElement("svg", _extends$v({
1398
+ return /*#__PURE__*/createElement("svg", _extends$y({
1312
1399
  width: 364,
1313
1400
  height: 300,
1314
1401
  fill: "none",
@@ -1316,7 +1403,7 @@ function SvgNyplNoLionNegative(_ref) {
1316
1403
  "aria-labelledby": titleId
1317
1404
  }, props), title ? /*#__PURE__*/createElement("title", {
1318
1405
  id: titleId
1319
- }, title) : null, _path$s || (_path$s = /*#__PURE__*/createElement("path", {
1406
+ }, title) : null, _path$v || (_path$v = /*#__PURE__*/createElement("path", {
1320
1407
  d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
1321
1408
  fill: "#fff"
1322
1409
  })), _path2$e || (_path2$e = /*#__PURE__*/createElement("path", {
@@ -1378,22 +1465,22 @@ function SvgNyplNoLionNegative(_ref) {
1378
1465
  })));
1379
1466
  }
1380
1467
 
1381
- var _path$t, _path2$f, _path3$b, _path4$5, _path5$4, _path6$3, _path7$3, _path8$3, _path9$3, _path10$3, _path11$3, _path12$3, _path13$3, _path14$3, _path15$3;
1468
+ var _path$w, _path2$f, _path3$b, _path4$5, _path5$4, _path6$3, _path7$3, _path8$3, _path9$3, _path10$3, _path11$3, _path12$3, _path13$3, _path14$3, _path15$3;
1382
1469
 
1383
- var _excluded$v = ["title", "titleId"];
1470
+ var _excluded$y = ["title", "titleId"];
1384
1471
 
1385
- function _extends$w() { _extends$w = Object.assign || 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); }
1472
+ function _extends$z() { _extends$z = Object.assign || 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); }
1386
1473
 
1387
- 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; }
1474
+ 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; }
1388
1475
 
1389
- 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; }
1476
+ 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; }
1390
1477
 
1391
1478
  function SvgNyplNoLionPositive(_ref) {
1392
1479
  var title = _ref.title,
1393
1480
  titleId = _ref.titleId,
1394
- props = _objectWithoutProperties$v(_ref, _excluded$v);
1481
+ props = _objectWithoutProperties$y(_ref, _excluded$y);
1395
1482
 
1396
- return /*#__PURE__*/createElement("svg", _extends$w({
1483
+ return /*#__PURE__*/createElement("svg", _extends$z({
1397
1484
  width: 364,
1398
1485
  height: 300,
1399
1486
  fill: "none",
@@ -1401,7 +1488,7 @@ function SvgNyplNoLionPositive(_ref) {
1401
1488
  "aria-labelledby": titleId
1402
1489
  }, props), title ? /*#__PURE__*/createElement("title", {
1403
1490
  id: titleId
1404
- }, title) : null, _path$t || (_path$t = /*#__PURE__*/createElement("path", {
1491
+ }, title) : null, _path$w || (_path$w = /*#__PURE__*/createElement("path", {
1405
1492
  d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
1406
1493
  fill: "#000"
1407
1494
  })), _path2$f || (_path2$f = /*#__PURE__*/createElement("path", {
@@ -1465,20 +1552,20 @@ function SvgNyplNoLionPositive(_ref) {
1465
1552
 
1466
1553
  var _rect$1, _rect2;
1467
1554
 
1468
- var _excluded$w = ["title", "titleId"];
1555
+ var _excluded$z = ["title", "titleId"];
1469
1556
 
1470
- function _extends$x() { _extends$x = Object.assign || 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); }
1557
+ function _extends$A() { _extends$A = Object.assign || 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); }
1471
1558
 
1472
- 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; }
1559
+ 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; }
1473
1560
 
1474
- 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; }
1561
+ 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; }
1475
1562
 
1476
1563
  function SvgPlus(_ref) {
1477
1564
  var title = _ref.title,
1478
1565
  titleId = _ref.titleId,
1479
- props = _objectWithoutProperties$w(_ref, _excluded$w);
1566
+ props = _objectWithoutProperties$z(_ref, _excluded$z);
1480
1567
 
1481
- return /*#__PURE__*/createElement("svg", _extends$x({
1568
+ return /*#__PURE__*/createElement("svg", _extends$A({
1482
1569
  viewBox: "0 0 23 23",
1483
1570
  xmlns: "http://www.w3.org/2000/svg",
1484
1571
  "aria-labelledby": titleId
@@ -1501,20 +1588,20 @@ function SvgPlus(_ref) {
1501
1588
 
1502
1589
  var _g$3, _defs$3;
1503
1590
 
1504
- var _excluded$x = ["title", "titleId"];
1591
+ var _excluded$A = ["title", "titleId"];
1505
1592
 
1506
- function _extends$y() { _extends$y = Object.assign || 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); }
1593
+ function _extends$B() { _extends$B = Object.assign || 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); }
1507
1594
 
1508
- 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; }
1595
+ 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; }
1509
1596
 
1510
- 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; }
1597
+ 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; }
1511
1598
 
1512
1599
  function SvgQueensLong(_ref) {
1513
1600
  var title = _ref.title,
1514
1601
  titleId = _ref.titleId,
1515
- props = _objectWithoutProperties$x(_ref, _excluded$x);
1602
+ props = _objectWithoutProperties$A(_ref, _excluded$A);
1516
1603
 
1517
- return /*#__PURE__*/createElement("svg", _extends$y({
1604
+ return /*#__PURE__*/createElement("svg", _extends$B({
1518
1605
  width: 355,
1519
1606
  height: 48,
1520
1607
  fill: "none",
@@ -1563,20 +1650,20 @@ function SvgQueensLong(_ref) {
1563
1650
 
1564
1651
  var _g$4, _defs$4;
1565
1652
 
1566
- var _excluded$y = ["title", "titleId"];
1653
+ var _excluded$B = ["title", "titleId"];
1567
1654
 
1568
- function _extends$z() { _extends$z = Object.assign || 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); }
1655
+ function _extends$C() { _extends$C = Object.assign || 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); }
1569
1656
 
1570
- 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; }
1657
+ 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; }
1571
1658
 
1572
- 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; }
1659
+ 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; }
1573
1660
 
1574
1661
  function SvgQueensStacked(_ref) {
1575
1662
  var title = _ref.title,
1576
1663
  titleId = _ref.titleId,
1577
- props = _objectWithoutProperties$y(_ref, _excluded$y);
1664
+ props = _objectWithoutProperties$B(_ref, _excluded$B);
1578
1665
 
1579
- return /*#__PURE__*/createElement("svg", _extends$z({
1666
+ return /*#__PURE__*/createElement("svg", _extends$C({
1580
1667
  width: 320,
1581
1668
  height: 174,
1582
1669
  fill: "none",
@@ -1598,22 +1685,22 @@ function SvgQueensStacked(_ref) {
1598
1685
  })))));
1599
1686
  }
1600
1687
 
1601
- var _path$u, _path2$g, _path3$c, _path4$6, _path5$5;
1688
+ var _path$x, _path2$g, _path3$c, _path4$6, _path5$5;
1602
1689
 
1603
- var _excluded$z = ["title", "titleId"];
1690
+ var _excluded$C = ["title", "titleId"];
1604
1691
 
1605
- function _extends$A() { _extends$A = Object.assign || 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); }
1692
+ function _extends$D() { _extends$D = Object.assign || 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); }
1606
1693
 
1607
- 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; }
1694
+ 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; }
1608
1695
 
1609
- 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; }
1696
+ 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; }
1610
1697
 
1611
1698
  function SvgSchomburgCircle(_ref) {
1612
1699
  var title = _ref.title,
1613
1700
  titleId = _ref.titleId,
1614
- props = _objectWithoutProperties$z(_ref, _excluded$z);
1701
+ props = _objectWithoutProperties$C(_ref, _excluded$C);
1615
1702
 
1616
- return /*#__PURE__*/createElement("svg", _extends$A({
1703
+ return /*#__PURE__*/createElement("svg", _extends$D({
1617
1704
  width: 67,
1618
1705
  height: 67,
1619
1706
  fill: "none",
@@ -1621,7 +1708,7 @@ function SvgSchomburgCircle(_ref) {
1621
1708
  "aria-labelledby": titleId
1622
1709
  }, props), title ? /*#__PURE__*/createElement("title", {
1623
1710
  id: titleId
1624
- }, title) : null, _path$u || (_path$u = /*#__PURE__*/createElement("path", {
1711
+ }, title) : null, _path$x || (_path$x = /*#__PURE__*/createElement("path", {
1625
1712
  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",
1626
1713
  fill: "#C54B38"
1627
1714
  })), _path2$g || (_path2$g = /*#__PURE__*/createElement("path", {
@@ -1639,22 +1726,22 @@ function SvgSchomburgCircle(_ref) {
1639
1726
  })));
1640
1727
  }
1641
1728
 
1642
- var _path$v, _path2$h, _path3$d, _path4$7, _path5$6, _path6$4, _path7$4;
1729
+ var _path$y, _path2$h, _path3$d, _path4$7, _path5$6, _path6$4, _path7$4;
1643
1730
 
1644
- var _excluded$A = ["title", "titleId"];
1731
+ var _excluded$D = ["title", "titleId"];
1645
1732
 
1646
- function _extends$B() { _extends$B = Object.assign || 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); }
1733
+ function _extends$E() { _extends$E = Object.assign || 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); }
1647
1734
 
1648
- 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; }
1735
+ 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; }
1649
1736
 
1650
- 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; }
1737
+ 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; }
1651
1738
 
1652
1739
  function SvgSchomburgPositive(_ref) {
1653
1740
  var title = _ref.title,
1654
1741
  titleId = _ref.titleId,
1655
- props = _objectWithoutProperties$A(_ref, _excluded$A);
1742
+ props = _objectWithoutProperties$D(_ref, _excluded$D);
1656
1743
 
1657
- return /*#__PURE__*/createElement("svg", _extends$B({
1744
+ return /*#__PURE__*/createElement("svg", _extends$E({
1658
1745
  width: 185,
1659
1746
  height: 79,
1660
1747
  fill: "none",
@@ -1662,7 +1749,7 @@ function SvgSchomburgPositive(_ref) {
1662
1749
  "aria-labelledby": titleId
1663
1750
  }, props), title ? /*#__PURE__*/createElement("title", {
1664
1751
  id: titleId
1665
- }, title) : null, _path$v || (_path$v = /*#__PURE__*/createElement("path", {
1752
+ }, title) : null, _path$y || (_path$y = /*#__PURE__*/createElement("path", {
1666
1753
  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",
1667
1754
  fill: "#010101"
1668
1755
  })), _path2$h || (_path2$h = /*#__PURE__*/createElement("path", {
@@ -1686,28 +1773,28 @@ function SvgSchomburgPositive(_ref) {
1686
1773
  })));
1687
1774
  }
1688
1775
 
1689
- var _path$w;
1776
+ var _path$z;
1690
1777
 
1691
- var _excluded$B = ["title", "titleId"];
1778
+ var _excluded$E = ["title", "titleId"];
1692
1779
 
1693
- function _extends$C() { _extends$C = Object.assign || 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); }
1780
+ function _extends$F() { _extends$F = Object.assign || 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); }
1694
1781
 
1695
- 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; }
1782
+ 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; }
1696
1783
 
1697
- 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; }
1784
+ 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; }
1698
1785
 
1699
1786
  function SvgSearch(_ref) {
1700
1787
  var title = _ref.title,
1701
1788
  titleId = _ref.titleId,
1702
- props = _objectWithoutProperties$B(_ref, _excluded$B);
1789
+ props = _objectWithoutProperties$E(_ref, _excluded$E);
1703
1790
 
1704
- return /*#__PURE__*/createElement("svg", _extends$C({
1791
+ return /*#__PURE__*/createElement("svg", _extends$F({
1705
1792
  viewBox: "0 0 24 24",
1706
1793
  xmlns: "http://www.w3.org/2000/svg",
1707
1794
  "aria-labelledby": titleId
1708
1795
  }, props), title ? /*#__PURE__*/createElement("title", {
1709
1796
  id: titleId
1710
- }, title) : null, _path$w || (_path$w = /*#__PURE__*/createElement("path", {
1797
+ }, title) : null, _path$z || (_path$z = /*#__PURE__*/createElement("path", {
1711
1798
  fillRule: "evenodd",
1712
1799
  clipRule: "evenodd",
1713
1800
  d: "M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-1.671 7.743A9.958 9.958 0 0110 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10a9.958 9.958 0 01-2.257 6.329l5.96 5.96a1 1 0 01-1.414 1.414l-5.96-5.96z"
@@ -1716,20 +1803,20 @@ function SvgSearch(_ref) {
1716
1803
 
1717
1804
  var _g$5, _defs$5;
1718
1805
 
1719
- var _excluded$C = ["title", "titleId"];
1806
+ var _excluded$F = ["title", "titleId"];
1720
1807
 
1721
- function _extends$D() { _extends$D = Object.assign || 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); }
1808
+ function _extends$G() { _extends$G = Object.assign || 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); }
1722
1809
 
1723
- 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; }
1810
+ 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; }
1724
1811
 
1725
- 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; }
1812
+ 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; }
1726
1813
 
1727
1814
  function SvgSimplyeBlack(_ref) {
1728
1815
  var title = _ref.title,
1729
1816
  titleId = _ref.titleId,
1730
- props = _objectWithoutProperties$C(_ref, _excluded$C);
1817
+ props = _objectWithoutProperties$F(_ref, _excluded$F);
1731
1818
 
1732
- return /*#__PURE__*/createElement("svg", _extends$D({
1819
+ return /*#__PURE__*/createElement("svg", _extends$G({
1733
1820
  width: 512,
1734
1821
  height: 148,
1735
1822
  fill: "none",
@@ -1757,20 +1844,20 @@ function SvgSimplyeBlack(_ref) {
1757
1844
 
1758
1845
  var _g$6, _defs$6;
1759
1846
 
1760
- var _excluded$D = ["title", "titleId"];
1847
+ var _excluded$G = ["title", "titleId"];
1761
1848
 
1762
- function _extends$E() { _extends$E = Object.assign || 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); }
1849
+ function _extends$H() { _extends$H = Object.assign || 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); }
1763
1850
 
1764
- 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; }
1851
+ 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; }
1765
1852
 
1766
- 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; }
1853
+ 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; }
1767
1854
 
1768
1855
  function SvgSimplyeColor(_ref) {
1769
1856
  var title = _ref.title,
1770
1857
  titleId = _ref.titleId,
1771
- props = _objectWithoutProperties$D(_ref, _excluded$D);
1858
+ props = _objectWithoutProperties$G(_ref, _excluded$G);
1772
1859
 
1773
- return /*#__PURE__*/createElement("svg", _extends$E({
1860
+ return /*#__PURE__*/createElement("svg", _extends$H({
1774
1861
  width: 682,
1775
1862
  height: 196,
1776
1863
  fill: "none",
@@ -1801,22 +1888,22 @@ function SvgSimplyeColor(_ref) {
1801
1888
  })))));
1802
1889
  }
1803
1890
 
1804
- var _path$x;
1891
+ var _path$A;
1805
1892
 
1806
- var _excluded$E = ["title", "titleId"];
1893
+ var _excluded$H = ["title", "titleId"];
1807
1894
 
1808
- function _extends$F() { _extends$F = Object.assign || 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); }
1895
+ function _extends$I() { _extends$I = Object.assign || 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); }
1809
1896
 
1810
- 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; }
1897
+ 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; }
1811
1898
 
1812
- 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; }
1899
+ 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; }
1813
1900
 
1814
1901
  function SvgSnflNegative(_ref) {
1815
1902
  var title = _ref.title,
1816
1903
  titleId = _ref.titleId,
1817
- props = _objectWithoutProperties$E(_ref, _excluded$E);
1904
+ props = _objectWithoutProperties$H(_ref, _excluded$H);
1818
1905
 
1819
- return /*#__PURE__*/createElement("svg", _extends$F({
1906
+ return /*#__PURE__*/createElement("svg", _extends$I({
1820
1907
  width: 73,
1821
1908
  height: 99,
1822
1909
  fill: "none",
@@ -1824,28 +1911,28 @@ function SvgSnflNegative(_ref) {
1824
1911
  "aria-labelledby": titleId
1825
1912
  }, props), title ? /*#__PURE__*/createElement("title", {
1826
1913
  id: titleId
1827
- }, title) : null, _path$x || (_path$x = /*#__PURE__*/createElement("path", {
1914
+ }, title) : null, _path$A || (_path$A = /*#__PURE__*/createElement("path", {
1828
1915
  d: "M4.765 27.056c0 .35-.05.645-.177.94-.127.269-.279.51-.507.699-.228.188-.482.349-.811.456-.33.108-.685.161-1.065.161a3.39 3.39 0 01-.786-.08c-.228-.054-.456-.108-.633-.188a8.505 8.505 0 01-.482-.242A1.588 1.588 0 010 28.56l.634-1.128c.05.027.101.081.202.135a1.9 1.9 0 00.33.188c.127.053.279.107.456.16.178.055.355.081.558.081.355 0 .634-.08.836-.268a.767.767 0 00.304-.618.774.774 0 00-.126-.43c-.102-.107-.203-.214-.355-.322-.152-.08-.304-.188-.507-.268-.203-.081-.406-.188-.608-.296a3.454 3.454 0 01-.609-.376 2.708 2.708 0 01-.481-.456 1.987 1.987 0 01-.33-.618 2.669 2.669 0 01-.127-.806 2.044 2.044 0 01.66-1.558c.202-.188.456-.322.735-.43.278-.107.583-.16.912-.16.304 0 .558.026.786.08.228.054.43.108.608.161.178.054.304.135.431.215.127.08.203.134.279.188l-.608 1.128-.229-.16a3.988 3.988 0 00-.33-.162 1.81 1.81 0 00-.405-.107c-.152-.027-.279-.054-.43-.054-.305 0-.533.054-.71.188-.178.134-.254.322-.254.59 0 .162.026.27.102.377a.926.926 0 00.278.268c.127.08.254.161.431.242.152.08.33.161.533.242.228.107.456.241.684.376.228.134.406.295.583.456.177.161.304.403.406.645.076.349.126.644.126.993zM9.709 22.92v6.257H8.163V22.92H6.186v-1.316h5.475v1.316H9.709zM15.944 24.665c-.051-.16-.102-.322-.152-.456-.051-.161-.076-.296-.127-.403a4.627 4.627 0 00-.076-.295c-.026-.081-.026-.135-.026-.162h-.025c0 .027-.025.081-.05.162-.026.08-.051.188-.077.295a2.458 2.458 0 01-.126.403c-.051.134-.102.295-.152.456l-.609 1.8h2.003l-.583-1.8zm-2.307 4.512h-1.52l2.737-7.573h1.47l2.813 7.573H17.49l-.507-1.423h-2.864l-.482 1.423zM23.624 29.177h-1.445l-2.763-7.573h1.622l1.521 4.539c.05.134.076.295.127.43.05.134.076.268.127.402.025.134.076.215.076.296.025.08.025.134.025.134h.025s0-.054.026-.134c.025-.081.05-.188.076-.296.025-.134.076-.242.126-.403.051-.134.076-.295.127-.43l1.445-4.538h1.52l-2.635 7.573zM31.508 23.887c0-.35-.102-.618-.305-.78-.202-.16-.507-.268-.938-.268h-.76v2.095h.837c.405 0 .71-.08.887-.269.177-.188.279-.456.279-.778zm.405 5.29l-1.318-2.148c-.152-.215-.253-.403-.355-.51a3.17 3.17 0 00-.253-.296c-.076-.054-.127-.107-.203-.134-.05-.027-.127-.027-.228-.027h-.102v3.115h-1.52v-7.573h2.382c.837 0 1.496.188 1.952.564.456.376.684.913.684 1.638 0 .322-.05.59-.152.806-.101.241-.228.43-.38.59-.152.162-.33.296-.532.403a2.537 2.537 0 01-.634.215v.027c.101.08.228.188.355.35.127.16.304.402.481.724l1.395 2.256h-1.572zM40.43 25.392c0-.35-.05-.671-.126-.994a2.242 2.242 0 00-.38-.832 1.859 1.859 0 00-.634-.564 1.926 1.926 0 00-.913-.215c-.354 0-.659.08-.937.215a1.938 1.938 0 00-.66.564c-.177.242-.304.51-.38.832a4.255 4.255 0 00-.126.994c0 .35.05.698.126 1.02.076.323.203.618.38.86.178.242.38.43.66.59.253.135.583.216.937.216.355 0 .66-.08.938-.215.254-.134.482-.322.66-.564.177-.242.303-.51.38-.833.025-.376.076-.698.076-1.074zm1.598-.027c0 .51-.077 1.02-.229 1.477-.152.484-.38.887-.684 1.263-.304.376-.684.644-1.14.886-.457.215-.99.322-1.572.322-.608 0-1.14-.107-1.597-.322a3.562 3.562 0 01-1.166-.86 3.685 3.685 0 01-.71-1.235 4.207 4.207 0 01-.253-1.477c0-.51.076-1.02.253-1.477.152-.484.406-.887.71-1.262.304-.377.684-.645 1.166-.86.456-.215.989-.322 1.597-.322s1.14.107 1.597.322c.456.215.836.51 1.166.86.304.349.557.778.71 1.235.075.457.152.94.152 1.45zM48.261 27.056c0 .349-.05.644-.177.94-.127.268-.279.51-.507.698-.228.188-.482.35-.811.457-.33.107-.684.16-1.065.16-.304 0-.557-.026-.785-.08-.229-.054-.457-.107-.634-.188a8.455 8.455 0 01-.482-.242 1.589 1.589 0 01-.304-.241l.634-1.128c.05.027.101.08.203.134a1.9 1.9 0 00.33.188 4.6 4.6 0 00.455.161c.178.054.355.08.558.08.355 0 .634-.08.836-.268a.767.767 0 00.305-.618.773.773 0 00-.127-.43c-.102-.107-.203-.214-.355-.322-.152-.08-.304-.188-.507-.268a6.315 6.315 0 01-.608-.296 3.447 3.447 0 01-.609-.376 2.704 2.704 0 01-.481-.456 1.986 1.986 0 01-.33-.618 2.667 2.667 0 01-.127-.805 2.043 2.043 0 01.66-1.558c.202-.188.456-.323.735-.43.278-.107.583-.161.912-.161.304 0 .558.027.786.08.228.054.43.108.608.162.178.053.304.134.431.215.127.08.203.134.279.188l-.608 1.128-.228-.162c-.102-.053-.203-.107-.33-.16a1.811 1.811 0 00-.406-.108c-.152-.027-.278-.054-.43-.054-.305 0-.533.054-.71.188-.178.134-.254.322-.254.59 0 .162.026.27.102.377a.926.926 0 00.279.269c.126.08.253.16.43.241.152.08.33.161.533.242.228.107.456.242.684.376.228.134.406.295.583.456.178.188.304.403.406.645.076.35.126.645.126.994zM73 55.416H0v1.611h73v-1.611zM73 34.87H0v1.612h73v-1.611zM73 96.507H0v1.611h73v-1.61zM73 75.962H0v1.612h73v-1.612zM4.816 49.724l-2.788-4.217c-.203-.295-.38-.564-.507-.779-.127-.215-.178-.349-.203-.349h.025v.108c0 .053 0 .134.026.241 0 .108 0 .188.025.323v4.673H0V42.15h1.52l2.586 3.921c.102.161.203.323.304.457.102.16.178.295.229.403.076.107.126.215.152.295.05.08.05.108.05.108h.026v-.108c0-.08 0-.161-.026-.268 0-.108 0-.242-.025-.377v-4.43h1.369v7.573H4.816zM10.291 42.15h-1.52v7.574h1.52V42.15zM15.995 45.212c-.05-.161-.1-.323-.152-.457-.05-.16-.076-.295-.126-.403a4.61 4.61 0 00-.076-.295c-.026-.08-.026-.134-.026-.161h-.025c0 .027-.025.08-.05.161-.026.08-.051.188-.077.295a2.468 2.468 0 01-.127.403c-.05.134-.101.296-.152.457l-.608 1.8h2.002l-.583-1.8zm-2.28 4.512h-1.522l2.738-7.574h1.47l2.814 7.574h-1.648l-.482-1.424h-2.89l-.48 1.424zM24.485 44.433c0-.35-.101-.618-.304-.779-.203-.161-.507-.268-.963-.268h-.76v2.094h.836c.405 0 .71-.08.887-.268.203-.188.304-.457.304-.779zm.406 5.29l-1.318-2.148c-.152-.215-.254-.403-.355-.51a3.196 3.196 0 00-.254-.295c-.076-.054-.127-.108-.202-.135-.051-.027-.127-.027-.229-.027h-.101v3.116h-1.52V42.15h2.382c.836 0 1.495.188 1.951.564.457.376.685.913.685 1.638 0 .323-.05.591-.152.806-.102.242-.228.43-.38.591-.152.161-.33.295-.533.403a2.541 2.541 0 01-.633.215v.027c.101.08.228.188.355.349.126.16.304.402.481.725l1.394 2.256h-1.571zM33.686 49.052c-.101.08-.203.188-.355.269-.152.08-.33.188-.507.269-.202.08-.405.134-.633.188-.228.053-.482.08-.735.08-.609 0-1.141-.107-1.597-.322a3.456 3.456 0 01-1.14-.86 3.751 3.751 0 01-.685-1.262 4.851 4.851 0 01-.228-1.477c0-.51.076-1.02.228-1.477.152-.484.38-.886.71-1.236.304-.349.71-.644 1.166-.859.456-.215.988-.322 1.596-.322.482 0 .888.053 1.217.16.33.108.66.243.938.457l-.684 1.182a2.554 2.554 0 00-.66-.322c-.228-.08-.506-.108-.836-.108-.33 0-.634.054-.887.188a1.834 1.834 0 00-.634.538c-.177.241-.304.51-.38.805-.101.296-.127.645-.127.994 0 .376.05.698.127 1.02.076.323.203.591.38.833.178.242.38.43.66.564.253.134.557.215.912.215.38 0 .71-.054.963-.188.253-.108.482-.242.659-.403l.532 1.074zM40.249 49.724v-3.277h-3.22v3.277h-1.495V42.15h1.496v2.981h3.219v-2.98h1.495v7.573H40.25zM49.503 45.937c0-.35-.05-.671-.127-.994a2.243 2.243 0 00-.38-.832 1.858 1.858 0 00-.634-.564 1.926 1.926 0 00-.912-.215c-.355 0-.66.08-.938.215a1.939 1.939 0 00-.66.564c-.177.241-.303.51-.38.832a4.259 4.259 0 00-.126.994c0 .35.05.698.127 1.02.076.323.202.618.38.86.177.242.38.43.659.59.253.135.583.216.938.216s.659-.08.938-.215c.253-.135.481-.322.659-.564.177-.242.304-.51.38-.833.025-.376.076-.698.076-1.074zm1.597-.027c0 .51-.076 1.02-.228 1.477a3.75 3.75 0 01-.685 1.263c-.304.376-.684.644-1.14.886-.457.215-.989.322-1.572.322-.608 0-1.14-.107-1.597-.322a3.563 3.563 0 01-1.166-.86 3.685 3.685 0 01-.71-1.235 4.208 4.208 0 01-.253-1.477c0-.51.076-1.02.253-1.477.153-.484.406-.887.71-1.263.304-.376.685-.644 1.166-.859.456-.215.989-.322 1.597-.322s1.14.107 1.597.322c.456.215.836.51 1.166.86.33.349.558.778.71 1.235.076.456.152.94.152 1.45zM57.386 47.602c0 .35-.05.645-.177.94-.127.269-.279.51-.507.699-.228.188-.482.349-.811.456-.33.108-.684.161-1.065.161-.304 0-.557-.026-.785-.08-.229-.054-.457-.108-.634-.188a8.454 8.454 0 01-.482-.242 1.585 1.585 0 01-.304-.242l.634-1.128c.05.027.101.08.203.135a1.9 1.9 0 00.33.188c.126.053.278.107.455.16.178.055.355.081.558.081.355 0 .634-.08.836-.268a.767.767 0 00.305-.618.773.773 0 00-.127-.43 1.493 1.493 0 00-.355-.322c-.152-.08-.304-.188-.507-.269-.203-.08-.406-.188-.608-.295a3.453 3.453 0 01-.609-.376 2.704 2.704 0 01-.481-.456 1.985 1.985 0 01-.33-.618 2.667 2.667 0 01-.127-.806 2.043 2.043 0 01.66-1.558c.202-.188.456-.322.735-.43.278-.107.583-.16.912-.16.304 0 .558.026.786.08.228.054.43.108.608.161.178.054.304.135.431.215.127.08.203.134.279.188l-.608 1.128a1.014 1.014 0 00-.228-.134c-.102-.054-.203-.108-.33-.161a1.816 1.816 0 00-.406-.108c-.152-.027-.278-.053-.43-.053-.305 0-.533.053-.71.188-.178.134-.254.322-.254.59 0 .161.026.269.102.376a.925.925 0 00.279.269c.126.08.253.161.43.242.152.08.33.16.533.241.228.108.456.242.684.376.228.135.406.296.583.457.178.188.304.403.406.645.101.241.126.617.126.966zM1.52 64.01v1.852h2.282v1.263H1.521v3.142H0v-7.574h4.106v1.316H1.521zM11.457 66.482c0-.349-.05-.671-.127-.993a2.243 2.243 0 00-.38-.833 1.858 1.858 0 00-.634-.564 1.926 1.926 0 00-.912-.215c-.355 0-.66.08-.938.215a1.938 1.938 0 00-.66.564c-.176.242-.303.51-.38.833a4.257 4.257 0 00-.126.993c0 .35.05.699.127 1.021.076.322.203.618.38.86.177.241.38.43.659.59.253.135.583.215.938.215s.659-.08.938-.215c.278-.134.481-.322.659-.564.177-.242.304-.51.38-.832.025-.376.076-.699.076-1.075zm1.597-.026c0 .51-.076 1.02-.228 1.477a3.75 3.75 0 01-.685 1.262c-.304.376-.684.645-1.14.886-.457.215-.989.322-1.572.322-.608 0-1.14-.107-1.597-.322a3.562 3.562 0 01-1.166-.86 3.685 3.685 0 01-.71-1.235 4.207 4.207 0 01-.253-1.477c0-.51.076-1.02.254-1.477.152-.483.405-.886.71-1.262.303-.376.684-.645 1.165-.86.457-.214.989-.322 1.597-.322s1.14.108 1.597.322c.456.215.837.51 1.166.86.33.349.558.779.71 1.235.076.457.152.94.152 1.45zM20.937 67.18c0 1.047-.254 1.825-.735 2.39-.482.563-1.217.832-2.205.832-1.04 0-1.8-.269-2.307-.779-.507-.537-.735-1.289-.735-2.283v-4.646h1.52v4.512c0 .645.128 1.128.356 1.423.228.296.634.457 1.216.457.533 0 .913-.161 1.166-.483.254-.323.355-.752.355-1.316v-4.62h1.394v4.512h-.025zM28.11 70.267l-2.787-4.216c-.203-.296-.38-.564-.507-.78-.127-.214-.178-.349-.203-.349h-.025v.108c0 .054 0 .134.025.242 0 .107 0 .188.025.322v4.673H23.27v-7.574h1.521l2.586 3.922c.101.16.203.322.304.456.101.161.177.295.228.403.076.107.127.215.152.295.05.08.05.108.05.108h.026v-.108c0-.08 0-.16-.025-.268 0-.108 0-.242-.026-.376V62.693h1.37v7.574H28.11zM36.727 66.427c0-.86-.202-1.478-.608-1.854-.405-.402-1.04-.59-1.876-.59h-.659v4.995h.71c.811 0 1.42-.215 1.825-.645.406-.43.608-1.074.608-1.906zm1.597-.054a4.4 4.4 0 01-.253 1.53c-.178.484-.406.887-.76 1.236-.33.35-.761.618-1.293.833a5.5 5.5 0 01-1.85.295h-2.105v-7.574h2.155c.71 0 1.318.08 1.825.269.507.188.938.43 1.267.752.33.322.583.725.735 1.155.203.456.28.967.28 1.504zM43.04 65.755c-.05-.161-.101-.322-.152-.456-.05-.162-.076-.296-.127-.403a4.627 4.627 0 00-.076-.296c-.025-.08-.025-.134-.025-.16h-.025c0 .026-.026.08-.05.16-.026.08-.052.188-.077.296-.025.134-.076.268-.127.403a9 9 0 00-.152.456l-.608 1.8h2.002l-.583-1.8zm-2.28 4.512h-1.522l2.738-7.574h1.47l2.814 7.574h-1.648l-.482-1.423h-2.864l-.507 1.423zM50.087 64.01v6.257h-1.521v-6.258h-1.977v-1.316h5.475v1.316h-1.977zM55.485 62.693h-1.521v7.574h1.52v-7.574zM63.24 66.482c0-.349-.05-.671-.127-.993a2.244 2.244 0 00-.38-.833 1.859 1.859 0 00-.633-.564 1.926 1.926 0 00-.913-.215c-.355 0-.659.08-.938.215a1.938 1.938 0 00-.659.564c-.177.242-.304.51-.38.833a4.254 4.254 0 00-.127.993c0 .35.05.699.127 1.021.076.322.203.618.38.86.178.241.38.43.66.59.253.135.582.215.937.215.355 0 .66-.08.938-.215.253-.134.481-.322.659-.564.177-.242.304-.51.38-.832.05-.376.076-.699.076-1.075zm1.622-.026c0 .51-.076 1.02-.228 1.477a3.75 3.75 0 01-.684 1.262c-.304.376-.684.645-1.14.886-.457.215-.99.322-1.572.322-.609 0-1.14-.107-1.597-.322a3.561 3.561 0 01-1.166-.86 3.684 3.684 0 01-.71-1.235 4.208 4.208 0 01-.253-1.477c0-.51.076-1.02.253-1.477.152-.483.406-.886.71-1.262.304-.376.684-.645 1.166-.86.456-.214.988-.322 1.597-.322.608 0 1.14.108 1.597.322.456.215.836.51 1.166.86.33.349.557.779.71 1.235.05.457.151.94.151 1.45zM71.605 70.267l-2.788-4.216c-.203-.296-.38-.564-.507-.78-.127-.214-.178-.349-.203-.349h-.025v.108c0 .054 0 .134.025.242 0 .107 0 .188.025.322v4.673h-1.368v-7.574h1.52l2.586 3.922c.101.16.203.322.304.456.101.161.177.295.228.403.076.107.127.215.152.295.051.08.051.108.051.108h.025v-.108c0-.08 0-.16-.025-.268 0-.108 0-.242-.025-.376V62.693h1.368v7.574h-1.343zM0 90.815V83.24h1.52v6.284h2.662v1.29H0zM7.706 83.241h-1.52v7.574h1.52V83.24zM13.916 88.585c0-.349-.102-.617-.305-.805-.202-.188-.532-.269-.963-.269h-.861v2.095h.785c.431 0 .76-.08.989-.242.253-.16.355-.43.355-.779zm-.254-3.222c0-.618-.38-.913-1.14-.913h-.736v1.88h.71c.406 0 .71-.081.887-.242.203-.134.28-.376.28-.725zm1.8 3.357c0 .376-.076.725-.203.993-.152.269-.33.484-.583.645a2.23 2.23 0 01-.887.35c-.355.08-.71.107-1.115.107h-2.358V83.24H12.7c.33 0 .634.027.938.08.304.054.557.162.786.323.228.134.405.349.532.59.127.242.203.538.203.887 0 .483-.127.886-.355 1.155a1.847 1.847 0 01-.913.59v.028c.203.026.406.107.609.188.177.08.355.214.507.376.152.16.253.322.33.537.075.188.126.43.126.725zM21.089 85.524c0-.35-.102-.618-.305-.779-.202-.161-.506-.269-.963-.269h-.76v2.095h.836c.406 0 .71-.08.887-.268.229-.188.305-.457.305-.78zm.405 5.29l-1.318-2.148c-.152-.215-.253-.403-.355-.51-.101-.135-.177-.215-.253-.296-.076-.053-.127-.107-.203-.134-.05-.027-.127-.027-.228-.027h-.102v3.116h-1.52V83.24h2.382c.837 0 1.496.188 1.952.564.456.376.684.913.684 1.638 0 .323-.05.591-.152.806-.101.242-.228.43-.38.59-.152.162-.33.296-.532.404a2.536 2.536 0 01-.634.215v.026c.101.08.228.188.355.35.127.16.304.402.482.725l1.394 2.256h-1.572zM28.212 86.303a9.205 9.205 0 00-.152-.457c-.05-.161-.076-.295-.127-.403a4.627 4.627 0 00-.076-.295c-.025-.08-.025-.135-.025-.161h-.025c0 .026-.026.08-.051.16-.025.081-.05.189-.076.296-.025.135-.076.269-.127.403-.05.134-.101.295-.152.457l-.608 1.8h2.002l-.583-1.8zm-2.281 4.512h-1.52l2.737-7.574h1.47l2.813 7.574h-1.647l-.482-1.424h-2.864l-.507 1.424zM36.678 85.524c0-.35-.102-.618-.305-.779-.203-.161-.507-.269-.938-.269h-.76v2.095h.837c.405 0 .71-.08.887-.268.177-.188.279-.457.279-.78zm.405 5.29l-1.318-2.148c-.152-.215-.254-.403-.355-.51a3.17 3.17 0 00-.253-.296c-.076-.053-.127-.107-.203-.134-.05-.027-.127-.027-.228-.027h-.102v3.116h-1.52V83.24h2.382c.837 0 1.496.188 1.952.564.456.376.684.913.684 1.638 0 .323-.05.591-.152.806-.101.242-.228.43-.38.59-.152.162-.33.296-.532.404a2.537 2.537 0 01-.634.215v.026c.101.08.228.188.355.35.127.16.304.402.481.725l1.395 2.256h-1.572zM43.267 87.968v2.847h-1.521v-2.847l-2.357-4.727h1.673l1.52 3.223 1.521-3.223h1.47l-2.306 4.727zM73 15.91H48.261V2.885L24.74 15.91H0v-1.584h24.333L49.757.118v14.208H73v1.584z",
1829
1916
  fill: "#fff"
1830
1917
  })));
1831
1918
  }
1832
1919
 
1833
- var _path$y;
1920
+ var _path$B;
1834
1921
 
1835
- var _excluded$F = ["title", "titleId"];
1922
+ var _excluded$I = ["title", "titleId"];
1836
1923
 
1837
- function _extends$G() { _extends$G = Object.assign || 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); }
1924
+ function _extends$J() { _extends$J = Object.assign || 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); }
1838
1925
 
1839
- 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; }
1926
+ 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; }
1840
1927
 
1841
- 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; }
1928
+ 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; }
1842
1929
 
1843
1930
  function SvgSnflPositive(_ref) {
1844
1931
  var title = _ref.title,
1845
1932
  titleId = _ref.titleId,
1846
- props = _objectWithoutProperties$F(_ref, _excluded$F);
1933
+ props = _objectWithoutProperties$I(_ref, _excluded$I);
1847
1934
 
1848
- return /*#__PURE__*/createElement("svg", _extends$G({
1935
+ return /*#__PURE__*/createElement("svg", _extends$J({
1849
1936
  width: 84,
1850
1937
  height: 111,
1851
1938
  fill: "none",
@@ -1853,63 +1940,63 @@ function SvgSnflPositive(_ref) {
1853
1940
  "aria-labelledby": titleId
1854
1941
  }, props), title ? /*#__PURE__*/createElement("title", {
1855
1942
  id: titleId
1856
- }, title) : null, _path$y || (_path$y = /*#__PURE__*/createElement("path", {
1943
+ }, title) : null, _path$B || (_path$B = /*#__PURE__*/createElement("path", {
1857
1944
  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",
1858
1945
  fill: "#000"
1859
1946
  })));
1860
1947
  }
1861
1948
 
1862
- var _path$z;
1949
+ var _path$C;
1863
1950
 
1864
- var _excluded$G = ["title", "titleId"];
1951
+ var _excluded$J = ["title", "titleId"];
1865
1952
 
1866
- function _extends$H() { _extends$H = Object.assign || 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); }
1953
+ function _extends$K() { _extends$K = Object.assign || 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); }
1867
1954
 
1868
- 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; }
1955
+ 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; }
1869
1956
 
1870
- 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; }
1957
+ 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; }
1871
1958
 
1872
1959
  function SvgSpeakerNotes(_ref) {
1873
1960
  var title = _ref.title,
1874
1961
  titleId = _ref.titleId,
1875
- props = _objectWithoutProperties$G(_ref, _excluded$G);
1962
+ props = _objectWithoutProperties$J(_ref, _excluded$J);
1876
1963
 
1877
- return /*#__PURE__*/createElement("svg", _extends$H({
1964
+ return /*#__PURE__*/createElement("svg", _extends$K({
1878
1965
  viewBox: "0 0 24 24",
1879
1966
  xmlns: "http://www.w3.org/2000/svg",
1880
1967
  "aria-labelledby": titleId
1881
1968
  }, props), title ? /*#__PURE__*/createElement("title", {
1882
1969
  id: titleId
1883
- }, title) : null, _path$z || (_path$z = /*#__PURE__*/createElement("path", {
1970
+ }, title) : null, _path$C || (_path$C = /*#__PURE__*/createElement("path", {
1884
1971
  fillRule: "evenodd",
1885
1972
  clipRule: "evenodd",
1886
1973
  d: "M4 2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H6l-4 4 .01-18c0-1.1.89-2 1.99-2zm1.17 14H20V4H4v13.17l.58-.58.59-.59zM6 12h2v2H6v-2zm2-3H6v2h2V9zM6 6h2v2H6V6zm9 6h-5v2h5v-2zm-5-3h8v2h-8V9zm8-3h-8v2h8V6z"
1887
1974
  })));
1888
1975
  }
1889
1976
 
1890
- var _path$A, _path2$i;
1977
+ var _path$D, _path2$i;
1891
1978
 
1892
- var _excluded$H = ["title", "titleId"];
1979
+ var _excluded$K = ["title", "titleId"];
1893
1980
 
1894
- function _extends$I() { _extends$I = Object.assign || 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); }
1981
+ function _extends$L() { _extends$L = Object.assign || 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); }
1895
1982
 
1896
- 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; }
1983
+ 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; }
1897
1984
 
1898
- 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; }
1985
+ 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; }
1899
1986
 
1900
1987
  function SvgUtilityAccountFilled(_ref) {
1901
1988
  var title = _ref.title,
1902
1989
  titleId = _ref.titleId,
1903
- props = _objectWithoutProperties$H(_ref, _excluded$H);
1990
+ props = _objectWithoutProperties$K(_ref, _excluded$K);
1904
1991
 
1905
- return /*#__PURE__*/createElement("svg", _extends$I({
1992
+ return /*#__PURE__*/createElement("svg", _extends$L({
1906
1993
  viewBox: "0 0 24 24",
1907
1994
  fill: "none",
1908
1995
  xmlns: "http://www.w3.org/2000/svg",
1909
1996
  "aria-labelledby": titleId
1910
1997
  }, props), title ? /*#__PURE__*/createElement("title", {
1911
1998
  id: titleId
1912
- }, title) : null, _path$A || (_path$A = /*#__PURE__*/createElement("path", {
1999
+ }, title) : null, _path$D || (_path$D = /*#__PURE__*/createElement("path", {
1913
2000
  clipRule: "evenodd",
1914
2001
  d: "M18.25 7.866c0 3.136-2.798 5.678-6.25 5.678s-6.25-2.542-6.25-5.678S8.548 2.188 12 2.188s6.25 2.542 6.25 5.678z"
1915
2002
  })), _path2$i || (_path2$i = /*#__PURE__*/createElement("path", {
@@ -1918,29 +2005,29 @@ function SvgUtilityAccountFilled(_ref) {
1918
2005
  })));
1919
2006
  }
1920
2007
 
1921
- var _path$B, _path2$j;
2008
+ var _path$E, _path2$j;
1922
2009
 
1923
- var _excluded$I = ["title", "titleId"];
2010
+ var _excluded$L = ["title", "titleId"];
1924
2011
 
1925
- function _extends$J() { _extends$J = Object.assign || 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); }
2012
+ function _extends$M() { _extends$M = Object.assign || 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); }
1926
2013
 
1927
- 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; }
2014
+ 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; }
1928
2015
 
1929
- 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; }
2016
+ 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; }
1930
2017
 
1931
2018
  function SvgUtilityAccountUnfilled(_ref) {
1932
2019
  var title = _ref.title,
1933
2020
  titleId = _ref.titleId,
1934
- props = _objectWithoutProperties$I(_ref, _excluded$I);
2021
+ props = _objectWithoutProperties$L(_ref, _excluded$L);
1935
2022
 
1936
- return /*#__PURE__*/createElement("svg", _extends$J({
2023
+ return /*#__PURE__*/createElement("svg", _extends$M({
1937
2024
  viewBox: "0 0 24 24",
1938
2025
  fill: "none",
1939
2026
  xmlns: "http://www.w3.org/2000/svg",
1940
2027
  "aria-labelledby": titleId
1941
2028
  }, props), title ? /*#__PURE__*/createElement("title", {
1942
2029
  id: titleId
1943
- }, title) : null, _path$B || (_path$B = /*#__PURE__*/createElement("path", {
2030
+ }, title) : null, _path$E || (_path$E = /*#__PURE__*/createElement("path", {
1944
2031
  fillRule: "evenodd",
1945
2032
  clipRule: "evenodd",
1946
2033
  d: "M17.8 7.807c0 2.87-2.558 5.263-5.8 5.263s-5.8-2.393-5.8-5.263S8.758 2.544 12 2.544s5.8 2.393 5.8 5.263z",
@@ -1955,28 +2042,28 @@ function SvgUtilityAccountUnfilled(_ref) {
1955
2042
  })));
1956
2043
  }
1957
2044
 
1958
- var _path$C;
2045
+ var _path$F;
1959
2046
 
1960
- var _excluded$J = ["title", "titleId"];
2047
+ var _excluded$M = ["title", "titleId"];
1961
2048
 
1962
- function _extends$K() { _extends$K = Object.assign || 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); }
2049
+ function _extends$N() { _extends$N = Object.assign || 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); }
1963
2050
 
1964
- 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; }
2051
+ 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; }
1965
2052
 
1966
- 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; }
2053
+ 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; }
1967
2054
 
1968
2055
  function SvgUtilityHamburger(_ref) {
1969
2056
  var title = _ref.title,
1970
2057
  titleId = _ref.titleId,
1971
- props = _objectWithoutProperties$J(_ref, _excluded$J);
2058
+ props = _objectWithoutProperties$M(_ref, _excluded$M);
1972
2059
 
1973
- return /*#__PURE__*/createElement("svg", _extends$K({
2060
+ return /*#__PURE__*/createElement("svg", _extends$N({
1974
2061
  viewBox: "0 0 24 24",
1975
2062
  xmlns: "http://www.w3.org/2000/svg",
1976
2063
  "aria-labelledby": titleId
1977
2064
  }, props), title ? /*#__PURE__*/createElement("title", {
1978
2065
  id: titleId
1979
- }, title) : null, _path$C || (_path$C = /*#__PURE__*/createElement("path", {
2066
+ }, title) : null, _path$F || (_path$F = /*#__PURE__*/createElement("path", {
1980
2067
  fillRule: "evenodd",
1981
2068
  clipRule: "evenodd",
1982
2069
  stroke: "#000",
@@ -1991,6 +2078,9 @@ var iconSvgs = {
1991
2078
  accessibility_full: SvgAccessibilityFull,
1992
2079
  accessibility_partial: SvgAccessibilityPartial,
1993
2080
  action_check_circle: SvgActionCheckCircle,
2081
+ action_help_default: SvgActionHelpDefault,
2082
+ action_help_outline: SvgActionHelpOutline,
2083
+ action_launch: SvgActionLaunch,
1994
2084
  arrow: SvgArrow,
1995
2085
  brooklyn: SvgBrooklyn,
1996
2086
  check: SvgCheck,
@@ -2192,6 +2282,7 @@ function Accordion(props) {
2192
2282
  var ColorVariants;
2193
2283
 
2194
2284
  (function (ColorVariants) {
2285
+ ColorVariants["Blogs"] = "blogs";
2195
2286
  ColorVariants["BooksAndMore"] = "booksAndMore";
2196
2287
  ColorVariants["Locations"] = "locations";
2197
2288
  ColorVariants["Research"] = "research";
@@ -2264,7 +2355,9 @@ var getElementsFromData = function getElementsFromData(data, breadcrumbsID) {
2264
2355
  };
2265
2356
 
2266
2357
  function Breadcrumbs(props) {
2267
- var breadcrumbsData = props.breadcrumbsData,
2358
+ var _props$additionalStyl = props.additionalStyles,
2359
+ additionalStyles = _props$additionalStyl === void 0 ? {} : _props$additionalStyl,
2360
+ breadcrumbsData = props.breadcrumbsData,
2268
2361
  className = props.className,
2269
2362
  colorVariant = props.colorVariant,
2270
2363
  _props$id = props.id,
@@ -2278,10 +2371,13 @@ function Breadcrumbs(props) {
2278
2371
  var styles = useStyleConfig("Breadcrumb", {
2279
2372
  variant: variant
2280
2373
  });
2374
+
2375
+ var finalStyles = _extends({}, styles, additionalStyles);
2376
+
2281
2377
  var breadcrumbItems = getElementsFromData(breadcrumbsData, id);
2282
2378
  return createElement(Breadcrumb$1, {
2283
2379
  className: className,
2284
- __css: styles,
2380
+ __css: finalStyles,
2285
2381
  id: id
2286
2382
  }, breadcrumbItems);
2287
2383
  }
@@ -2295,26 +2391,13 @@ var ButtonTypes;
2295
2391
  ButtonTypes["Pill"] = "pill";
2296
2392
  ButtonTypes["Link"] = "link";
2297
2393
  ButtonTypes["SearchBar"] = "searchBar";
2394
+ ButtonTypes["NoBrand"] = "noBrand";
2298
2395
  })(ButtonTypes || (ButtonTypes = {}));
2299
2396
 
2300
- var variantMap = {};
2301
-
2302
- for (var type in ButtonTypes) {
2303
- variantMap[ButtonTypes[type]] = ButtonTypes[type];
2304
- }
2305
2397
  /**
2306
- * Map the ButtonType to the Button Chakra theme variant object. If a wrong
2307
- * value is passed (typically in non-Typescript scenarios), then the default
2308
- * is the "primary" variant.
2398
+ * Renders a simple `button` element with custom variant styles.
2309
2399
  */
2310
2400
 
2311
-
2312
- var getVariant$1 = function getVariant(buttonType) {
2313
- return variantMap[buttonType] || ButtonTypes.Primary;
2314
- };
2315
- /** Renders a simple `button` element with custom classes and modifiers. */
2316
-
2317
-
2318
2401
  function Button(props) {
2319
2402
  var _props$additionalStyl = props.additionalStyles,
2320
2403
  additionalStyles = _props$additionalStyl === void 0 ? {} : _props$additionalStyl,
@@ -2323,8 +2406,9 @@ function Button(props) {
2323
2406
  children = props.children,
2324
2407
  _props$className = props.className,
2325
2408
  className = _props$className === void 0 ? "" : _props$className,
2326
- disabled = props.disabled,
2327
- id = props.id,
2409
+ isDisabled = props.isDisabled,
2410
+ _props$id = props.id,
2411
+ id = _props$id === void 0 ? generateUUID() : _props$id,
2328
2412
  _props$mouseDown = props.mouseDown,
2329
2413
  mouseDown = _props$mouseDown === void 0 ? false : _props$mouseDown,
2330
2414
  onClick = props.onClick,
@@ -2338,7 +2422,7 @@ function Button(props) {
2338
2422
  var childCount = 0;
2339
2423
  var hasIcon = false;
2340
2424
  var variant;
2341
- var styles;
2425
+ var styles = {};
2342
2426
  Children.map(children, function (child) {
2343
2427
  childCount++;
2344
2428
 
@@ -2352,7 +2436,7 @@ function Button(props) {
2352
2436
  if (childCount === 1 && hasIcon) {
2353
2437
  variant = "iconOnly";
2354
2438
  } else {
2355
- variant = getVariant$1(buttonType);
2439
+ variant = getVariant(buttonType, ButtonTypes, ButtonTypes.Primary);
2356
2440
  }
2357
2441
 
2358
2442
  styles = useStyleConfig("Button", {
@@ -2363,7 +2447,7 @@ function Button(props) {
2363
2447
  "data-testid": "button",
2364
2448
  className: className,
2365
2449
  type: type,
2366
- disabled: disabled,
2450
+ isDisabled: isDisabled,
2367
2451
  __css: _extends({}, styles, additionalStyles)
2368
2452
  }, attributes, btnCallback), children);
2369
2453
  }
@@ -2395,10 +2479,10 @@ var HeadingLevels;
2395
2479
  HeadingLevels[HeadingLevels["Six"] = 6] = "Six";
2396
2480
  })(HeadingLevels || (HeadingLevels = {}));
2397
2481
 
2398
- var variantMap$1 = {};
2482
+ var variantMap = {};
2399
2483
 
2400
- for (var type$1 in HeadingDisplaySizes) {
2401
- variantMap$1[HeadingDisplaySizes[type$1]] = HeadingDisplaySizes[type$1];
2484
+ for (var type in HeadingDisplaySizes) {
2485
+ variantMap[HeadingDisplaySizes[type]] = HeadingDisplaySizes[type];
2402
2486
  }
2403
2487
  /**
2404
2488
  * Map the HeadingDisplaySizes to the Heading Chakra theme variant object. If a wrong
@@ -2407,8 +2491,8 @@ for (var type$1 in HeadingDisplaySizes) {
2407
2491
  */
2408
2492
 
2409
2493
 
2410
- var getVariant$2 = function getVariant(displaySize) {
2411
- return variantMap$1[displaySize] || null;
2494
+ var getVariant$1 = function getVariant(displaySize) {
2495
+ return variantMap[displaySize] || null;
2412
2496
  };
2413
2497
 
2414
2498
  function Heading(props) {
@@ -2422,7 +2506,7 @@ function Heading(props) {
2422
2506
  text = props.text,
2423
2507
  url = props.url,
2424
2508
  urlClass = props.urlClass;
2425
- var variant = displaySize ? getVariant$2(displaySize) : "h" + level;
2509
+ var variant = displaySize ? getVariant$1(displaySize) : "h" + level;
2426
2510
  var styles = useStyleConfig("Heading", {
2427
2511
  variant: variant
2428
2512
  }); // Combine native base styles with any additional styles.
@@ -2597,6 +2681,7 @@ function CardImage(props) {
2597
2681
  });
2598
2682
  } // CardHeading child-component
2599
2683
 
2684
+
2600
2685
  var CardHeading = Heading; // CardContent child-component
2601
2686
 
2602
2687
  function CardContent(props) {
@@ -2642,6 +2727,7 @@ function CardLinkBox(_ref) {
2642
2727
  * clickable.
2643
2728
  */
2644
2729
 
2730
+
2645
2731
  function CardLinkOverlay(_ref2) {
2646
2732
  var children = _ref2.children,
2647
2733
  mainActionLink = _ref2.mainActionLink;
@@ -2649,6 +2735,7 @@ function CardLinkOverlay(_ref2) {
2649
2735
  href: mainActionLink
2650
2736
  }, children) : createElement(Fragment, null, children);
2651
2737
  }
2738
+
2652
2739
  function Card(props) {
2653
2740
  var backgroundColor = props.backgroundColor,
2654
2741
  border = props.border,
@@ -2835,7 +2922,7 @@ function HelperErrorText(props) {
2835
2922
  }, children);
2836
2923
  }
2837
2924
 
2838
- var _excluded$K = ["isIndeterminate", "isChecked"];
2925
+ var _excluded$N = ["isIndeterminate", "isChecked"];
2839
2926
  var onChangeDefault = function onChangeDefault() {
2840
2927
  return;
2841
2928
  };
@@ -2844,7 +2931,7 @@ function CheckboxIcon(props) {
2844
2931
  // We don't need the `isIndeterminate` or `isChecked` props but it
2845
2932
  // causes rendering issues on the SVG element, so we remove them
2846
2933
  // before passing all the props to the `Icon` component.
2847
- var rest = _objectWithoutPropertiesLoose(props, _excluded$K);
2934
+ var rest = _objectWithoutPropertiesLoose(props, _excluded$N);
2848
2935
 
2849
2936
  return createElement(Icon$2, Object.assign({
2850
2937
  viewBox: "0 0 24 24"
@@ -3121,6 +3208,14 @@ var CheckboxGroup = /*#__PURE__*/forwardRef(function (props, ref) {
3121
3208
  }, footnote)));
3122
3209
  });
3123
3210
 
3211
+ var DatePickerTypes;
3212
+
3213
+ (function (DatePickerTypes) {
3214
+ DatePickerTypes["Full"] = "full";
3215
+ DatePickerTypes["Month"] = "month";
3216
+ DatePickerTypes["Year"] = "year";
3217
+ })(DatePickerTypes || (DatePickerTypes = {}));
3218
+
3124
3219
  var GridGaps;
3125
3220
 
3126
3221
  (function (GridGaps) {
@@ -3223,14 +3318,6 @@ function Form(props) {
3223
3318
  }, alteredChildren));
3224
3319
  }
3225
3320
 
3226
- var DatePickerTypes;
3227
-
3228
- (function (DatePickerTypes) {
3229
- DatePickerTypes["Full"] = "full";
3230
- DatePickerTypes["Month"] = "month";
3231
- DatePickerTypes["Year"] = "year";
3232
- })(DatePickerTypes || (DatePickerTypes = {}));
3233
-
3234
3321
  // HTML Input types as defined by MDN: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
3235
3322
  var TextInputTypes;
3236
3323
 
@@ -3244,7 +3331,8 @@ var TextInputTypes;
3244
3331
  TextInputTypes["textarea"] = "textarea";
3245
3332
  TextInputTypes["tel"] = "tel";
3246
3333
  TextInputTypes["url"] = "url";
3247
- })(TextInputTypes || (TextInputTypes = {}));
3334
+ })(TextInputTypes || (TextInputTypes = {})); // Only used internally in `TextInput`.
3335
+
3248
3336
 
3249
3337
  var TextInputFormats;
3250
3338
 
@@ -3258,7 +3346,8 @@ var TextInputFormats;
3258
3346
  TextInputFormats["tel"] = "(123) 123-1234";
3259
3347
  TextInputFormats["textarea"] = "";
3260
3348
  TextInputFormats["url"] = "https://domain.com";
3261
- })(TextInputFormats || (TextInputFormats = {}));
3349
+ })(TextInputFormats || (TextInputFormats = {})); // Only used internally in `TextInput` and `SearchBar`.
3350
+
3262
3351
 
3263
3352
  var TextInputVariants;
3264
3353
 
@@ -3318,6 +3407,7 @@ var TextInput = /*#__PURE__*/forwardRef(function (props, ref) {
3318
3407
  _props$attributes = props.attributes,
3319
3408
  attributes = _props$attributes === void 0 ? {} : _props$attributes,
3320
3409
  className = props.className,
3410
+ defaultValue = props.defaultValue,
3321
3411
  helperText = props.helperText,
3322
3412
  _props$id = props.id,
3323
3413
  id = _props$id === void 0 ? generateUUID() : _props$id,
@@ -3329,6 +3419,7 @@ var TextInput = /*#__PURE__*/forwardRef(function (props, ref) {
3329
3419
  _props$isRequired = props.isRequired,
3330
3420
  isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
3331
3421
  labelText = props.labelText,
3422
+ name = props.name,
3332
3423
  onChange = props.onChange,
3333
3424
  placeholder = props.placeholder,
3334
3425
  _props$showHelperInva = props.showHelperInvalidText,
@@ -3337,6 +3428,8 @@ var TextInput = /*#__PURE__*/forwardRef(function (props, ref) {
3337
3428
  showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
3338
3429
  _props$showOptReqLabe = props.showOptReqLabel,
3339
3430
  showOptReqLabel = _props$showOptReqLabe === void 0 ? true : _props$showOptReqLabe,
3431
+ _props$step = props.step,
3432
+ step = _props$step === void 0 ? 1 : _props$step,
3340
3433
  _props$type = props.type,
3341
3434
  type = _props$type === void 0 ? TextInputTypes.text : _props$type,
3342
3435
  value = props.value,
@@ -3371,17 +3464,22 @@ var TextInput = /*#__PURE__*/forwardRef(function (props, ref) {
3371
3464
  options = isHidden ? {
3372
3465
  id: id,
3373
3466
  "aria-hidden": isHidden,
3467
+ name: name,
3374
3468
  onChange: onChange,
3375
3469
  ref: ref
3376
3470
  } : _extends({
3377
- id: id,
3378
3471
  "aria-required": isRequired,
3472
+ defaultValue: defaultValue,
3473
+ id: id,
3379
3474
  isDisabled: isDisabled,
3380
3475
  isRequired: isRequired,
3381
3476
  isInvalid: isInvalid,
3382
3477
  placeholder: placeholder,
3478
+ name: name,
3383
3479
  onChange: onChange,
3384
- ref: ref
3480
+ ref: ref,
3481
+ // The `step` attribute is useful for the number type.
3482
+ step: type === TextInputTypes.number ? step : null
3385
3483
  }, attributes); // For `input` and `textarea`, all attributes are the same but `input`
3386
3484
  // also needs `type` and `value` to render correctly.
3387
3485
 
@@ -3505,7 +3603,8 @@ var DateRangeRow = function DateRangeRow(_ref3) {
3505
3603
  isDateRange = _ref3.isDateRange,
3506
3604
  children = _ref3.children;
3507
3605
  return isDateRange ? React__default.createElement(FormRow, {
3508
- id: id + "-form-row"
3606
+ id: id + "-form-row",
3607
+ gap: GridGaps.ExtraSmall
3509
3608
  }, children) : React__default.createElement(React__default.Fragment, null, children);
3510
3609
  };
3511
3610
  /**
@@ -3715,12 +3814,14 @@ var DatePicker = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
3715
3814
  var global = {
3716
3815
  // styles for the `body` element
3717
3816
  body: {
3817
+ boxSizing: "border-box",
3718
3818
  bg: "ui.white",
3719
3819
  color: "ui.black",
3720
3820
  fontFamily: "body",
3721
- fontSize: 0,
3821
+ fontSize: "0",
3722
3822
  fontWeight: "300",
3723
- lineHeight: "1.5"
3823
+ lineHeight: "1.5",
3824
+ overflowX: "hidden"
3724
3825
  },
3725
3826
  // styles for the `a` element
3726
3827
  a: {
@@ -3728,20 +3829,23 @@ var global = {
3728
3829
  },
3729
3830
  svg: {
3730
3831
  display: "inline"
3832
+ },
3833
+ p: {
3834
+ margin: "0 0 var(--nypl-space-s"
3731
3835
  }
3732
3836
  };
3733
3837
 
3734
3838
  /**
3735
- * Breakpoints from "src/styles/base/_02-breakpoints.scss"
3839
+ * Breakpoints from "src/styles/base/_01-breakpoints.scss"
3736
3840
  * How to use Chakra responsive styles: https://chakra-ui.com/docs/features/responsive-styles
3737
3841
  *
3738
- * Chakra Value | DS Variable | EM/PX value
3739
- * --------------------------------------------------
3740
- * sm | --breakpoint-small | 20em/320px
3741
- * md | --breakpoint-medium | 38em/600px
3742
- * lg | --breakpoint-large | 60em/960px
3743
- * xl | --breakpoint-xl | 80em/1280px
3744
- * 2xl | N/A | 96em/1536px
3842
+ * Chakra Value | DS Variable | EM/PX value
3843
+ * ------------------------------------------------------
3844
+ * sm | --nypl-breakpoint-small | 20em/320px
3845
+ * md | --nypl-breakpoint-medium | 38em/600px
3846
+ * lg | --nypl-breakpoint-large | 60em/960px
3847
+ * xl | --nypl-breakpoint-xl | 80em/1280px
3848
+ * 2xl | N/A | 96em/1536px
3745
3849
  *
3746
3850
  * @Note Chakra provides a 2xl option while the DS does not. We don't
3747
3851
  * recommend using this value until further notice.
@@ -4026,6 +4130,15 @@ var Accordion$1 = {
4026
4130
  };
4027
4131
 
4028
4132
  // Variant styling
4133
+ var blogs = {
4134
+ bg: "section.blogs.secondary",
4135
+ color: "ui.black",
4136
+ a: {
4137
+ _hover: {
4138
+ color: "ui.gray.xdark"
4139
+ }
4140
+ }
4141
+ };
4029
4142
  var booksAndMore = {
4030
4143
  bg: "section.books-and-more.secondary"
4031
4144
  };
@@ -4114,6 +4227,7 @@ var Breadcrumb = {
4114
4227
  },
4115
4228
  // Available variants:
4116
4229
  variants: {
4230
+ blogs: blogs,
4117
4231
  booksAndMore: booksAndMore,
4118
4232
  locations: locations,
4119
4233
  research: research,
@@ -4151,7 +4265,7 @@ var baseStyle = {
4151
4265
  opacity: "1"
4152
4266
  }
4153
4267
  }; // Styles for different visual variants:
4154
- // primary, secondary, link, pill, iconOnly, callout
4268
+ // primary, secondary, link, pill, iconOnly, callout, searchbar, noBrand
4155
4269
 
4156
4270
  var primary = {
4157
4271
  bg: "ui.link.primary",
@@ -4227,10 +4341,17 @@ var searchBar = /*#__PURE__*/_extends({}, primary, {
4227
4341
  lineHeight: "1.75"
4228
4342
  });
4229
4343
 
4344
+ var noBrand = /*#__PURE__*/_extends({}, primary, {
4345
+ bg: "ui.black",
4346
+ color: "ui.white",
4347
+ _hover: {
4348
+ bg: "ui.gray.xdark"
4349
+ }
4350
+ });
4351
+
4230
4352
  var Button$1 = {
4231
4353
  baseStyle: baseStyle,
4232
4354
  // Available variants:
4233
- // primary, secondary, link, pill, iconOnly, searchBar
4234
4355
  variants: {
4235
4356
  primary: primary,
4236
4357
  secondary: secondary,
@@ -4238,7 +4359,8 @@ var Button$1 = {
4238
4359
  pill: pill,
4239
4360
  iconOnly: iconOnly,
4240
4361
  callout: callout,
4241
- searchBar: searchBar
4362
+ searchBar: searchBar,
4363
+ noBrand: noBrand
4242
4364
  },
4243
4365
  // Default values
4244
4366
  defaultProps: {
@@ -4275,24 +4397,24 @@ var getBodyPaddingStyles = function getBodyPaddingStyles(_ref) {
4275
4397
  bodyPadding = "s";
4276
4398
 
4277
4399
  if (hasImage) {
4278
- bodyPadding = "0 var(--space-s) var(--space-s)";
4400
+ bodyPadding = "0 var(--nypl-space-s) var(--nypl-space-s)";
4279
4401
  }
4280
4402
  }
4281
4403
 
4282
4404
  if (isRow && border) {
4283
- bodyPadding = "var(--space-s)";
4405
+ bodyPadding = "var(--nypl-space-s)";
4284
4406
  }
4285
4407
 
4286
4408
  if (isRow && border && hasImage) {
4287
4409
  bodyPadding = {
4288
- base: "0 var(--space-s) var(--space-s)",
4289
- md: "var(--space-s) var(--space-s) var(--space-s) 0"
4410
+ base: "0 var(--nypl-space-s) var(--nypl-space-s)",
4411
+ md: "var(--nypl-space-s) var(--nypl-space-s) var(--nypl-space-s) 0"
4290
4412
  };
4291
4413
 
4292
4414
  if (imageAtEnd) {
4293
4415
  bodyPadding = {
4294
- base: "var(--space-s) var(--space-s) 0",
4295
- md: "var(--space-s) 0 var(--space-s) var(--space-s)"
4416
+ base: "var(--nypl-space-s) var(--nypl-space-s) 0",
4417
+ md: "var(--nypl-space-s) 0 var(--nypl-space-s) var(--nypl-space-s)"
4296
4418
  };
4297
4419
  }
4298
4420
  }
@@ -4384,7 +4506,7 @@ var CardActions$1 = {
4384
4506
  } : {};
4385
4507
  return _extends({
4386
4508
  marginBottom: "xs",
4387
- columnGap: "var(--space-xs)",
4509
+ columnGap: "var(--nypl-space-xs)",
4388
4510
  display: "flex",
4389
4511
  _last: {
4390
4512
  marginBottom: "0"
@@ -4427,8 +4549,8 @@ var CardImage$1 = {
4427
4549
  textAlign: "left",
4428
4550
  alignItems: center ? "center" : null,
4429
4551
  margin: {
4430
- base: imageAtEnd ? "var(--space-m) 0 0" : null,
4431
- md: imageAtEnd ? "0 0 0 var(--space-m)" : "0 var(--space-m) 0 0"
4552
+ base: imageAtEnd ? "var(--nypl-space-m) 0 0" : null,
4553
+ md: imageAtEnd ? "0 0 0 var(--nypl-space-m)" : "0 var(--nypl-space-m) 0 0"
4432
4554
  }
4433
4555
  }, size) : {
4434
4556
  marginBottom: "xs"
@@ -4817,7 +4939,7 @@ var DatePicker$1 = {
4817
4939
  subLabels: {
4818
4940
  label: {
4819
4941
  fontSize: "12px",
4820
- marginBottom: "xs"
4942
+ marginBottom: "0"
4821
4943
  }
4822
4944
  }
4823
4945
  }
@@ -5369,7 +5491,7 @@ var List = {
5369
5491
  borderTop: "3px solid",
5370
5492
  borderColor: "section.research.primary",
5371
5493
  margin: "0",
5372
- padding: "var(--space-xs) 0 0"
5494
+ padding: "var(--nypl-space-xs) 0 0"
5373
5495
  },
5374
5496
  dl: {
5375
5497
  display: "grid",
@@ -5378,7 +5500,7 @@ var List = {
5378
5500
  md: "max(250px) 1fr"
5379
5501
  },
5380
5502
  gridTemplateRows: "1fr",
5381
- margin: "var(--space-xs) 0 0"
5503
+ margin: "var(--nypl-space-xs) 0 0"
5382
5504
  },
5383
5505
  dt: {
5384
5506
  borderTop: "1px solid",
@@ -5439,7 +5561,7 @@ var Notification = {
5439
5561
  bg: bg,
5440
5562
  display: "flex",
5441
5563
  fontSize: "-1",
5442
- padding: "var(--space) var(--space-l)",
5564
+ padding: "var(--nypl-space-s) var(--nypl-space-l)",
5443
5565
  position: "relative",
5444
5566
  textAlign: centered ? "center" : null,
5445
5567
  borderRadius: noMargin ? "0" : "4px",
@@ -5447,7 +5569,7 @@ var Notification = {
5447
5569
  container: {
5448
5570
  margin: "auto",
5449
5571
  width: "100%",
5450
- maxWidth: "var(--breakpoint-large)"
5572
+ maxWidth: "var(--nypl-breakpoint-large)"
5451
5573
  },
5452
5574
  dismissibleButton: {
5453
5575
  border: "none",
@@ -5482,7 +5604,7 @@ var NotificationContent = {
5482
5604
  justifyContent: "center",
5483
5605
  content: {
5484
5606
  width: "100%",
5485
- paddingLeft: alignText ? "calc(var(--space-m) + var(--space-s))" : null,
5607
+ paddingLeft: alignText ? "calc(var(--nypl-space-m) + var(--nypl-space-s))" : null,
5486
5608
  color: notificationType === NotificationTypes.Warning ? "brand.primary" : "currentColor"
5487
5609
  }
5488
5610
  };
@@ -5537,6 +5659,75 @@ var Pagination = {
5537
5659
  }
5538
5660
  };
5539
5661
 
5662
+ var ProgressIndicatorSizes;
5663
+
5664
+ (function (ProgressIndicatorSizes) {
5665
+ ProgressIndicatorSizes["Default"] = "default";
5666
+ ProgressIndicatorSizes["Small"] = "small";
5667
+ })(ProgressIndicatorSizes || (ProgressIndicatorSizes = {}));
5668
+
5669
+ var ProgressIndicatorTypes;
5670
+
5671
+ (function (ProgressIndicatorTypes) {
5672
+ ProgressIndicatorTypes["Circular"] = "circular";
5673
+ ProgressIndicatorTypes["Linear"] = "linear";
5674
+ })(ProgressIndicatorTypes || (ProgressIndicatorTypes = {}));
5675
+
5676
+ var ProgressIndicator = {
5677
+ parts: ["circular", "circularLabel", "linear", "linearContainer", "linearPercentage"],
5678
+ baseStyle: function baseStyle(_ref) {
5679
+ var darkMode = _ref.darkMode,
5680
+ size = _ref.size;
5681
+ return {
5682
+ color: darkMode ? "ui.white" : "ui.black",
5683
+ circular: {
5684
+ // Note: we have to target the SVG HTMl elements in order
5685
+ // to override the default styles.
5686
+ svg: {
5687
+ height: size === ProgressIndicatorSizes.Small ? "24px" : "48px",
5688
+ width: size === ProgressIndicatorSizes.Small ? "24px" : "48px",
5689
+ display: "block",
5690
+ circle: {
5691
+ _first: {
5692
+ stroke: darkMode ? "ui.gray.dark" : "ui.gray.light-cool"
5693
+ },
5694
+ _last: {
5695
+ stroke: darkMode ? "ui.white" : "ui.link.primary"
5696
+ }
5697
+ }
5698
+ }
5699
+ },
5700
+ circularContainer: {
5701
+ alignItems: "center",
5702
+ display: "flex",
5703
+ flexDirection: "column",
5704
+ width: "fit-content"
5705
+ },
5706
+ linear: {
5707
+ // Hard to target this specific element without using
5708
+ // "Progress" as the key name in index.ts
5709
+ "> div": {
5710
+ bg: darkMode ? "ui.white" : "ui.link.primary"
5711
+ },
5712
+ flex: 25,
5713
+ bg: darkMode ? "ui.gray.dark" : "ui.gray.light-cool",
5714
+ height: {
5715
+ base: "4px",
5716
+ md: size === ProgressIndicatorSizes.Small ? "4px" : "8px"
5717
+ }
5718
+ },
5719
+ linearContainer: {
5720
+ display: "flex",
5721
+ alignItems: "center"
5722
+ },
5723
+ linearPercentage: {
5724
+ padding: "0 var(--nypl-space-xs)",
5725
+ flex: 1
5726
+ }
5727
+ };
5728
+ }
5729
+ };
5730
+
5540
5731
  var baseStyleControl$1 = {
5541
5732
  verticalAlign: "middle",
5542
5733
  transitionProperty: "box-shadow",
@@ -5754,17 +5945,17 @@ var SkeletonLoader = {
5754
5945
  }; // Fade animation
5755
5946
 
5756
5947
  var fade = function fade() {
5757
- var _keyframes;
5758
-
5759
- return keyframes((_keyframes = {
5948
+ return keyframes({
5760
5949
  from: {
5761
5950
  opacity: 0.9
5951
+ },
5952
+ "50%": {
5953
+ opacity: 0.7
5954
+ },
5955
+ to: {
5956
+ opacity: 0.9
5762
5957
  }
5763
- }, _keyframes["50%"] = {
5764
- opacity: 0.7
5765
- }, _keyframes.to = {
5766
- opacity: 0.9
5767
- }, _keyframes));
5958
+ });
5768
5959
  }; // Overriding Chakra's Skeleton animation.
5769
5960
 
5770
5961
 
@@ -5776,6 +5967,78 @@ var Skeleton = {
5776
5967
  }
5777
5968
  };
5778
5969
 
5970
+ // Margins around the static display values.
5971
+ var staticValues = {
5972
+ marginTop: "xs",
5973
+ marginBottom: "xs",
5974
+ marginRight: "s",
5975
+ marginLeft: "s"
5976
+ };
5977
+ var CustomSlider = {
5978
+ parts: ["container", "helper", "leftValue", "rightValue", "textInput", "filledTrack", "track", "thumb"],
5979
+ baseStyle: function baseStyle(_ref) {
5980
+ var isDisabled = _ref.isDisabled,
5981
+ isInvalid = _ref.isInvalid,
5982
+ isRangeSlider = _ref.isRangeSlider,
5983
+ showBoxes = _ref.showBoxes;
5984
+ var baseColor = "ui.link.primary";
5985
+
5986
+ if (isInvalid) {
5987
+ baseColor = "ui.error.primary";
5988
+ } else if (isDisabled) {
5989
+ baseColor = "ui.gray.light-cool";
5990
+ }
5991
+
5992
+ return {
5993
+ container: {
5994
+ display: "flex",
5995
+ alignItems: "center"
5996
+ },
5997
+ helper: {
5998
+ marginTop: "xs"
5999
+ },
6000
+ leftValue: _extends({}, staticValues, {
6001
+ // If the text input boxes are shown, then there already is a
6002
+ // margin, so we can set this static value to "0". But for the
6003
+ // single Slider, we *do* need the margin set.
6004
+ marginLeft: showBoxes && isRangeSlider ? "0" : "s"
6005
+ }),
6006
+ rightValue: _extends({}, staticValues, {
6007
+ // If the text input boxes are shown, then there already is
6008
+ // a margin, so we can set this static value to "0".
6009
+ marginRight: showBoxes ? "0" : "s"
6010
+ }),
6011
+ textInput: {
6012
+ // Allows for three or more digits present in the
6013
+ // min or max value text input.
6014
+ minWidth: "65px",
6015
+ color: isInvalid ? "ui.error.primary" : "ui.black"
6016
+ },
6017
+ // Filled track doesn't have a _disabled or _invalid state...
6018
+ // so we manually do it through the props.
6019
+ filledTrack: {
6020
+ bgColor: baseColor
6021
+ },
6022
+ track: {
6023
+ bgColor: "ui.gray.light-cool",
6024
+ _disabled: {
6025
+ bgColor: "ui.gray.light-cool"
6026
+ }
6027
+ },
6028
+ thumb: {
6029
+ border: "1px solid",
6030
+ // Thumb doesn't have an _invalid state...
6031
+ // so we manually do it through the props.
6032
+ borderColor: baseColor,
6033
+ boxShadow: "none",
6034
+ _active: {
6035
+ transform: "translateY(-50%) scale(1.0)"
6036
+ }
6037
+ }
6038
+ };
6039
+ }
6040
+ };
6041
+
5779
6042
  var StatusBadge = {
5780
6043
  baseStyle: {
5781
6044
  borderRadius: "base",
@@ -6261,11 +6524,13 @@ var theme = /*#__PURE__*/extendTheme( /*#__PURE__*/_extends({
6261
6524
  List: List
6262
6525
  }, NotificationStyles, {
6263
6526
  Pagination: Pagination,
6527
+ ProgressIndicator: ProgressIndicator,
6264
6528
  Radio: Radio,
6265
6529
  RadioGroup: RadioGroup,
6266
6530
  SearchBar: SearchBar,
6267
6531
  Skeleton: Skeleton,
6268
6532
  SkeletonLoader: SkeletonLoader,
6533
+ CustomSlider: CustomSlider,
6269
6534
  StatusBadge: StatusBadge,
6270
6535
  Tabs: CustomTabs
6271
6536
  }, TemplateStyles, {
@@ -6299,14 +6564,15 @@ var HeroTypes;
6299
6564
  HeroTypes["Tertiary"] = "tertiary";
6300
6565
  HeroTypes["Campaign"] = "campaign";
6301
6566
  HeroTypes["FiftyFifty"] = "fiftyfifty";
6302
- })(HeroTypes || (HeroTypes = {}));
6567
+ })(HeroTypes || (HeroTypes = {})); // Only used for internal purposes.
6568
+
6303
6569
 
6304
6570
  var HeroSecondaryTypes = [HeroTypes.Secondary, HeroTypes.SecondaryBooksAndMore, HeroTypes.SecondaryLocations, HeroTypes.SecondaryResearch, HeroTypes.SecondaryWhatsOn];
6305
6571
 
6306
- var variantMap$2 = {};
6572
+ var variantMap$1 = {};
6307
6573
 
6308
- for (var type$2 in HeroTypes) {
6309
- variantMap$2[HeroTypes[type$2]] = HeroTypes[type$2];
6574
+ for (var type$1 in HeroTypes) {
6575
+ variantMap$1[HeroTypes[type$1]] = HeroTypes[type$1];
6310
6576
  }
6311
6577
  /**
6312
6578
  * Map the HeroTypes to the Hero Chakra theme variant object. If a wrong
@@ -6315,8 +6581,8 @@ for (var type$2 in HeroTypes) {
6315
6581
  */
6316
6582
 
6317
6583
 
6318
- var getVariant$3 = function getVariant(type) {
6319
- return variantMap$2[type] || HeroTypes.Primary;
6584
+ var getVariant$2 = function getVariant(type) {
6585
+ return variantMap$1[type] || HeroTypes.Primary;
6320
6586
  };
6321
6587
 
6322
6588
  function Hero$1(props) {
@@ -6328,7 +6594,7 @@ function Hero$1(props) {
6328
6594
  image = props.image,
6329
6595
  locationDetails = props.locationDetails,
6330
6596
  subHeaderText = props.subHeaderText;
6331
- var variant = getVariant$3(heroType);
6597
+ var variant = getVariant$2(heroType);
6332
6598
  var styles = useMultiStyleConfig("Hero", {
6333
6599
  variant: variant
6334
6600
  });
@@ -7096,6 +7362,88 @@ var Pagination$1 = function Pagination(props) {
7096
7362
  }, previousLiLink, getPaginationNumbers(currentPage), nextLiLink));
7097
7363
  };
7098
7364
 
7365
+ /**
7366
+ * A component that displays a progress status for any task that takes a long
7367
+ * time to complete or consists of multiple steps. Examples include downloading,
7368
+ * uploading, or processing.
7369
+ */
7370
+
7371
+ var ProgressIndicator$1 = function ProgressIndicator(props) {
7372
+ var _props$darkMode = props.darkMode,
7373
+ darkMode = _props$darkMode === void 0 ? false : _props$darkMode,
7374
+ _props$id = props.id,
7375
+ id = _props$id === void 0 ? generateUUID() : _props$id,
7376
+ _props$indicatorType = props.indicatorType,
7377
+ indicatorType = _props$indicatorType === void 0 ? ProgressIndicatorTypes.Linear : _props$indicatorType,
7378
+ _props$isIndeterminat = props.isIndeterminate,
7379
+ isIndeterminate = _props$isIndeterminat === void 0 ? false : _props$isIndeterminat,
7380
+ labelText = props.labelText,
7381
+ _props$showLabel = props.showLabel,
7382
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
7383
+ _props$size = props.size,
7384
+ size = _props$size === void 0 ? ProgressIndicatorSizes.Default : _props$size,
7385
+ _props$value = props.value,
7386
+ value = _props$value === void 0 ? 0 : _props$value;
7387
+ var styles = useMultiStyleConfig("ProgressIndicator", {
7388
+ darkMode: darkMode,
7389
+ size: size
7390
+ });
7391
+ var finalValue = value;
7392
+
7393
+ if (finalValue < 0 || finalValue > 100) {
7394
+ console.warn("ProgressIndicator: pass in a `value` between 0 and 100. Defaulting to 0.");
7395
+ finalValue = 0;
7396
+ }
7397
+
7398
+ var progressProps = {
7399
+ id: id,
7400
+ // If the label is visually shown, associate it with the progress indicator.
7401
+ // Otherwise, the `aria-label` will be added.
7402
+ "aria-label": showLabel ? null : labelText,
7403
+ "aria-labelledby": showLabel ? id + "-label" : null,
7404
+ // If `isIndeterminate` is true, then it overrides the `value` prop.
7405
+ isIndeterminate: isIndeterminate || null,
7406
+ value: isIndeterminate ? null : finalValue
7407
+ };
7408
+
7409
+ var progressComponent = function progressComponent(indicatorType) {
7410
+ // Only display the percentage text for the default size, not in the
7411
+ // indeterminate state, and when `showLabel` is true.
7412
+ if (indicatorType === ProgressIndicatorTypes.Circular) {
7413
+ // For the small size, since the label won't be visible, we need to add
7414
+ // it to the parent component's `aria-label` attribute.
7415
+ if (size === ProgressIndicatorSizes.Small) {
7416
+ progressProps["aria-label"] = labelText;
7417
+ }
7418
+
7419
+ return React__default.createElement(Box, {
7420
+ __css: styles.circularContainer
7421
+ }, React__default.createElement(CircularProgress, Object.assign({}, progressProps, {
7422
+ sx: styles.circular
7423
+ }), showLabel && !isIndeterminate && size !== ProgressIndicatorSizes.Small && React__default.createElement(CircularProgressLabel, null, finalValue, "%")), showLabel && size !== ProgressIndicatorSizes.Small && React__default.createElement(Label, {
7424
+ id: id + "-label",
7425
+ htmlFor: id
7426
+ }, labelText));
7427
+ } // The Linear progress indicator is the default.
7428
+
7429
+
7430
+ return React__default.createElement(React__default.Fragment, null, showLabel && React__default.createElement(Label, {
7431
+ id: id + "-label",
7432
+ htmlFor: id
7433
+ }, labelText), React__default.createElement(Box, {
7434
+ __css: styles.linearContainer
7435
+ }, React__default.createElement(Progress, Object.assign({}, progressProps, {
7436
+ sx: styles.linear
7437
+ })), showLabel && !isIndeterminate && React__default.createElement(Box, {
7438
+ __css: styles.linearPercentage
7439
+ }, finalValue, "%")));
7440
+ };
7441
+
7442
+ return React__default.createElement(Box, {
7443
+ __css: styles
7444
+ }, progressComponent(indicatorType));
7445
+ };
7446
+
7099
7447
  var Radio$1 = /*#__PURE__*/forwardRef(function (props, ref) {
7100
7448
  var className = props.className,
7101
7449
  helperText = props.helperText,
@@ -7252,6 +7600,7 @@ var RadioGroup$1 = /*#__PURE__*/forwardRef(function (props, ref) {
7252
7600
  }, footnote)));
7253
7601
  });
7254
7602
 
7603
+ // Only used for internal purposes.
7255
7604
  var SelectTypes;
7256
7605
 
7257
7606
  (function (SelectTypes) {
@@ -7387,7 +7736,8 @@ function SearchBar$1(props) {
7387
7736
  var helperErrorTextID = generateUUID();
7388
7737
  var ariaDescribedby = helperErrorTextID;
7389
7738
  var footnote = isInvalid ? invalidText : helperErrorText;
7390
- var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText; // Render the `Select` component.
7739
+ var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText;
7740
+ var textInputPlaceholder = (textInputProps == null ? void 0 : textInputProps.placeholder) + " " + (isRequired ? "(Required)" : ""); // Render the `Select` component.
7391
7741
 
7392
7742
  var selectElem = selectProps && createElement(Select$1, Object.assign({
7393
7743
  id: generateUUID(),
@@ -7404,9 +7754,12 @@ function SearchBar$1(props) {
7404
7754
  var textInputNative = textInputProps && createElement(TextInput, Object.assign({
7405
7755
  id: generateUUID(),
7406
7756
  labelText: textInputProps == null ? void 0 : textInputProps.labelText,
7407
- placeholder: textInputProps == null ? void 0 : textInputProps.placeholder,
7757
+ placeholder: textInputPlaceholder,
7758
+ onChange: textInputProps == null ? void 0 : textInputProps.onChange,
7759
+ name: textInputProps == null ? void 0 : textInputProps.name,
7408
7760
  type: TextInputTypes.text,
7409
- variantType: selectElem ? TextInputVariants.SearchBarSelect : TextInputVariants.SearchBar
7761
+ variantType: selectElem ? TextInputVariants.SearchBarSelect : TextInputVariants.SearchBar,
7762
+ value: textInputProps == null ? void 0 : textInputProps.value
7410
7763
  }, stateProps)); // Render the `Button` component.
7411
7764
 
7412
7765
  var buttonElem = createElement(Button, {
@@ -7414,7 +7767,7 @@ function SearchBar$1(props) {
7414
7767
  buttonType: ButtonTypes.SearchBar,
7415
7768
  type: "submit",
7416
7769
  onClick: buttonOnClick,
7417
- disabled: isDisabled
7770
+ isDisabled: isDisabled
7418
7771
  }, createElement(Icon, {
7419
7772
  name: IconNames.Search,
7420
7773
  size: IconSizes.Small,
@@ -7545,6 +7898,224 @@ function SkeletonLoader$1(props) {
7545
7898
  })))));
7546
7899
  }
7547
7900
 
7901
+ /**
7902
+ * The `Slider` component renders a singular value slider or a range slider
7903
+ * with a min and max value. The value(s) can be updated through the slider
7904
+ * thumb(s) or through the text input(s) elements.
7905
+ */
7906
+
7907
+ function Slider(props) {
7908
+ var className = props.className,
7909
+ _props$defaultValue = props.defaultValue,
7910
+ defaultValue = _props$defaultValue === void 0 ? 0 : _props$defaultValue,
7911
+ helperText = props.helperText,
7912
+ _props$id = props.id,
7913
+ id = _props$id === void 0 ? generateUUID() : _props$id,
7914
+ invalidText = props.invalidText,
7915
+ _props$isDisabled = props.isDisabled,
7916
+ isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
7917
+ _props$isInvalid = props.isInvalid,
7918
+ isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
7919
+ _props$isRangeSlider = props.isRangeSlider,
7920
+ isRangeSlider = _props$isRangeSlider === void 0 ? false : _props$isRangeSlider,
7921
+ _props$isRequired = props.isRequired,
7922
+ isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
7923
+ labelText = props.labelText,
7924
+ _props$max = props.max,
7925
+ max = _props$max === void 0 ? 100 : _props$max,
7926
+ _props$min = props.min,
7927
+ min = _props$min === void 0 ? 0 : _props$min,
7928
+ name = props.name,
7929
+ _onChange = props.onChange,
7930
+ _props$optReqFlag = props.optReqFlag,
7931
+ optReqFlag = _props$optReqFlag === void 0 ? true : _props$optReqFlag,
7932
+ _props$showBoxes = props.showBoxes,
7933
+ showBoxes = _props$showBoxes === void 0 ? true : _props$showBoxes,
7934
+ _props$showHelperInva = props.showHelperInvalidText,
7935
+ showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
7936
+ _props$showLabel = props.showLabel,
7937
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
7938
+ _props$showValues = props.showValues,
7939
+ showValues = _props$showValues === void 0 ? true : _props$showValues,
7940
+ _props$step = props.step,
7941
+ step = _props$step === void 0 ? 1 : _props$step;
7942
+
7943
+ var _React$useState = useState(defaultValue),
7944
+ currentValue = _React$useState[0],
7945
+ setCurrentValue = _React$useState[1];
7946
+
7947
+ var finalIsInvalid = isInvalid; // In the Range Slider, if the first value is bigger than the second value,
7948
+ // then set the invalid state.
7949
+
7950
+ if (isRangeSlider && currentValue[0] > currentValue[1]) {
7951
+ finalIsInvalid = true;
7952
+ }
7953
+
7954
+ var optReqText = isRequired ? "Required" : "Optional";
7955
+ var footnote = finalIsInvalid ? invalidText : helperText;
7956
+ var styles = useMultiStyleConfig("CustomSlider", {
7957
+ isDisabled: isDisabled,
7958
+ isInvalid: finalIsInvalid,
7959
+ isRangeSlider: isRangeSlider,
7960
+ showBoxes: showBoxes
7961
+ }); // Props that the `Slider` and `RangeSlider` Chakra
7962
+ // components both use.
7963
+
7964
+ var sliderSharedProps = {
7965
+ // Don't focus on the thumbs for every small change.
7966
+ focusThumbOnChange: false,
7967
+ id: id,
7968
+ isDisabled: isDisabled,
7969
+ max: max,
7970
+ min: min,
7971
+ name: name,
7972
+ onChange: function onChange(val) {
7973
+ return setCurrentValue(val);
7974
+ },
7975
+ // Call the passed in `onChange` function prop to get the
7976
+ // *final* value once a user stops dragging the slider.
7977
+ onChangeEnd: function onChangeEnd(val) {
7978
+ return _onChange(val);
7979
+ },
7980
+ step: step
7981
+ }; // Props that the two `TextInput` components use.
7982
+
7983
+ var textInputSharedProps = {
7984
+ attributes: {
7985
+ max: max,
7986
+ min: min
7987
+ },
7988
+ isDisabled: isDisabled,
7989
+ isInvalid: finalIsInvalid,
7990
+ isRequired: isRequired,
7991
+ // Never show the label or helper text for the `TextInput` component.
7992
+ showHelperInvalidText: false,
7993
+ showLabel: false,
7994
+ step: step,
7995
+ type: TextInputTypes.number
7996
+ };
7997
+ /**
7998
+ * This returns either the "start" or "end" `TextInput` component. Note that
7999
+ * the "end" `TextInput` component is always rendered but the "start" is
8000
+ * only used for the `isRangeSlider` case.
8001
+ */
8002
+
8003
+ var getTextInput = function getTextInput(type) {
8004
+ var inputProps = {
8005
+ start: _extends({
8006
+ // We only want the value for this box in the `isRangeSlider` case.
8007
+ value: isRangeSlider ? currentValue[0].toString() : "",
8008
+ onChange: function onChange(val) {
8009
+ // If the value is empty, set it to 0.
8010
+ var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // Only update the first value in the range.
8011
+
8012
+ var newValue = [nextValue, currentValue[1]];
8013
+ setCurrentValue(newValue); // If the text input was updated directly,
8014
+ // send the data back to the user.
8015
+
8016
+ _onChange && _onChange(newValue);
8017
+ }
8018
+ }, textInputSharedProps),
8019
+ end: _extends({
8020
+ // This text input *always* shows. In the default case, we only
8021
+ // keep track of one value. For the `isRangeSlider` case, we keep
8022
+ // track of an array but only want the second value.
8023
+ value: isRangeSlider ? currentValue[1].toString() : currentValue.toString(),
8024
+ onChange: function onChange(val) {
8025
+ // If the value is empty, set it to 0.
8026
+ var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // If the value entered is bigger than the max value,
8027
+ // then set it to the max value.
8028
+
8029
+ if (nextValue > max) {
8030
+ nextValue = max;
8031
+ } // Only update the second value in the `isRangeSlider` case,
8032
+ // or the single value in the default case.
8033
+
8034
+
8035
+ var newValue = isRangeSlider ? [currentValue[0], nextValue] : nextValue;
8036
+ setCurrentValue(newValue); // If the text input was updated directly,
8037
+ // send the data back to the user.
8038
+
8039
+ _onChange && _onChange(newValue);
8040
+ }
8041
+ }, textInputSharedProps)
8042
+ };
8043
+ var updatedLabel = !isRangeSlider ? labelText : labelText + " - " + type + " value";
8044
+ return createElement(TextInput, Object.assign({
8045
+ id: id + "-textInput-" + type,
8046
+ labelText: updatedLabel,
8047
+ additionalStyles: _extends({}, styles.textInput, {
8048
+ // Specific margins for each text input to
8049
+ // push the elements inside.
8050
+ marginRight: type === "start" ? "s" : null,
8051
+ marginLeft: type === "end" ? "s" : null
8052
+ })
8053
+ }, inputProps[type]));
8054
+ };
8055
+ /**
8056
+ * Returns a Chakra `Slider` or `RangeSlider` component based on the
8057
+ * `isRangeSlider` prop from the DS `Slider` component.
8058
+ */
8059
+
8060
+
8061
+ var getSliderType = function getSliderType() {
8062
+ return isRangeSlider ? createElement(RangeSlider // Both slider thumbs need values and should be in an array.
8063
+ , Object.assign({
8064
+ "aria-label": !showLabel ? [labelText + " - start value", labelText + " - end value"] : null,
8065
+ "aria-labelledby": showLabel ? [id + "-label", id + "-label"] : null,
8066
+ value: currentValue,
8067
+ // Make the thumbs larger.
8068
+ size: "lg"
8069
+ }, sliderSharedProps), createElement(RangeSliderTrack, {
8070
+ sx: styles.track
8071
+ }, createElement(RangeSliderFilledTrack, {
8072
+ sx: styles.filledTrack
8073
+ })), createElement(RangeSliderThumb, {
8074
+ index: 0,
8075
+ sx: styles.thumb
8076
+ }), createElement(RangeSliderThumb, {
8077
+ index: 1,
8078
+ sx: styles.thumb
8079
+ })) : createElement(Slider$1, Object.assign({
8080
+ "aria-label": !showLabel ? labelText : null,
8081
+ "aria-labelledby": id + "-label",
8082
+ value: currentValue,
8083
+ // Make the thumb larger.
8084
+ size: "lg"
8085
+ }, sliderSharedProps), createElement(SliderTrack, {
8086
+ sx: styles.track
8087
+ }, createElement(SliderFilledTrack, {
8088
+ sx: styles.filledTrack
8089
+ })), createElement(SliderThumb, {
8090
+ sx: styles.thumb
8091
+ }));
8092
+ };
8093
+
8094
+ return createElement(Box, {
8095
+ className: className,
8096
+ __css: styles
8097
+ }, showLabel && createElement(Label, {
8098
+ id: id + "-label",
8099
+ // We can't target the slider thumbs since those are divs and we
8100
+ // should link the label somewhere. So either target the first
8101
+ // input box in a `RangeSlider` or the only input box in a `Slider`.
8102
+ // When the input fields are not visible, remove this attribute.
8103
+ htmlFor: showBoxes ? id + "-textInput-" + (isRangeSlider ? "start" : "end") : null,
8104
+ optReqFlag: optReqFlag && optReqText
8105
+ }, labelText), createElement(Box, {
8106
+ __css: styles.container
8107
+ }, showBoxes && isRangeSlider && getTextInput("start"), showValues && createElement(Box, {
8108
+ __css: styles.leftValue
8109
+ }, min), getSliderType(), showValues && createElement(Box, {
8110
+ __css: styles.rightValue
8111
+ }, max), showBoxes && getTextInput("end")), footnote && showHelperInvalidText && createElement(Box, {
8112
+ __css: styles.helper
8113
+ }, createElement(HelperErrorText, {
8114
+ id: id + "-helperText",
8115
+ isInvalid: finalIsInvalid
8116
+ }, footnote)));
8117
+ }
8118
+
7548
8119
  var StatusBadgeTypes;
7549
8120
 
7550
8121
  (function (StatusBadgeTypes) {
@@ -7687,7 +8258,7 @@ var getElementsFromContentData$1 = function getElementsFromContentData(data, use
7687
8258
  console.warn("We recommend to use no more than six tabs. If more than six tabs are " + "needed, consider other navigational patterns.");
7688
8259
  }
7689
8260
 
7690
- data.map(function (tab, index) {
8261
+ data.forEach(function (tab, index) {
7691
8262
  var tempPanel; // For URL hash enabled tabs, we need to add a custom `onClick` to handle the URL hash.
7692
8263
 
7693
8264
  var tempTab = createElement(Tab, {
@@ -7733,7 +8304,7 @@ var getElementsFromChildren = function getElementsFromChildren(children) {
7733
8304
  return {};
7734
8305
  }
7735
8306
 
7736
- children.map(function (child) {
8307
+ children.forEach(function (child) {
7737
8308
  if (child.type === TabList || child.props.mdxType === "TabList") {
7738
8309
  tabs.push(child);
7739
8310
  var childTabs = Children.count(child.props.children);
@@ -7808,7 +8379,7 @@ function Tabs(props) {
7808
8379
  if (windowDimensions.width > 600) {
7809
8380
  goToStart();
7810
8381
  }
7811
- }, [windowDimensions.width]);
8382
+ }, [goToStart, windowDimensions.width]);
7812
8383
  var previousButton = createElement(Button, {
7813
8384
  buttonType: ButtonTypes.Primary,
7814
8385
  attributes: _extends({
@@ -7859,42 +8430,6 @@ function Tabs(props) {
7859
8430
  }, createElement(Box, Object.assign({}, carouselStyle), tabs)), nextButton), panels);
7860
8431
  }
7861
8432
 
7862
- var TextDisplaySizes;
7863
-
7864
- (function (TextDisplaySizes) {
7865
- TextDisplaySizes["Default"] = "default";
7866
- TextDisplaySizes["Caption"] = "caption";
7867
- TextDisplaySizes["Tag"] = "tag";
7868
- TextDisplaySizes["Mini"] = "mini";
7869
- })(TextDisplaySizes || (TextDisplaySizes = {}));
7870
-
7871
- function Text$1(props) {
7872
- var children = props.children,
7873
- _props$className = props.className,
7874
- className = _props$className === void 0 ? "" : _props$className,
7875
- _props$displaySize = props.displaySize,
7876
- displaySize = _props$displaySize === void 0 ? TextDisplaySizes.Default : _props$displaySize,
7877
- isBold = props.isBold,
7878
- isItalic = props.isItalic,
7879
- noSpace = props.noSpace;
7880
- var variant = getVariant(displaySize, TextDisplaySizes, TextDisplaySizes.Default);
7881
- var styles = useStyleConfig("Text", {
7882
- variant: variant,
7883
- isBold: isBold,
7884
- isItalic: isItalic,
7885
- noSpace: noSpace
7886
- });
7887
-
7888
- if (!children) {
7889
- console.warn("The Text component has no children and will not render correctly.");
7890
- }
7891
-
7892
- return createElement(Text$2, {
7893
- className: className,
7894
- sx: styles
7895
- }, children);
7896
- }
7897
-
7898
8433
  /**
7899
8434
  * The main top-level parent component that wraps all template-related
7900
8435
  * components. For backwards compatibility, this renders a `nypl-ds` CSS class.
@@ -8063,6 +8598,42 @@ var TemplateAppContainer = function TemplateAppContainer(props) {
8063
8598
  }, contentTopElem, sidebar === "left" && contentSidebarElem, contentPrimaryElem, sidebar === "right" && contentSidebarElem), footer && createElement(TemplateFooter, null, footer));
8064
8599
  };
8065
8600
 
8601
+ var TextDisplaySizes;
8602
+
8603
+ (function (TextDisplaySizes) {
8604
+ TextDisplaySizes["Default"] = "default";
8605
+ TextDisplaySizes["Caption"] = "caption";
8606
+ TextDisplaySizes["Tag"] = "tag";
8607
+ TextDisplaySizes["Mini"] = "mini";
8608
+ })(TextDisplaySizes || (TextDisplaySizes = {}));
8609
+
8610
+ function Text$1(props) {
8611
+ var children = props.children,
8612
+ _props$className = props.className,
8613
+ className = _props$className === void 0 ? "" : _props$className,
8614
+ _props$displaySize = props.displaySize,
8615
+ displaySize = _props$displaySize === void 0 ? TextDisplaySizes.Default : _props$displaySize,
8616
+ isBold = props.isBold,
8617
+ isItalic = props.isItalic,
8618
+ noSpace = props.noSpace;
8619
+ var variant = getVariant(displaySize, TextDisplaySizes, TextDisplaySizes.Default);
8620
+ var styles = useStyleConfig("Text", {
8621
+ variant: variant,
8622
+ isBold: isBold,
8623
+ isItalic: isItalic,
8624
+ noSpace: noSpace
8625
+ });
8626
+
8627
+ if (!children) {
8628
+ console.warn("The Text component has no children and will not render correctly.");
8629
+ }
8630
+
8631
+ return createElement(Text$2, {
8632
+ className: className,
8633
+ sx: styles
8634
+ }, children);
8635
+ }
8636
+
8066
8637
  /**
8067
8638
  * A custom hook that returns the Chakra-based NYPL theme object. This must be
8068
8639
  * used inside a component that is wrapped in the `DSProvider` component, so
@@ -8238,5 +8809,5 @@ function VideoPlayer$1(props) {
8238
8809
  }, embedCode)));
8239
8810
  }
8240
8811
 
8241
- export { Accordion, Breadcrumbs, Button, ButtonTypes, Card, CardActions, CardContent, CardEdition, CardHeading, CardLayouts, Checkbox, CheckboxGroup, CheckboxGroupLayoutTypes, DSProvider, DatePicker, DatePickerTypes, Form, FormField, FormRow, GridGaps as FormSpacing, GridGaps, Heading, HeadingDisplaySizes, HeadingLevels, HelperErrorText, Hero$1 as Hero, HeroTypes, HorizontalRule$1 as HorizontalRule, Icon, IconColors, IconNames, IconRotationTypes, IconSizes, Image, ImageRatios, ImageSizes, ImageTypes, Input, InputTypes, Label, Link$1 as Link, LinkTypes, List$1 as List, ListTypes, LogoNames, Modal, Notification$1 as Notification, NotificationTypes, Pagination$1 as Pagination, Radio$1 as Radio, RadioGroup$1 as RadioGroup, RadioGroupLayoutTypes, SearchBar$1 as SearchBar, Select$1 as Select, SimpleGrid, SkeletonLoader$1 as SkeletonLoader, SkeletonLoaderImageRatios, SkeletonLoaderLayouts, StatusBadge$1 as StatusBadge, Tabs, Template$1 as Template, 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$1 as Text, TextDisplaySizes, TextInput, TextInputTypes, VideoPlayer$1 as VideoPlayer, VideoPlayerAspectRatios, VideoPlayerTypes, useNYPLTheme };
8812
+ export { Accordion, Breadcrumbs, Button, ButtonTypes, Card, CardActions, CardContent, CardEdition, CardHeading, CardLayouts, Checkbox, CheckboxGroup, CheckboxGroupLayoutTypes, ColorVariants, DSProvider, DatePicker, DatePickerTypes, Fieldset, Form, FormField, FormRow, GridGaps as FormSpacing, GridGaps, Heading, HeadingDisplaySizes, HeadingLevels, HelperErrorText, Hero$1 as Hero, HeroTypes, HorizontalRule$1 as HorizontalRule, Icon, IconAlign, IconColors, IconNames, IconRotationTypes, IconSizes, IconTypes, Image, ImageRatios, ImageSizes, ImageTypes, Input, InputTypes, Label, Link$1 as Link, LinkTypes, List$1 as List, ListTypes, LogoNames, Modal, Notification$1 as Notification, NotificationTypes, Pagination$1 as Pagination, ProgressIndicator$1 as ProgressIndicator, Radio$1 as Radio, RadioGroup$1 as RadioGroup, RadioGroupLayoutTypes, SearchBar$1 as SearchBar, Select$1 as Select, SimpleGrid, SkeletonLoader$1 as SkeletonLoader, SkeletonLoaderImageRatios, SkeletonLoaderLayouts, Slider, StatusBadge$1 as StatusBadge, StatusBadgeTypes, Tabs, Template$1 as Template, 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$1 as Text, TextDisplaySizes, TextInput, TextInputTypes, VideoPlayer$1 as VideoPlayer, VideoPlayerAspectRatios, VideoPlayerTypes, useNYPLTheme };
8242
8813
  //# sourceMappingURL=design-system-react-components.esm.js.map