@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
@@ -66,20 +66,17 @@ function generateUUID() {
66
66
  }
67
67
 
68
68
  /* eslint-disable camelcase */
69
- var IconAlign;
70
69
 
71
70
  (function (IconAlign) {
72
71
  IconAlign["Left"] = "left";
73
72
  IconAlign["Right"] = "right";
74
73
  IconAlign["None"] = "none";
75
- })(IconAlign || (IconAlign = {}));
76
-
77
- var IconTypes;
74
+ })(exports.IconAlign || (exports.IconAlign = {}));
78
75
 
79
76
  (function (IconTypes) {
80
77
  IconTypes["Default"] = "default";
81
78
  IconTypes["Breadcrumbs"] = "breadcrumbs";
82
- })(IconTypes || (IconTypes = {}));
79
+ })(exports.IconTypes || (exports.IconTypes = {}));
83
80
 
84
81
  (function (IconRotationTypes) {
85
82
  IconRotationTypes["Rotate0"] = "rotate0";
@@ -121,6 +118,9 @@ var IconTypes;
121
118
  IconNames["AccessibilityFull"] = "accessibility_full";
122
119
  IconNames["AccessibilityPartial"] = "accessibility_partial";
123
120
  IconNames["ActionCheckCircle"] = "action_check_circle";
121
+ IconNames["ActionHelpDefault"] = "action_help_default";
122
+ IconNames["ActionHelpOutline"] = "action_help_outline";
123
+ IconNames["ActionLaunch"] = "action_launch";
124
124
  IconNames["Arrow"] = "arrow";
125
125
  IconNames["Check"] = "check";
126
126
  IconNames["Clock"] = "clock";
@@ -288,13 +288,13 @@ function _objectWithoutProperties$3(source, excluded) { if (source == null) retu
288
288
 
289
289
  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; }
290
290
 
291
- function SvgArrow(_ref) {
291
+ function SvgActionHelpDefault(_ref) {
292
292
  var title = _ref.title,
293
293
  titleId = _ref.titleId,
294
294
  props = _objectWithoutProperties$3(_ref, _excluded$3);
295
295
 
296
296
  return /*#__PURE__*/React.createElement("svg", _extends$4({
297
- viewBox: "0 0 24 14",
297
+ viewBox: "0 0 24 24",
298
298
  xmlns: "http://www.w3.org/2000/svg",
299
299
  "aria-labelledby": titleId
300
300
  }, props), title ? /*#__PURE__*/React.createElement("title", {
@@ -302,11 +302,11 @@ function SvgArrow(_ref) {
302
302
  }, title) : null, _path$3 || (_path$3 = /*#__PURE__*/React.createElement("path", {
303
303
  fillRule: "evenodd",
304
304
  clipRule: "evenodd",
305
- 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"
305
+ 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"
306
306
  })));
307
307
  }
308
308
 
309
- var _g, _defs;
309
+ var _path$4;
310
310
 
311
311
  var _excluded$4 = ["title", "titleId"];
312
312
 
@@ -316,37 +316,25 @@ function _objectWithoutProperties$4(source, excluded) { if (source == null) retu
316
316
 
317
317
  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; }
318
318
 
319
- function SvgBrooklyn(_ref) {
319
+ function SvgActionHelpOutline(_ref) {
320
320
  var title = _ref.title,
321
321
  titleId = _ref.titleId,
322
322
  props = _objectWithoutProperties$4(_ref, _excluded$4);
323
323
 
324
324
  return /*#__PURE__*/React.createElement("svg", _extends$5({
325
- width: 328,
326
- height: 120,
327
- fill: "none",
325
+ viewBox: "0 0 24 24",
328
326
  xmlns: "http://www.w3.org/2000/svg",
329
327
  "aria-labelledby": titleId
330
328
  }, props), title ? /*#__PURE__*/React.createElement("title", {
331
329
  id: titleId
332
- }, title) : null, _g || (_g = /*#__PURE__*/React.createElement("g", {
333
- clipPath: "url(#brooklyn_svg__clip0)",
334
- fill: "#000"
335
- }, /*#__PURE__*/React.createElement("path", {
336
- 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"
337
- }), /*#__PURE__*/React.createElement("path", {
338
- 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"
339
- }), /*#__PURE__*/React.createElement("path", {
340
- 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"
341
- }))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
342
- id: "brooklyn_svg__clip0"
343
- }, /*#__PURE__*/React.createElement("path", {
344
- fill: "#fff",
345
- d: "M0 0h327.045v119.691H0z"
346
- })))));
330
+ }, title) : null, _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
331
+ fillRule: "evenodd",
332
+ clipRule: "evenodd",
333
+ 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"
334
+ })));
347
335
  }
348
336
 
349
- var _path$4;
337
+ var _path$5;
350
338
 
351
339
  var _excluded$5 = ["title", "titleId"];
352
340
 
@@ -356,7 +344,7 @@ function _objectWithoutProperties$5(source, excluded) { if (source == null) retu
356
344
 
357
345
  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; }
358
346
 
359
- function SvgCheck(_ref) {
347
+ function SvgActionLaunch(_ref) {
360
348
  var title = _ref.title,
361
349
  titleId = _ref.titleId,
362
350
  props = _objectWithoutProperties$5(_ref, _excluded$5);
@@ -367,12 +355,14 @@ function SvgCheck(_ref) {
367
355
  "aria-labelledby": titleId
368
356
  }, props), title ? /*#__PURE__*/React.createElement("title", {
369
357
  id: titleId
370
- }, title) : null, _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
371
- 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"
358
+ }, title) : null, _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
359
+ fillRule: "evenodd",
360
+ clipRule: "evenodd",
361
+ 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"
372
362
  })));
373
363
  }
374
364
 
375
- var _path$5;
365
+ var _path$6;
376
366
 
377
367
  var _excluded$6 = ["title", "titleId"];
378
368
 
@@ -382,25 +372,25 @@ function _objectWithoutProperties$6(source, excluded) { if (source == null) retu
382
372
 
383
373
  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; }
384
374
 
385
- function SvgClock(_ref) {
375
+ function SvgArrow(_ref) {
386
376
  var title = _ref.title,
387
377
  titleId = _ref.titleId,
388
378
  props = _objectWithoutProperties$6(_ref, _excluded$6);
389
379
 
390
380
  return /*#__PURE__*/React.createElement("svg", _extends$7({
391
- viewBox: "0 0 24 24",
381
+ viewBox: "0 0 24 14",
392
382
  xmlns: "http://www.w3.org/2000/svg",
393
383
  "aria-labelledby": titleId
394
384
  }, props), title ? /*#__PURE__*/React.createElement("title", {
395
385
  id: titleId
396
- }, title) : null, _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
386
+ }, title) : null, _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
397
387
  fillRule: "evenodd",
398
388
  clipRule: "evenodd",
399
- 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"
389
+ 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"
400
390
  })));
401
391
  }
402
392
 
403
- var _path$6;
393
+ var _g, _defs;
404
394
 
405
395
  var _excluded$7 = ["title", "titleId"];
406
396
 
@@ -410,23 +400,37 @@ function _objectWithoutProperties$7(source, excluded) { if (source == null) retu
410
400
 
411
401
  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; }
412
402
 
413
- function SvgClose(_ref) {
403
+ function SvgBrooklyn(_ref) {
414
404
  var title = _ref.title,
415
405
  titleId = _ref.titleId,
416
406
  props = _objectWithoutProperties$7(_ref, _excluded$7);
417
407
 
418
408
  return /*#__PURE__*/React.createElement("svg", _extends$8({
419
- viewBox: "0 0 24 24",
409
+ width: 328,
410
+ height: 120,
411
+ fill: "none",
420
412
  xmlns: "http://www.w3.org/2000/svg",
421
413
  "aria-labelledby": titleId
422
414
  }, props), title ? /*#__PURE__*/React.createElement("title", {
423
415
  id: titleId
424
- }, title) : null, _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
425
- 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"
426
- })));
416
+ }, title) : null, _g || (_g = /*#__PURE__*/React.createElement("g", {
417
+ clipPath: "url(#brooklyn_svg__clip0)",
418
+ fill: "#000"
419
+ }, /*#__PURE__*/React.createElement("path", {
420
+ 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"
421
+ }), /*#__PURE__*/React.createElement("path", {
422
+ 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"
423
+ }), /*#__PURE__*/React.createElement("path", {
424
+ 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"
425
+ }))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
426
+ id: "brooklyn_svg__clip0"
427
+ }, /*#__PURE__*/React.createElement("path", {
428
+ fill: "#fff",
429
+ d: "M0 0h327.045v119.691H0z"
430
+ })))));
427
431
  }
428
432
 
429
- var _path$7, _path2$2, _path3$2;
433
+ var _path$7;
430
434
 
431
435
  var _excluded$8 = ["title", "titleId"];
432
436
 
@@ -436,7 +440,7 @@ function _objectWithoutProperties$8(source, excluded) { if (source == null) retu
436
440
 
437
441
  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; }
438
442
 
439
- function SvgFileTypeAudio(_ref) {
443
+ function SvgCheck(_ref) {
440
444
  var title = _ref.title,
441
445
  titleId = _ref.titleId,
442
446
  props = _objectWithoutProperties$8(_ref, _excluded$8);
@@ -448,19 +452,11 @@ function SvgFileTypeAudio(_ref) {
448
452
  }, props), title ? /*#__PURE__*/React.createElement("title", {
449
453
  id: titleId
450
454
  }, title) : null, _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
451
- fillRule: "evenodd",
452
- clipRule: "evenodd",
453
- 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"
454
- })), _path2$2 || (_path2$2 = /*#__PURE__*/React.createElement("path", {
455
- fillRule: "evenodd",
456
- clipRule: "evenodd",
457
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
458
- })), _path3$2 || (_path3$2 = /*#__PURE__*/React.createElement("path", {
459
- 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"
455
+ 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"
460
456
  })));
461
457
  }
462
458
 
463
- var _path$8, _path2$3, _path3$3;
459
+ var _path$8;
464
460
 
465
461
  var _excluded$9 = ["title", "titleId"];
466
462
 
@@ -470,7 +466,7 @@ function _objectWithoutProperties$9(source, excluded) { if (source == null) retu
470
466
 
471
467
  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; }
472
468
 
473
- function SvgFileTypeDoc(_ref) {
469
+ function SvgClock(_ref) {
474
470
  var title = _ref.title,
475
471
  titleId = _ref.titleId,
476
472
  props = _objectWithoutProperties$9(_ref, _excluded$9);
@@ -484,17 +480,11 @@ function SvgFileTypeDoc(_ref) {
484
480
  }, title) : null, _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
485
481
  fillRule: "evenodd",
486
482
  clipRule: "evenodd",
487
- 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"
488
- })), _path2$3 || (_path2$3 = /*#__PURE__*/React.createElement("path", {
489
- fillRule: "evenodd",
490
- clipRule: "evenodd",
491
- d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
492
- })), _path3$3 || (_path3$3 = /*#__PURE__*/React.createElement("path", {
493
- d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
483
+ 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"
494
484
  })));
495
485
  }
496
486
 
497
- var _path$9, _path2$4;
487
+ var _path$9;
498
488
 
499
489
  var _excluded$a = ["title", "titleId"];
500
490
 
@@ -504,7 +494,7 @@ function _objectWithoutProperties$a(source, excluded) { if (source == null) retu
504
494
 
505
495
  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; }
506
496
 
507
- function SvgFileTypeGenericDoc(_ref) {
497
+ function SvgClose(_ref) {
508
498
  var title = _ref.title,
509
499
  titleId = _ref.titleId,
510
500
  props = _objectWithoutProperties$a(_ref, _excluded$a);
@@ -516,17 +506,11 @@ function SvgFileTypeGenericDoc(_ref) {
516
506
  }, props), title ? /*#__PURE__*/React.createElement("title", {
517
507
  id: titleId
518
508
  }, title) : null, _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
519
- fillRule: "evenodd",
520
- clipRule: "evenodd",
521
- 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"
522
- })), _path2$4 || (_path2$4 = /*#__PURE__*/React.createElement("path", {
523
- fillRule: "evenodd",
524
- clipRule: "evenodd",
525
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
509
+ 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"
526
510
  })));
527
511
  }
528
512
 
529
- var _path$a, _path2$5, _path3$4, _circle, _path4;
513
+ var _path$a, _path2$2, _path3$2;
530
514
 
531
515
  var _excluded$b = ["title", "titleId"];
532
516
 
@@ -536,7 +520,7 @@ function _objectWithoutProperties$b(source, excluded) { if (source == null) retu
536
520
 
537
521
  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; }
538
522
 
539
- function SvgFileTypeImage(_ref) {
523
+ function SvgFileTypeAudio(_ref) {
540
524
  var title = _ref.title,
541
525
  titleId = _ref.titleId,
542
526
  props = _objectWithoutProperties$b(_ref, _excluded$b);
@@ -551,24 +535,16 @@ function SvgFileTypeImage(_ref) {
551
535
  fillRule: "evenodd",
552
536
  clipRule: "evenodd",
553
537
  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"
554
- })), _path2$5 || (_path2$5 = /*#__PURE__*/React.createElement("path", {
555
- fillRule: "evenodd",
556
- clipRule: "evenodd",
557
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
558
- })), _path3$4 || (_path3$4 = /*#__PURE__*/React.createElement("path", {
559
- d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
560
- })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
561
- cx: 9.375,
562
- cy: 10.125,
563
- r: 1.125
564
- })), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
538
+ })), _path2$2 || (_path2$2 = /*#__PURE__*/React.createElement("path", {
565
539
  fillRule: "evenodd",
566
540
  clipRule: "evenodd",
567
541
  d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
542
+ })), _path3$2 || (_path3$2 = /*#__PURE__*/React.createElement("path", {
543
+ 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"
568
544
  })));
569
545
  }
570
546
 
571
- var _path$b, _path2$6, _path3$5;
547
+ var _path$b, _path2$3, _path3$3;
572
548
 
573
549
  var _excluded$c = ["title", "titleId"];
574
550
 
@@ -578,7 +554,7 @@ function _objectWithoutProperties$c(source, excluded) { if (source == null) retu
578
554
 
579
555
  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; }
580
556
 
581
- function SvgFileTypePdf(_ref) {
557
+ function SvgFileTypeDoc(_ref) {
582
558
  var title = _ref.title,
583
559
  titleId = _ref.titleId,
584
560
  props = _objectWithoutProperties$c(_ref, _excluded$c);
@@ -592,17 +568,17 @@ function SvgFileTypePdf(_ref) {
592
568
  }, title) : null, _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
593
569
  fillRule: "evenodd",
594
570
  clipRule: "evenodd",
595
- 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"
596
- })), _path2$6 || (_path2$6 = /*#__PURE__*/React.createElement("path", {
571
+ 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"
572
+ })), _path2$3 || (_path2$3 = /*#__PURE__*/React.createElement("path", {
597
573
  fillRule: "evenodd",
598
574
  clipRule: "evenodd",
599
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
600
- })), _path3$5 || (_path3$5 = /*#__PURE__*/React.createElement("path", {
601
- 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"
575
+ d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
576
+ })), _path3$3 || (_path3$3 = /*#__PURE__*/React.createElement("path", {
577
+ d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
602
578
  })));
603
579
  }
604
580
 
605
- var _path$c, _path2$7, _path3$6;
581
+ var _path$c, _path2$4;
606
582
 
607
583
  var _excluded$d = ["title", "titleId"];
608
584
 
@@ -612,7 +588,7 @@ function _objectWithoutProperties$d(source, excluded) { if (source == null) retu
612
588
 
613
589
  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; }
614
590
 
615
- function SvgFileTypeSpreadsheet(_ref) {
591
+ function SvgFileTypeGenericDoc(_ref) {
616
592
  var title = _ref.title,
617
593
  titleId = _ref.titleId,
618
594
  props = _objectWithoutProperties$d(_ref, _excluded$d);
@@ -627,16 +603,14 @@ function SvgFileTypeSpreadsheet(_ref) {
627
603
  fillRule: "evenodd",
628
604
  clipRule: "evenodd",
629
605
  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"
630
- })), _path2$7 || (_path2$7 = /*#__PURE__*/React.createElement("path", {
606
+ })), _path2$4 || (_path2$4 = /*#__PURE__*/React.createElement("path", {
631
607
  fillRule: "evenodd",
632
608
  clipRule: "evenodd",
633
609
  d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
634
- })), _path3$6 || (_path3$6 = /*#__PURE__*/React.createElement("path", {
635
- d: "M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"
636
610
  })));
637
611
  }
638
612
 
639
- var _path$d, _path2$8;
613
+ var _path$d, _path2$5, _path3$4, _circle, _path4;
640
614
 
641
615
  var _excluded$e = ["title", "titleId"];
642
616
 
@@ -646,7 +620,7 @@ function _objectWithoutProperties$e(source, excluded) { if (source == null) retu
646
620
 
647
621
  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; }
648
622
 
649
- function SvgFileTypeVideo(_ref) {
623
+ function SvgFileTypeImage(_ref) {
650
624
  var title = _ref.title,
651
625
  titleId = _ref.titleId,
652
626
  props = _objectWithoutProperties$e(_ref, _excluded$e);
@@ -661,14 +635,24 @@ function SvgFileTypeVideo(_ref) {
661
635
  fillRule: "evenodd",
662
636
  clipRule: "evenodd",
663
637
  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"
664
- })), _path2$8 || (_path2$8 = /*#__PURE__*/React.createElement("path", {
638
+ })), _path2$5 || (_path2$5 = /*#__PURE__*/React.createElement("path", {
665
639
  fillRule: "evenodd",
666
640
  clipRule: "evenodd",
667
- 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"
641
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
642
+ })), _path3$4 || (_path3$4 = /*#__PURE__*/React.createElement("path", {
643
+ d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
644
+ })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
645
+ cx: 9.375,
646
+ cy: 10.125,
647
+ r: 1.125
648
+ })), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
649
+ fillRule: "evenodd",
650
+ clipRule: "evenodd",
651
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
668
652
  })));
669
653
  }
670
654
 
671
- var _path$e;
655
+ var _path$e, _path2$6, _path3$5;
672
656
 
673
657
  var _excluded$f = ["title", "titleId"];
674
658
 
@@ -678,13 +662,13 @@ function _objectWithoutProperties$f(source, excluded) { if (source == null) retu
678
662
 
679
663
  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; }
680
664
 
681
- function SvgDownload(_ref) {
665
+ function SvgFileTypePdf(_ref) {
682
666
  var title = _ref.title,
683
667
  titleId = _ref.titleId,
684
668
  props = _objectWithoutProperties$f(_ref, _excluded$f);
685
669
 
686
670
  return /*#__PURE__*/React.createElement("svg", _extends$g({
687
- viewBox: "0 0 14 18",
671
+ viewBox: "0 0 24 24",
688
672
  xmlns: "http://www.w3.org/2000/svg",
689
673
  "aria-labelledby": titleId
690
674
  }, props), title ? /*#__PURE__*/React.createElement("title", {
@@ -692,11 +676,17 @@ function SvgDownload(_ref) {
692
676
  }, title) : null, _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
693
677
  fillRule: "evenodd",
694
678
  clipRule: "evenodd",
695
- d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
679
+ 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"
680
+ })), _path2$6 || (_path2$6 = /*#__PURE__*/React.createElement("path", {
681
+ fillRule: "evenodd",
682
+ clipRule: "evenodd",
683
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
684
+ })), _path3$5 || (_path3$5 = /*#__PURE__*/React.createElement("path", {
685
+ d: "M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"
696
686
  })));
697
687
  }
698
688
 
699
- var _path$f, _path2$9;
689
+ var _path$f, _path2$7, _path3$6;
700
690
 
701
691
  var _excluded$g = ["title", "titleId"];
702
692
 
@@ -706,26 +696,31 @@ function _objectWithoutProperties$g(source, excluded) { if (source == null) retu
706
696
 
707
697
  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; }
708
698
 
709
- function SvgErrorFilled(_ref) {
699
+ function SvgFileTypeSpreadsheet(_ref) {
710
700
  var title = _ref.title,
711
701
  titleId = _ref.titleId,
712
702
  props = _objectWithoutProperties$g(_ref, _excluded$g);
713
703
 
714
704
  return /*#__PURE__*/React.createElement("svg", _extends$h({
715
- viewBox: "0 0 24 25",
705
+ viewBox: "0 0 24 24",
716
706
  xmlns: "http://www.w3.org/2000/svg",
717
707
  "aria-labelledby": titleId
718
708
  }, props), title ? /*#__PURE__*/React.createElement("title", {
719
709
  id: titleId
720
710
  }, title) : null, _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
721
- 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"
722
- })), _path2$9 || (_path2$9 = /*#__PURE__*/React.createElement("path", {
723
- d: "M13.2 14.112h-2.4v-7.2h2.4v7.2zM13.2 18.912h-2.4v-2.4h2.4v2.4z",
724
- fill: "#fff"
711
+ fillRule: "evenodd",
712
+ clipRule: "evenodd",
713
+ 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"
714
+ })), _path2$7 || (_path2$7 = /*#__PURE__*/React.createElement("path", {
715
+ fillRule: "evenodd",
716
+ clipRule: "evenodd",
717
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
718
+ })), _path3$6 || (_path3$6 = /*#__PURE__*/React.createElement("path", {
719
+ d: "M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"
725
720
  })));
726
721
  }
727
722
 
728
- var _path$g;
723
+ var _path$g, _path2$8;
729
724
 
730
725
  var _excluded$h = ["title", "titleId"];
731
726
 
@@ -735,13 +730,13 @@ function _objectWithoutProperties$h(source, excluded) { if (source == null) retu
735
730
 
736
731
  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; }
737
732
 
738
- function SvgErrorOutline(_ref) {
733
+ function SvgFileTypeVideo(_ref) {
739
734
  var title = _ref.title,
740
735
  titleId = _ref.titleId,
741
736
  props = _objectWithoutProperties$h(_ref, _excluded$h);
742
737
 
743
738
  return /*#__PURE__*/React.createElement("svg", _extends$i({
744
- viewBox: "0 0 24 25",
739
+ viewBox: "0 0 24 24",
745
740
  xmlns: "http://www.w3.org/2000/svg",
746
741
  "aria-labelledby": titleId
747
742
  }, props), title ? /*#__PURE__*/React.createElement("title", {
@@ -749,7 +744,11 @@ function SvgErrorOutline(_ref) {
749
744
  }, title) : null, _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
750
745
  fillRule: "evenodd",
751
746
  clipRule: "evenodd",
752
- 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"
747
+ 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"
748
+ })), _path2$8 || (_path2$8 = /*#__PURE__*/React.createElement("path", {
749
+ fillRule: "evenodd",
750
+ clipRule: "evenodd",
751
+ 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"
753
752
  })));
754
753
  }
755
754
 
@@ -763,23 +762,25 @@ function _objectWithoutProperties$i(source, excluded) { if (source == null) retu
763
762
 
764
763
  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; }
765
764
 
766
- function SvgHeadset(_ref) {
765
+ function SvgDownload(_ref) {
767
766
  var title = _ref.title,
768
767
  titleId = _ref.titleId,
769
768
  props = _objectWithoutProperties$i(_ref, _excluded$i);
770
769
 
771
770
  return /*#__PURE__*/React.createElement("svg", _extends$j({
772
- viewBox: "0 0 18 19",
771
+ viewBox: "0 0 14 18",
773
772
  xmlns: "http://www.w3.org/2000/svg",
774
773
  "aria-labelledby": titleId
775
774
  }, props), title ? /*#__PURE__*/React.createElement("title", {
776
775
  id: titleId
777
776
  }, title) : null, _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
778
- 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"
777
+ fillRule: "evenodd",
778
+ clipRule: "evenodd",
779
+ d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
779
780
  })));
780
781
  }
781
782
 
782
- var _path$i, _path2$a, _circle$1, _path3$7, _circle2, _path4$1, _path5;
783
+ var _path$i, _path2$9;
783
784
 
784
785
  var _excluded$j = ["title", "titleId"];
785
786
 
@@ -789,18 +790,101 @@ function _objectWithoutProperties$j(source, excluded) { if (source == null) retu
789
790
 
790
791
  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; }
791
792
 
792
- function SvgLogoBrooklynpl(_ref) {
793
+ function SvgErrorFilled(_ref) {
793
794
  var title = _ref.title,
794
795
  titleId = _ref.titleId,
795
796
  props = _objectWithoutProperties$j(_ref, _excluded$j);
796
797
 
797
798
  return /*#__PURE__*/React.createElement("svg", _extends$k({
799
+ viewBox: "0 0 24 25",
798
800
  xmlns: "http://www.w3.org/2000/svg",
799
- viewBox: "0 0 327.045 119.691",
800
801
  "aria-labelledby": titleId
801
802
  }, props), title ? /*#__PURE__*/React.createElement("title", {
802
803
  id: titleId
803
804
  }, title) : null, _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
805
+ 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"
806
+ })), _path2$9 || (_path2$9 = /*#__PURE__*/React.createElement("path", {
807
+ d: "M13.2 14.112h-2.4v-7.2h2.4v7.2zM13.2 18.912h-2.4v-2.4h2.4v2.4z",
808
+ fill: "#fff"
809
+ })));
810
+ }
811
+
812
+ var _path$j;
813
+
814
+ var _excluded$k = ["title", "titleId"];
815
+
816
+ 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); }
817
+
818
+ 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; }
819
+
820
+ 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; }
821
+
822
+ function SvgErrorOutline(_ref) {
823
+ var title = _ref.title,
824
+ titleId = _ref.titleId,
825
+ props = _objectWithoutProperties$k(_ref, _excluded$k);
826
+
827
+ return /*#__PURE__*/React.createElement("svg", _extends$l({
828
+ viewBox: "0 0 24 25",
829
+ xmlns: "http://www.w3.org/2000/svg",
830
+ "aria-labelledby": titleId
831
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
832
+ id: titleId
833
+ }, title) : null, _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
834
+ fillRule: "evenodd",
835
+ clipRule: "evenodd",
836
+ 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"
837
+ })));
838
+ }
839
+
840
+ var _path$k;
841
+
842
+ var _excluded$l = ["title", "titleId"];
843
+
844
+ 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); }
845
+
846
+ 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; }
847
+
848
+ 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; }
849
+
850
+ function SvgHeadset(_ref) {
851
+ var title = _ref.title,
852
+ titleId = _ref.titleId,
853
+ props = _objectWithoutProperties$l(_ref, _excluded$l);
854
+
855
+ return /*#__PURE__*/React.createElement("svg", _extends$m({
856
+ viewBox: "0 0 18 19",
857
+ xmlns: "http://www.w3.org/2000/svg",
858
+ "aria-labelledby": titleId
859
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
860
+ id: titleId
861
+ }, title) : null, _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
862
+ 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"
863
+ })));
864
+ }
865
+
866
+ var _path$l, _path2$a, _circle$1, _path3$7, _circle2, _path4$1, _path5;
867
+
868
+ var _excluded$m = ["title", "titleId"];
869
+
870
+ 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); }
871
+
872
+ 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; }
873
+
874
+ 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; }
875
+
876
+ function SvgLogoBrooklynpl(_ref) {
877
+ var title = _ref.title,
878
+ titleId = _ref.titleId,
879
+ props = _objectWithoutProperties$m(_ref, _excluded$m);
880
+
881
+ return /*#__PURE__*/React.createElement("svg", _extends$n({
882
+ xmlns: "http://www.w3.org/2000/svg",
883
+ viewBox: "0 0 327.045 119.691",
884
+ "aria-labelledby": titleId
885
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
886
+ id: titleId
887
+ }, title) : null, _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
804
888
  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"
805
889
  })), _path2$a || (_path2$a = /*#__PURE__*/React.createElement("path", {
806
890
  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"
@@ -821,28 +905,28 @@ function SvgLogoBrooklynpl(_ref) {
821
905
  })));
822
906
  }
823
907
 
824
- var _path$j, _path2$b, _path3$8, _path4$2, _path5$1, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17;
908
+ var _path$m, _path2$b, _path3$8, _path4$2, _path5$1, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17;
825
909
 
826
- var _excluded$k = ["title", "titleId"];
910
+ var _excluded$n = ["title", "titleId"];
827
911
 
828
- 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); }
912
+ 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); }
829
913
 
830
- 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; }
914
+ 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; }
831
915
 
832
- 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; }
916
+ 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; }
833
917
 
834
918
  function SvgLogoNypl(_ref) {
835
919
  var title = _ref.title,
836
920
  titleId = _ref.titleId,
837
- props = _objectWithoutProperties$k(_ref, _excluded$k);
921
+ props = _objectWithoutProperties$n(_ref, _excluded$n);
838
922
 
839
- return /*#__PURE__*/React.createElement("svg", _extends$l({
923
+ return /*#__PURE__*/React.createElement("svg", _extends$o({
840
924
  viewBox: "0 0 317 178",
841
925
  xmlns: "http://www.w3.org/2000/svg",
842
926
  "aria-labelledby": titleId
843
927
  }, props), title ? /*#__PURE__*/React.createElement("title", {
844
928
  id: titleId
845
- }, title) : null, _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
929
+ }, title) : null, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
846
930
  d: "M159.458 2.388h2.395l17.461 25.224V2.388h2.264v29.175h-2.221L161.722 6.165v25.398h-2.221V2.387h-.043z"
847
931
  })), _path2$b || (_path2$b = /*#__PURE__*/React.createElement("path", {
848
932
  fillRule: "evenodd",
@@ -895,22 +979,22 @@ function SvgLogoNypl(_ref) {
895
979
  })));
896
980
  }
897
981
 
898
- var _path$k, _defs$1;
982
+ var _path$n, _defs$1;
899
983
 
900
- var _excluded$l = ["title", "titleId"];
984
+ var _excluded$o = ["title", "titleId"];
901
985
 
902
- 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); }
986
+ 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); }
903
987
 
904
- 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; }
988
+ 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; }
905
989
 
906
- 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; }
990
+ 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; }
907
991
 
908
992
  function SvgLogoNyplNegative(_ref) {
909
993
  var title = _ref.title,
910
994
  titleId = _ref.titleId,
911
- props = _objectWithoutProperties$l(_ref, _excluded$l);
995
+ props = _objectWithoutProperties$o(_ref, _excluded$o);
912
996
 
913
- return /*#__PURE__*/React.createElement("svg", _extends$m({
997
+ return /*#__PURE__*/React.createElement("svg", _extends$p({
914
998
  width: 457,
915
999
  height: 269,
916
1000
  fill: "none",
@@ -919,7 +1003,7 @@ function SvgLogoNyplNegative(_ref) {
919
1003
  "aria-labelledby": titleId
920
1004
  }, props), title ? /*#__PURE__*/React.createElement("title", {
921
1005
  id: titleId
922
- }, title) : null, _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
1006
+ }, title) : null, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
923
1007
  fill: "url(#logo_nypl_negative_svg__pattern0)",
924
1008
  d: "M0 0h457v268.295H0z"
925
1009
  })), _defs$1 || (_defs$1 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", {
@@ -938,48 +1022,48 @@ function SvgLogoNyplNegative(_ref) {
938
1022
  }))));
939
1023
  }
940
1024
 
941
- var _path$l;
1025
+ var _path$o;
942
1026
 
943
- var _excluded$m = ["title", "titleId"];
1027
+ var _excluded$p = ["title", "titleId"];
944
1028
 
945
- 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); }
1029
+ 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); }
946
1030
 
947
- 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; }
1031
+ 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; }
948
1032
 
949
- 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; }
1033
+ 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; }
950
1034
 
951
1035
  function SvgLogoQueenspl(_ref) {
952
1036
  var title = _ref.title,
953
1037
  titleId = _ref.titleId,
954
- props = _objectWithoutProperties$m(_ref, _excluded$m);
1038
+ props = _objectWithoutProperties$p(_ref, _excluded$p);
955
1039
 
956
- return /*#__PURE__*/React.createElement("svg", _extends$n({
1040
+ return /*#__PURE__*/React.createElement("svg", _extends$q({
957
1041
  xmlns: "http://www.w3.org/2000/svg",
958
1042
  viewBox: "0 0 1114 601",
959
1043
  "aria-labelledby": titleId
960
1044
  }, props), title ? /*#__PURE__*/React.createElement("title", {
961
1045
  id: titleId
962
- }, title) : null, _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
1046
+ }, title) : null, _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
963
1047
  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"
964
1048
  })));
965
1049
  }
966
1050
 
967
- var _path$m;
1051
+ var _path$p;
968
1052
 
969
- var _excluded$n = ["title", "titleId"];
1053
+ var _excluded$q = ["title", "titleId"];
970
1054
 
971
- 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); }
1055
+ 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); }
972
1056
 
973
- 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; }
1057
+ 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; }
974
1058
 
975
- 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; }
1059
+ 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; }
976
1060
 
977
1061
  function SvgLpaNegative(_ref) {
978
1062
  var title = _ref.title,
979
1063
  titleId = _ref.titleId,
980
- props = _objectWithoutProperties$n(_ref, _excluded$n);
1064
+ props = _objectWithoutProperties$q(_ref, _excluded$q);
981
1065
 
982
- return /*#__PURE__*/React.createElement("svg", _extends$o({
1066
+ return /*#__PURE__*/React.createElement("svg", _extends$r({
983
1067
  width: 205,
984
1068
  height: 80,
985
1069
  fill: "none",
@@ -987,28 +1071,28 @@ function SvgLpaNegative(_ref) {
987
1071
  "aria-labelledby": titleId
988
1072
  }, props), title ? /*#__PURE__*/React.createElement("title", {
989
1073
  id: titleId
990
- }, title) : null, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
1074
+ }, title) : null, _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
991
1075
  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",
992
1076
  fill: "#fff"
993
1077
  })));
994
1078
  }
995
1079
 
996
- var _path$n, _path2$c;
1080
+ var _path$q, _path2$c;
997
1081
 
998
- var _excluded$o = ["title", "titleId"];
1082
+ var _excluded$r = ["title", "titleId"];
999
1083
 
1000
- 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); }
1084
+ 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); }
1001
1085
 
1002
- 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; }
1086
+ 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; }
1003
1087
 
1004
- 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; }
1088
+ 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; }
1005
1089
 
1006
1090
  function SvgLpaPositive(_ref) {
1007
1091
  var title = _ref.title,
1008
1092
  titleId = _ref.titleId,
1009
- props = _objectWithoutProperties$o(_ref, _excluded$o);
1093
+ props = _objectWithoutProperties$r(_ref, _excluded$r);
1010
1094
 
1011
- return /*#__PURE__*/React.createElement("svg", _extends$p({
1095
+ return /*#__PURE__*/React.createElement("svg", _extends$s({
1012
1096
  width: 186,
1013
1097
  height: 74,
1014
1098
  fill: "none",
@@ -1016,7 +1100,7 @@ function SvgLpaPositive(_ref) {
1016
1100
  "aria-labelledby": titleId
1017
1101
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1018
1102
  id: titleId
1019
- }, title) : null, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
1103
+ }, title) : null, _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
1020
1104
  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",
1021
1105
  fill: "#008375"
1022
1106
  })), _path2$c || (_path2$c = /*#__PURE__*/React.createElement("path", {
@@ -1027,20 +1111,20 @@ function SvgLpaPositive(_ref) {
1027
1111
 
1028
1112
  var _rect;
1029
1113
 
1030
- var _excluded$p = ["title", "titleId"];
1114
+ var _excluded$s = ["title", "titleId"];
1031
1115
 
1032
- 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); }
1116
+ 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); }
1033
1117
 
1034
- 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; }
1118
+ 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; }
1035
1119
 
1036
- 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; }
1120
+ 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; }
1037
1121
 
1038
1122
  function SvgMinus(_ref) {
1039
1123
  var title = _ref.title,
1040
1124
  titleId = _ref.titleId,
1041
- props = _objectWithoutProperties$p(_ref, _excluded$p);
1125
+ props = _objectWithoutProperties$s(_ref, _excluded$s);
1042
1126
 
1043
- return /*#__PURE__*/React.createElement("svg", _extends$q({
1127
+ return /*#__PURE__*/React.createElement("svg", _extends$t({
1044
1128
  viewBox: "0 -11 24 24",
1045
1129
  width: 24,
1046
1130
  height: 2,
@@ -1055,22 +1139,22 @@ function SvgMinus(_ref) {
1055
1139
  })));
1056
1140
  }
1057
1141
 
1058
- var _path$o, _mask, _g$1;
1142
+ var _path$r, _mask, _g$1;
1059
1143
 
1060
- var _excluded$q = ["title", "titleId"];
1144
+ var _excluded$t = ["title", "titleId"];
1061
1145
 
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); }
1146
+ 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); }
1063
1147
 
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; }
1148
+ 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; }
1065
1149
 
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; }
1150
+ 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; }
1067
1151
 
1068
1152
  function SvgNyplCircleNegative(_ref) {
1069
1153
  var title = _ref.title,
1070
1154
  titleId = _ref.titleId,
1071
- props = _objectWithoutProperties$q(_ref, _excluded$q);
1155
+ props = _objectWithoutProperties$t(_ref, _excluded$t);
1072
1156
 
1073
- return /*#__PURE__*/React.createElement("svg", _extends$r({
1157
+ return /*#__PURE__*/React.createElement("svg", _extends$u({
1074
1158
  width: 125,
1075
1159
  height: 126,
1076
1160
  fill: "none",
@@ -1078,7 +1162,7 @@ function SvgNyplCircleNegative(_ref) {
1078
1162
  "aria-labelledby": titleId
1079
1163
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1080
1164
  id: titleId
1081
- }, title) : null, _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
1165
+ }, title) : null, _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
1082
1166
  fillRule: "evenodd",
1083
1167
  clipRule: "evenodd",
1084
1168
  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",
@@ -1103,22 +1187,22 @@ function SvgNyplCircleNegative(_ref) {
1103
1187
  }))));
1104
1188
  }
1105
1189
 
1106
- var _mask$1, _g$2, _path$p;
1190
+ var _mask$1, _g$2, _path$s;
1107
1191
 
1108
- var _excluded$r = ["title", "titleId"];
1192
+ var _excluded$u = ["title", "titleId"];
1109
1193
 
1110
- 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); }
1194
+ 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); }
1111
1195
 
1112
- 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; }
1196
+ 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; }
1113
1197
 
1114
- 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; }
1198
+ 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; }
1115
1199
 
1116
1200
  function SvgNyplCirclePositive(_ref) {
1117
1201
  var title = _ref.title,
1118
1202
  titleId = _ref.titleId,
1119
- props = _objectWithoutProperties$r(_ref, _excluded$r);
1203
+ props = _objectWithoutProperties$u(_ref, _excluded$u);
1120
1204
 
1121
- return /*#__PURE__*/React.createElement("svg", _extends$s({
1205
+ return /*#__PURE__*/React.createElement("svg", _extends$v({
1122
1206
  width: 48,
1123
1207
  height: 49,
1124
1208
  fill: "none",
@@ -1145,7 +1229,7 @@ function SvgNyplCirclePositive(_ref) {
1145
1229
  clipRule: "evenodd",
1146
1230
  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",
1147
1231
  fill: "#000"
1148
- }))), _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
1232
+ }))), _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
1149
1233
  fillRule: "evenodd",
1150
1234
  clipRule: "evenodd",
1151
1235
  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",
@@ -1153,22 +1237,22 @@ function SvgNyplCirclePositive(_ref) {
1153
1237
  })));
1154
1238
  }
1155
1239
 
1156
- var _path$q, _defs$2;
1240
+ var _path$t, _defs$2;
1157
1241
 
1158
- var _excluded$s = ["title", "titleId"];
1242
+ var _excluded$v = ["title", "titleId"];
1159
1243
 
1160
- 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); }
1244
+ 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); }
1161
1245
 
1162
- 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; }
1246
+ 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; }
1163
1247
 
1164
- 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; }
1248
+ 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; }
1165
1249
 
1166
1250
  function SvgNyplFullLockUpNegative(_ref) {
1167
1251
  var title = _ref.title,
1168
1252
  titleId = _ref.titleId,
1169
- props = _objectWithoutProperties$s(_ref, _excluded$s);
1253
+ props = _objectWithoutProperties$v(_ref, _excluded$v);
1170
1254
 
1171
- return /*#__PURE__*/React.createElement("svg", _extends$t({
1255
+ return /*#__PURE__*/React.createElement("svg", _extends$w({
1172
1256
  width: 457,
1173
1257
  height: 269,
1174
1258
  fill: "none",
@@ -1177,7 +1261,7 @@ function SvgNyplFullLockUpNegative(_ref) {
1177
1261
  "aria-labelledby": titleId
1178
1262
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1179
1263
  id: titleId
1180
- }, title) : null, _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
1264
+ }, title) : null, _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
1181
1265
  fill: "url(#nypl_full_lock_up_negative_svg__pattern0)",
1182
1266
  d: "M0 .379h457v268.295H0z"
1183
1267
  })), _defs$2 || (_defs$2 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", {
@@ -1196,22 +1280,22 @@ function SvgNyplFullLockUpNegative(_ref) {
1196
1280
  }))));
1197
1281
  }
1198
1282
 
1199
- 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;
1283
+ 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;
1200
1284
 
1201
- var _excluded$t = ["title", "titleId"];
1285
+ var _excluded$w = ["title", "titleId"];
1202
1286
 
1203
- 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); }
1287
+ 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); }
1204
1288
 
1205
- 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; }
1289
+ 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; }
1206
1290
 
1207
- 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; }
1291
+ 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; }
1208
1292
 
1209
1293
  function SvgNyplFullLockUp(_ref) {
1210
1294
  var title = _ref.title,
1211
1295
  titleId = _ref.titleId,
1212
- props = _objectWithoutProperties$t(_ref, _excluded$t);
1296
+ props = _objectWithoutProperties$w(_ref, _excluded$w);
1213
1297
 
1214
- return /*#__PURE__*/React.createElement("svg", _extends$u({
1298
+ return /*#__PURE__*/React.createElement("svg", _extends$x({
1215
1299
  width: 457,
1216
1300
  height: 258,
1217
1301
  fill: "none",
@@ -1219,7 +1303,7 @@ function SvgNyplFullLockUp(_ref) {
1219
1303
  "aria-labelledby": titleId
1220
1304
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1221
1305
  id: titleId
1222
- }, title) : null, _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
1306
+ }, title) : null, _path$u || (_path$u = /*#__PURE__*/React.createElement("path", {
1223
1307
  d: "M229.882 3.455h3.452l25.173 36.473V3.455h3.264V45.64h-3.201L233.146 8.917V45.64h-3.201V3.455h-.063z",
1224
1308
  fill: "#000"
1225
1309
  })), _path2$d || (_path2$d = /*#__PURE__*/React.createElement("path", {
@@ -1289,22 +1373,22 @@ function SvgNyplFullLockUp(_ref) {
1289
1373
  })));
1290
1374
  }
1291
1375
 
1292
- 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;
1376
+ 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;
1293
1377
 
1294
- var _excluded$u = ["title", "titleId"];
1378
+ var _excluded$x = ["title", "titleId"];
1295
1379
 
1296
- 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); }
1380
+ 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); }
1297
1381
 
1298
- 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; }
1382
+ 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; }
1299
1383
 
1300
- 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; }
1384
+ 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; }
1301
1385
 
1302
1386
  function SvgNyplNoLionNegative(_ref) {
1303
1387
  var title = _ref.title,
1304
1388
  titleId = _ref.titleId,
1305
- props = _objectWithoutProperties$u(_ref, _excluded$u);
1389
+ props = _objectWithoutProperties$x(_ref, _excluded$x);
1306
1390
 
1307
- return /*#__PURE__*/React.createElement("svg", _extends$v({
1391
+ return /*#__PURE__*/React.createElement("svg", _extends$y({
1308
1392
  width: 364,
1309
1393
  height: 300,
1310
1394
  fill: "none",
@@ -1312,7 +1396,7 @@ function SvgNyplNoLionNegative(_ref) {
1312
1396
  "aria-labelledby": titleId
1313
1397
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1314
1398
  id: titleId
1315
- }, title) : null, _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
1399
+ }, title) : null, _path$v || (_path$v = /*#__PURE__*/React.createElement("path", {
1316
1400
  d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
1317
1401
  fill: "#fff"
1318
1402
  })), _path2$e || (_path2$e = /*#__PURE__*/React.createElement("path", {
@@ -1374,22 +1458,22 @@ function SvgNyplNoLionNegative(_ref) {
1374
1458
  })));
1375
1459
  }
1376
1460
 
1377
- 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;
1461
+ 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;
1378
1462
 
1379
- var _excluded$v = ["title", "titleId"];
1463
+ var _excluded$y = ["title", "titleId"];
1380
1464
 
1381
- 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); }
1465
+ 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); }
1382
1466
 
1383
- 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; }
1467
+ 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; }
1384
1468
 
1385
- 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; }
1469
+ 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; }
1386
1470
 
1387
1471
  function SvgNyplNoLionPositive(_ref) {
1388
1472
  var title = _ref.title,
1389
1473
  titleId = _ref.titleId,
1390
- props = _objectWithoutProperties$v(_ref, _excluded$v);
1474
+ props = _objectWithoutProperties$y(_ref, _excluded$y);
1391
1475
 
1392
- return /*#__PURE__*/React.createElement("svg", _extends$w({
1476
+ return /*#__PURE__*/React.createElement("svg", _extends$z({
1393
1477
  width: 364,
1394
1478
  height: 300,
1395
1479
  fill: "none",
@@ -1397,7 +1481,7 @@ function SvgNyplNoLionPositive(_ref) {
1397
1481
  "aria-labelledby": titleId
1398
1482
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1399
1483
  id: titleId
1400
- }, title) : null, _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
1484
+ }, title) : null, _path$w || (_path$w = /*#__PURE__*/React.createElement("path", {
1401
1485
  d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
1402
1486
  fill: "#000"
1403
1487
  })), _path2$f || (_path2$f = /*#__PURE__*/React.createElement("path", {
@@ -1461,20 +1545,20 @@ function SvgNyplNoLionPositive(_ref) {
1461
1545
 
1462
1546
  var _rect$1, _rect2;
1463
1547
 
1464
- var _excluded$w = ["title", "titleId"];
1548
+ var _excluded$z = ["title", "titleId"];
1465
1549
 
1466
- 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); }
1550
+ 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); }
1467
1551
 
1468
- 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; }
1552
+ 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; }
1469
1553
 
1470
- 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; }
1554
+ 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; }
1471
1555
 
1472
1556
  function SvgPlus(_ref) {
1473
1557
  var title = _ref.title,
1474
1558
  titleId = _ref.titleId,
1475
- props = _objectWithoutProperties$w(_ref, _excluded$w);
1559
+ props = _objectWithoutProperties$z(_ref, _excluded$z);
1476
1560
 
1477
- return /*#__PURE__*/React.createElement("svg", _extends$x({
1561
+ return /*#__PURE__*/React.createElement("svg", _extends$A({
1478
1562
  viewBox: "0 0 23 23",
1479
1563
  xmlns: "http://www.w3.org/2000/svg",
1480
1564
  "aria-labelledby": titleId
@@ -1497,20 +1581,20 @@ function SvgPlus(_ref) {
1497
1581
 
1498
1582
  var _g$3, _defs$3;
1499
1583
 
1500
- var _excluded$x = ["title", "titleId"];
1584
+ var _excluded$A = ["title", "titleId"];
1501
1585
 
1502
- 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); }
1586
+ 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); }
1503
1587
 
1504
- 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; }
1588
+ 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; }
1505
1589
 
1506
- 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; }
1590
+ 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; }
1507
1591
 
1508
1592
  function SvgQueensLong(_ref) {
1509
1593
  var title = _ref.title,
1510
1594
  titleId = _ref.titleId,
1511
- props = _objectWithoutProperties$x(_ref, _excluded$x);
1595
+ props = _objectWithoutProperties$A(_ref, _excluded$A);
1512
1596
 
1513
- return /*#__PURE__*/React.createElement("svg", _extends$y({
1597
+ return /*#__PURE__*/React.createElement("svg", _extends$B({
1514
1598
  width: 355,
1515
1599
  height: 48,
1516
1600
  fill: "none",
@@ -1559,20 +1643,20 @@ function SvgQueensLong(_ref) {
1559
1643
 
1560
1644
  var _g$4, _defs$4;
1561
1645
 
1562
- var _excluded$y = ["title", "titleId"];
1646
+ var _excluded$B = ["title", "titleId"];
1563
1647
 
1564
- 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); }
1648
+ 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); }
1565
1649
 
1566
- 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; }
1650
+ 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; }
1567
1651
 
1568
- 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; }
1652
+ 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; }
1569
1653
 
1570
1654
  function SvgQueensStacked(_ref) {
1571
1655
  var title = _ref.title,
1572
1656
  titleId = _ref.titleId,
1573
- props = _objectWithoutProperties$y(_ref, _excluded$y);
1657
+ props = _objectWithoutProperties$B(_ref, _excluded$B);
1574
1658
 
1575
- return /*#__PURE__*/React.createElement("svg", _extends$z({
1659
+ return /*#__PURE__*/React.createElement("svg", _extends$C({
1576
1660
  width: 320,
1577
1661
  height: 174,
1578
1662
  fill: "none",
@@ -1594,22 +1678,22 @@ function SvgQueensStacked(_ref) {
1594
1678
  })))));
1595
1679
  }
1596
1680
 
1597
- var _path$u, _path2$g, _path3$c, _path4$6, _path5$5;
1681
+ var _path$x, _path2$g, _path3$c, _path4$6, _path5$5;
1598
1682
 
1599
- var _excluded$z = ["title", "titleId"];
1683
+ var _excluded$C = ["title", "titleId"];
1600
1684
 
1601
- 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); }
1685
+ 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); }
1602
1686
 
1603
- 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; }
1687
+ 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; }
1604
1688
 
1605
- 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; }
1689
+ 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; }
1606
1690
 
1607
1691
  function SvgSchomburgCircle(_ref) {
1608
1692
  var title = _ref.title,
1609
1693
  titleId = _ref.titleId,
1610
- props = _objectWithoutProperties$z(_ref, _excluded$z);
1694
+ props = _objectWithoutProperties$C(_ref, _excluded$C);
1611
1695
 
1612
- return /*#__PURE__*/React.createElement("svg", _extends$A({
1696
+ return /*#__PURE__*/React.createElement("svg", _extends$D({
1613
1697
  width: 67,
1614
1698
  height: 67,
1615
1699
  fill: "none",
@@ -1617,7 +1701,7 @@ function SvgSchomburgCircle(_ref) {
1617
1701
  "aria-labelledby": titleId
1618
1702
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1619
1703
  id: titleId
1620
- }, title) : null, _path$u || (_path$u = /*#__PURE__*/React.createElement("path", {
1704
+ }, title) : null, _path$x || (_path$x = /*#__PURE__*/React.createElement("path", {
1621
1705
  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",
1622
1706
  fill: "#C54B38"
1623
1707
  })), _path2$g || (_path2$g = /*#__PURE__*/React.createElement("path", {
@@ -1635,22 +1719,22 @@ function SvgSchomburgCircle(_ref) {
1635
1719
  })));
1636
1720
  }
1637
1721
 
1638
- var _path$v, _path2$h, _path3$d, _path4$7, _path5$6, _path6$4, _path7$4;
1722
+ var _path$y, _path2$h, _path3$d, _path4$7, _path5$6, _path6$4, _path7$4;
1639
1723
 
1640
- var _excluded$A = ["title", "titleId"];
1724
+ var _excluded$D = ["title", "titleId"];
1641
1725
 
1642
- 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); }
1726
+ 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); }
1643
1727
 
1644
- 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; }
1728
+ 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; }
1645
1729
 
1646
- 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; }
1730
+ 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; }
1647
1731
 
1648
1732
  function SvgSchomburgPositive(_ref) {
1649
1733
  var title = _ref.title,
1650
1734
  titleId = _ref.titleId,
1651
- props = _objectWithoutProperties$A(_ref, _excluded$A);
1735
+ props = _objectWithoutProperties$D(_ref, _excluded$D);
1652
1736
 
1653
- return /*#__PURE__*/React.createElement("svg", _extends$B({
1737
+ return /*#__PURE__*/React.createElement("svg", _extends$E({
1654
1738
  width: 185,
1655
1739
  height: 79,
1656
1740
  fill: "none",
@@ -1658,7 +1742,7 @@ function SvgSchomburgPositive(_ref) {
1658
1742
  "aria-labelledby": titleId
1659
1743
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1660
1744
  id: titleId
1661
- }, title) : null, _path$v || (_path$v = /*#__PURE__*/React.createElement("path", {
1745
+ }, title) : null, _path$y || (_path$y = /*#__PURE__*/React.createElement("path", {
1662
1746
  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",
1663
1747
  fill: "#010101"
1664
1748
  })), _path2$h || (_path2$h = /*#__PURE__*/React.createElement("path", {
@@ -1682,28 +1766,28 @@ function SvgSchomburgPositive(_ref) {
1682
1766
  })));
1683
1767
  }
1684
1768
 
1685
- var _path$w;
1769
+ var _path$z;
1686
1770
 
1687
- var _excluded$B = ["title", "titleId"];
1771
+ var _excluded$E = ["title", "titleId"];
1688
1772
 
1689
- 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); }
1773
+ 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); }
1690
1774
 
1691
- 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; }
1775
+ 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; }
1692
1776
 
1693
- 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; }
1777
+ 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; }
1694
1778
 
1695
1779
  function SvgSearch(_ref) {
1696
1780
  var title = _ref.title,
1697
1781
  titleId = _ref.titleId,
1698
- props = _objectWithoutProperties$B(_ref, _excluded$B);
1782
+ props = _objectWithoutProperties$E(_ref, _excluded$E);
1699
1783
 
1700
- return /*#__PURE__*/React.createElement("svg", _extends$C({
1784
+ return /*#__PURE__*/React.createElement("svg", _extends$F({
1701
1785
  viewBox: "0 0 24 24",
1702
1786
  xmlns: "http://www.w3.org/2000/svg",
1703
1787
  "aria-labelledby": titleId
1704
1788
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1705
1789
  id: titleId
1706
- }, title) : null, _path$w || (_path$w = /*#__PURE__*/React.createElement("path", {
1790
+ }, title) : null, _path$z || (_path$z = /*#__PURE__*/React.createElement("path", {
1707
1791
  fillRule: "evenodd",
1708
1792
  clipRule: "evenodd",
1709
1793
  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"
@@ -1712,20 +1796,20 @@ function SvgSearch(_ref) {
1712
1796
 
1713
1797
  var _g$5, _defs$5;
1714
1798
 
1715
- var _excluded$C = ["title", "titleId"];
1799
+ var _excluded$F = ["title", "titleId"];
1716
1800
 
1717
- 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); }
1801
+ 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); }
1718
1802
 
1719
- 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; }
1803
+ 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; }
1720
1804
 
1721
- 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; }
1805
+ 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; }
1722
1806
 
1723
1807
  function SvgSimplyeBlack(_ref) {
1724
1808
  var title = _ref.title,
1725
1809
  titleId = _ref.titleId,
1726
- props = _objectWithoutProperties$C(_ref, _excluded$C);
1810
+ props = _objectWithoutProperties$F(_ref, _excluded$F);
1727
1811
 
1728
- return /*#__PURE__*/React.createElement("svg", _extends$D({
1812
+ return /*#__PURE__*/React.createElement("svg", _extends$G({
1729
1813
  width: 512,
1730
1814
  height: 148,
1731
1815
  fill: "none",
@@ -1753,20 +1837,20 @@ function SvgSimplyeBlack(_ref) {
1753
1837
 
1754
1838
  var _g$6, _defs$6;
1755
1839
 
1756
- var _excluded$D = ["title", "titleId"];
1840
+ var _excluded$G = ["title", "titleId"];
1757
1841
 
1758
- 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); }
1842
+ 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); }
1759
1843
 
1760
- 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; }
1844
+ 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; }
1761
1845
 
1762
- 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; }
1846
+ 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; }
1763
1847
 
1764
1848
  function SvgSimplyeColor(_ref) {
1765
1849
  var title = _ref.title,
1766
1850
  titleId = _ref.titleId,
1767
- props = _objectWithoutProperties$D(_ref, _excluded$D);
1851
+ props = _objectWithoutProperties$G(_ref, _excluded$G);
1768
1852
 
1769
- return /*#__PURE__*/React.createElement("svg", _extends$E({
1853
+ return /*#__PURE__*/React.createElement("svg", _extends$H({
1770
1854
  width: 682,
1771
1855
  height: 196,
1772
1856
  fill: "none",
@@ -1797,22 +1881,22 @@ function SvgSimplyeColor(_ref) {
1797
1881
  })))));
1798
1882
  }
1799
1883
 
1800
- var _path$x;
1884
+ var _path$A;
1801
1885
 
1802
- var _excluded$E = ["title", "titleId"];
1886
+ var _excluded$H = ["title", "titleId"];
1803
1887
 
1804
- 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); }
1888
+ 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); }
1805
1889
 
1806
- 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; }
1890
+ 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; }
1807
1891
 
1808
- 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; }
1892
+ 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; }
1809
1893
 
1810
1894
  function SvgSnflNegative(_ref) {
1811
1895
  var title = _ref.title,
1812
1896
  titleId = _ref.titleId,
1813
- props = _objectWithoutProperties$E(_ref, _excluded$E);
1897
+ props = _objectWithoutProperties$H(_ref, _excluded$H);
1814
1898
 
1815
- return /*#__PURE__*/React.createElement("svg", _extends$F({
1899
+ return /*#__PURE__*/React.createElement("svg", _extends$I({
1816
1900
  width: 73,
1817
1901
  height: 99,
1818
1902
  fill: "none",
@@ -1820,28 +1904,28 @@ function SvgSnflNegative(_ref) {
1820
1904
  "aria-labelledby": titleId
1821
1905
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1822
1906
  id: titleId
1823
- }, title) : null, _path$x || (_path$x = /*#__PURE__*/React.createElement("path", {
1907
+ }, title) : null, _path$A || (_path$A = /*#__PURE__*/React.createElement("path", {
1824
1908
  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",
1825
1909
  fill: "#fff"
1826
1910
  })));
1827
1911
  }
1828
1912
 
1829
- var _path$y;
1913
+ var _path$B;
1830
1914
 
1831
- var _excluded$F = ["title", "titleId"];
1915
+ var _excluded$I = ["title", "titleId"];
1832
1916
 
1833
- 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); }
1917
+ 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); }
1834
1918
 
1835
- 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; }
1919
+ 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; }
1836
1920
 
1837
- 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; }
1921
+ 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; }
1838
1922
 
1839
1923
  function SvgSnflPositive(_ref) {
1840
1924
  var title = _ref.title,
1841
1925
  titleId = _ref.titleId,
1842
- props = _objectWithoutProperties$F(_ref, _excluded$F);
1926
+ props = _objectWithoutProperties$I(_ref, _excluded$I);
1843
1927
 
1844
- return /*#__PURE__*/React.createElement("svg", _extends$G({
1928
+ return /*#__PURE__*/React.createElement("svg", _extends$J({
1845
1929
  width: 84,
1846
1930
  height: 111,
1847
1931
  fill: "none",
@@ -1849,63 +1933,63 @@ function SvgSnflPositive(_ref) {
1849
1933
  "aria-labelledby": titleId
1850
1934
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1851
1935
  id: titleId
1852
- }, title) : null, _path$y || (_path$y = /*#__PURE__*/React.createElement("path", {
1936
+ }, title) : null, _path$B || (_path$B = /*#__PURE__*/React.createElement("path", {
1853
1937
  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",
1854
1938
  fill: "#000"
1855
1939
  })));
1856
1940
  }
1857
1941
 
1858
- var _path$z;
1942
+ var _path$C;
1859
1943
 
1860
- var _excluded$G = ["title", "titleId"];
1944
+ var _excluded$J = ["title", "titleId"];
1861
1945
 
1862
- 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); }
1946
+ 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); }
1863
1947
 
1864
- 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; }
1948
+ 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; }
1865
1949
 
1866
- 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; }
1950
+ 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; }
1867
1951
 
1868
1952
  function SvgSpeakerNotes(_ref) {
1869
1953
  var title = _ref.title,
1870
1954
  titleId = _ref.titleId,
1871
- props = _objectWithoutProperties$G(_ref, _excluded$G);
1955
+ props = _objectWithoutProperties$J(_ref, _excluded$J);
1872
1956
 
1873
- return /*#__PURE__*/React.createElement("svg", _extends$H({
1957
+ return /*#__PURE__*/React.createElement("svg", _extends$K({
1874
1958
  viewBox: "0 0 24 24",
1875
1959
  xmlns: "http://www.w3.org/2000/svg",
1876
1960
  "aria-labelledby": titleId
1877
1961
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1878
1962
  id: titleId
1879
- }, title) : null, _path$z || (_path$z = /*#__PURE__*/React.createElement("path", {
1963
+ }, title) : null, _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
1880
1964
  fillRule: "evenodd",
1881
1965
  clipRule: "evenodd",
1882
1966
  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"
1883
1967
  })));
1884
1968
  }
1885
1969
 
1886
- var _path$A, _path2$i;
1970
+ var _path$D, _path2$i;
1887
1971
 
1888
- var _excluded$H = ["title", "titleId"];
1972
+ var _excluded$K = ["title", "titleId"];
1889
1973
 
1890
- 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); }
1974
+ 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); }
1891
1975
 
1892
- 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; }
1976
+ 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; }
1893
1977
 
1894
- 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; }
1978
+ 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; }
1895
1979
 
1896
1980
  function SvgUtilityAccountFilled(_ref) {
1897
1981
  var title = _ref.title,
1898
1982
  titleId = _ref.titleId,
1899
- props = _objectWithoutProperties$H(_ref, _excluded$H);
1983
+ props = _objectWithoutProperties$K(_ref, _excluded$K);
1900
1984
 
1901
- return /*#__PURE__*/React.createElement("svg", _extends$I({
1985
+ return /*#__PURE__*/React.createElement("svg", _extends$L({
1902
1986
  viewBox: "0 0 24 24",
1903
1987
  fill: "none",
1904
1988
  xmlns: "http://www.w3.org/2000/svg",
1905
1989
  "aria-labelledby": titleId
1906
1990
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1907
1991
  id: titleId
1908
- }, title) : null, _path$A || (_path$A = /*#__PURE__*/React.createElement("path", {
1992
+ }, title) : null, _path$D || (_path$D = /*#__PURE__*/React.createElement("path", {
1909
1993
  clipRule: "evenodd",
1910
1994
  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"
1911
1995
  })), _path2$i || (_path2$i = /*#__PURE__*/React.createElement("path", {
@@ -1914,29 +1998,29 @@ function SvgUtilityAccountFilled(_ref) {
1914
1998
  })));
1915
1999
  }
1916
2000
 
1917
- var _path$B, _path2$j;
2001
+ var _path$E, _path2$j;
1918
2002
 
1919
- var _excluded$I = ["title", "titleId"];
2003
+ var _excluded$L = ["title", "titleId"];
1920
2004
 
1921
- 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); }
2005
+ 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); }
1922
2006
 
1923
- 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; }
2007
+ 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; }
1924
2008
 
1925
- 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; }
2009
+ 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; }
1926
2010
 
1927
2011
  function SvgUtilityAccountUnfilled(_ref) {
1928
2012
  var title = _ref.title,
1929
2013
  titleId = _ref.titleId,
1930
- props = _objectWithoutProperties$I(_ref, _excluded$I);
2014
+ props = _objectWithoutProperties$L(_ref, _excluded$L);
1931
2015
 
1932
- return /*#__PURE__*/React.createElement("svg", _extends$J({
2016
+ return /*#__PURE__*/React.createElement("svg", _extends$M({
1933
2017
  viewBox: "0 0 24 24",
1934
2018
  fill: "none",
1935
2019
  xmlns: "http://www.w3.org/2000/svg",
1936
2020
  "aria-labelledby": titleId
1937
2021
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1938
2022
  id: titleId
1939
- }, title) : null, _path$B || (_path$B = /*#__PURE__*/React.createElement("path", {
2023
+ }, title) : null, _path$E || (_path$E = /*#__PURE__*/React.createElement("path", {
1940
2024
  fillRule: "evenodd",
1941
2025
  clipRule: "evenodd",
1942
2026
  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",
@@ -1951,28 +2035,28 @@ function SvgUtilityAccountUnfilled(_ref) {
1951
2035
  })));
1952
2036
  }
1953
2037
 
1954
- var _path$C;
2038
+ var _path$F;
1955
2039
 
1956
- var _excluded$J = ["title", "titleId"];
2040
+ var _excluded$M = ["title", "titleId"];
1957
2041
 
1958
- 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); }
2042
+ 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); }
1959
2043
 
1960
- 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; }
2044
+ 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; }
1961
2045
 
1962
- 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; }
2046
+ 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; }
1963
2047
 
1964
2048
  function SvgUtilityHamburger(_ref) {
1965
2049
  var title = _ref.title,
1966
2050
  titleId = _ref.titleId,
1967
- props = _objectWithoutProperties$J(_ref, _excluded$J);
2051
+ props = _objectWithoutProperties$M(_ref, _excluded$M);
1968
2052
 
1969
- return /*#__PURE__*/React.createElement("svg", _extends$K({
2053
+ return /*#__PURE__*/React.createElement("svg", _extends$N({
1970
2054
  viewBox: "0 0 24 24",
1971
2055
  xmlns: "http://www.w3.org/2000/svg",
1972
2056
  "aria-labelledby": titleId
1973
2057
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1974
2058
  id: titleId
1975
- }, title) : null, _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
2059
+ }, title) : null, _path$F || (_path$F = /*#__PURE__*/React.createElement("path", {
1976
2060
  fillRule: "evenodd",
1977
2061
  clipRule: "evenodd",
1978
2062
  stroke: "#000",
@@ -1987,6 +2071,9 @@ var iconSvgs = {
1987
2071
  accessibility_full: SvgAccessibilityFull,
1988
2072
  accessibility_partial: SvgAccessibilityPartial,
1989
2073
  action_check_circle: SvgActionCheckCircle,
2074
+ action_help_default: SvgActionHelpDefault,
2075
+ action_help_outline: SvgActionHelpOutline,
2076
+ action_launch: SvgActionLaunch,
1990
2077
  arrow: SvgArrow,
1991
2078
  brooklyn: SvgBrooklyn,
1992
2079
  check: SvgCheck,
@@ -2058,7 +2145,7 @@ function Icon(props) {
2058
2145
  _props$title = props.title,
2059
2146
  title = _props$title === void 0 ? name + " icon" : _props$title,
2060
2147
  _props$type = props.type,
2061
- type = _props$type === void 0 ? IconTypes.Default : _props$type;
2148
+ type = _props$type === void 0 ? exports.IconTypes.Default : _props$type;
2062
2149
  var styles = react.useStyleConfig("Icon", {
2063
2150
  align: align,
2064
2151
  color: color,
@@ -2185,14 +2272,13 @@ function Accordion(props) {
2185
2272
  }, getElementsFromContentData(contentData));
2186
2273
  }
2187
2274
 
2188
- var ColorVariants;
2189
-
2190
2275
  (function (ColorVariants) {
2276
+ ColorVariants["Blogs"] = "blogs";
2191
2277
  ColorVariants["BooksAndMore"] = "booksAndMore";
2192
2278
  ColorVariants["Locations"] = "locations";
2193
2279
  ColorVariants["Research"] = "research";
2194
2280
  ColorVariants["WhatsOn"] = "whatsOn";
2195
- })(ColorVariants || (ColorVariants = {}));
2281
+ })(exports.ColorVariants || (exports.ColorVariants = {}));
2196
2282
 
2197
2283
  // Utility functions to use throughout the codebase
2198
2284
 
@@ -2251,7 +2337,7 @@ var getElementsFromData = function getElementsFromData(data, breadcrumbsID) {
2251
2337
  iconRotation: exports.IconRotationTypes.Rotate90,
2252
2338
  id: breadcrumbsID + "__backarrow",
2253
2339
  className: "breadcrumbs-icon",
2254
- type: IconTypes.Breadcrumbs
2340
+ type: exports.IconTypes.Breadcrumbs
2255
2341
  }), React.createElement("span", {
2256
2342
  className: "breadcrumb-label"
2257
2343
  }, breadcrumbData.text)));
@@ -2260,12 +2346,14 @@ var getElementsFromData = function getElementsFromData(data, breadcrumbsID) {
2260
2346
  };
2261
2347
 
2262
2348
  function Breadcrumbs(props) {
2263
- var breadcrumbsData = props.breadcrumbsData,
2349
+ var _props$additionalStyl = props.additionalStyles,
2350
+ additionalStyles = _props$additionalStyl === void 0 ? {} : _props$additionalStyl,
2351
+ breadcrumbsData = props.breadcrumbsData,
2264
2352
  className = props.className,
2265
2353
  colorVariant = props.colorVariant,
2266
2354
  _props$id = props.id,
2267
2355
  id = _props$id === void 0 ? generateUUID() : _props$id;
2268
- var variant = getVariant(colorVariant, ColorVariants);
2356
+ var variant = getVariant(colorVariant, exports.ColorVariants);
2269
2357
 
2270
2358
  if (!breadcrumbsData || breadcrumbsData.length === 0) {
2271
2359
  throw new Error("You must use the `breadcrumbsData` prop to pass a data object to the Breadcrumbs component. That prop is current empty.");
@@ -2274,10 +2362,13 @@ function Breadcrumbs(props) {
2274
2362
  var styles = react.useStyleConfig("Breadcrumb", {
2275
2363
  variant: variant
2276
2364
  });
2365
+
2366
+ var finalStyles = _extends({}, styles, additionalStyles);
2367
+
2277
2368
  var breadcrumbItems = getElementsFromData(breadcrumbsData, id);
2278
2369
  return React.createElement(react.Breadcrumb, {
2279
2370
  className: className,
2280
- __css: styles,
2371
+ __css: finalStyles,
2281
2372
  id: id
2282
2373
  }, breadcrumbItems);
2283
2374
  }
@@ -2289,26 +2380,13 @@ function Breadcrumbs(props) {
2289
2380
  ButtonTypes["Pill"] = "pill";
2290
2381
  ButtonTypes["Link"] = "link";
2291
2382
  ButtonTypes["SearchBar"] = "searchBar";
2383
+ ButtonTypes["NoBrand"] = "noBrand";
2292
2384
  })(exports.ButtonTypes || (exports.ButtonTypes = {}));
2293
2385
 
2294
- var variantMap = {};
2295
-
2296
- for (var type in exports.ButtonTypes) {
2297
- variantMap[exports.ButtonTypes[type]] = exports.ButtonTypes[type];
2298
- }
2299
2386
  /**
2300
- * Map the ButtonType to the Button Chakra theme variant object. If a wrong
2301
- * value is passed (typically in non-Typescript scenarios), then the default
2302
- * is the "primary" variant.
2387
+ * Renders a simple `button` element with custom variant styles.
2303
2388
  */
2304
2389
 
2305
-
2306
- var getVariant$1 = function getVariant(buttonType) {
2307
- return variantMap[buttonType] || exports.ButtonTypes.Primary;
2308
- };
2309
- /** Renders a simple `button` element with custom classes and modifiers. */
2310
-
2311
-
2312
2390
  function Button(props) {
2313
2391
  var _props$additionalStyl = props.additionalStyles,
2314
2392
  additionalStyles = _props$additionalStyl === void 0 ? {} : _props$additionalStyl,
@@ -2317,8 +2395,9 @@ function Button(props) {
2317
2395
  children = props.children,
2318
2396
  _props$className = props.className,
2319
2397
  className = _props$className === void 0 ? "" : _props$className,
2320
- disabled = props.disabled,
2321
- id = props.id,
2398
+ isDisabled = props.isDisabled,
2399
+ _props$id = props.id,
2400
+ id = _props$id === void 0 ? generateUUID() : _props$id,
2322
2401
  _props$mouseDown = props.mouseDown,
2323
2402
  mouseDown = _props$mouseDown === void 0 ? false : _props$mouseDown,
2324
2403
  onClick = props.onClick,
@@ -2332,7 +2411,7 @@ function Button(props) {
2332
2411
  var childCount = 0;
2333
2412
  var hasIcon = false;
2334
2413
  var variant;
2335
- var styles;
2414
+ var styles = {};
2336
2415
  React.Children.map(children, function (child) {
2337
2416
  childCount++;
2338
2417
 
@@ -2346,7 +2425,7 @@ function Button(props) {
2346
2425
  if (childCount === 1 && hasIcon) {
2347
2426
  variant = "iconOnly";
2348
2427
  } else {
2349
- variant = getVariant$1(buttonType);
2428
+ variant = getVariant(buttonType, exports.ButtonTypes, exports.ButtonTypes.Primary);
2350
2429
  }
2351
2430
 
2352
2431
  styles = react.useStyleConfig("Button", {
@@ -2357,7 +2436,7 @@ function Button(props) {
2357
2436
  "data-testid": "button",
2358
2437
  className: className,
2359
2438
  type: type,
2360
- disabled: disabled,
2439
+ isDisabled: isDisabled,
2361
2440
  __css: _extends({}, styles, additionalStyles)
2362
2441
  }, attributes, btnCallback), children);
2363
2442
  }
@@ -2383,10 +2462,10 @@ function Button(props) {
2383
2462
  HeadingLevels[HeadingLevels["Six"] = 6] = "Six";
2384
2463
  })(exports.HeadingLevels || (exports.HeadingLevels = {}));
2385
2464
 
2386
- var variantMap$1 = {};
2465
+ var variantMap = {};
2387
2466
 
2388
- for (var type$1 in exports.HeadingDisplaySizes) {
2389
- variantMap$1[exports.HeadingDisplaySizes[type$1]] = exports.HeadingDisplaySizes[type$1];
2467
+ for (var type in exports.HeadingDisplaySizes) {
2468
+ variantMap[exports.HeadingDisplaySizes[type]] = exports.HeadingDisplaySizes[type];
2390
2469
  }
2391
2470
  /**
2392
2471
  * Map the HeadingDisplaySizes to the Heading Chakra theme variant object. If a wrong
@@ -2395,8 +2474,8 @@ for (var type$1 in exports.HeadingDisplaySizes) {
2395
2474
  */
2396
2475
 
2397
2476
 
2398
- var getVariant$2 = function getVariant(displaySize) {
2399
- return variantMap$1[displaySize] || null;
2477
+ var getVariant$1 = function getVariant(displaySize) {
2478
+ return variantMap[displaySize] || null;
2400
2479
  };
2401
2480
 
2402
2481
  function Heading(props) {
@@ -2410,7 +2489,7 @@ function Heading(props) {
2410
2489
  text = props.text,
2411
2490
  url = props.url,
2412
2491
  urlClass = props.urlClass;
2413
- var variant = displaySize ? getVariant$2(displaySize) : "h" + level;
2492
+ var variant = displaySize ? getVariant$1(displaySize) : "h" + level;
2414
2493
  var styles = react.useStyleConfig("Heading", {
2415
2494
  variant: variant
2416
2495
  }); // Combine native base styles with any additional styles.
@@ -2579,6 +2658,7 @@ function CardImage(props) {
2579
2658
  });
2580
2659
  } // CardHeading child-component
2581
2660
 
2661
+
2582
2662
  var CardHeading = Heading; // CardContent child-component
2583
2663
 
2584
2664
  function CardContent(props) {
@@ -2624,6 +2704,7 @@ function CardLinkBox(_ref) {
2624
2704
  * clickable.
2625
2705
  */
2626
2706
 
2707
+
2627
2708
  function CardLinkOverlay(_ref2) {
2628
2709
  var children = _ref2.children,
2629
2710
  mainActionLink = _ref2.mainActionLink;
@@ -2631,6 +2712,7 @@ function CardLinkOverlay(_ref2) {
2631
2712
  href: mainActionLink
2632
2713
  }, children) : React.createElement(React.Fragment, null, children);
2633
2714
  }
2715
+
2634
2716
  function Card(props) {
2635
2717
  var backgroundColor = props.backgroundColor,
2636
2718
  border = props.border,
@@ -2817,7 +2899,7 @@ function HelperErrorText(props) {
2817
2899
  }, children);
2818
2900
  }
2819
2901
 
2820
- var _excluded$K = ["isIndeterminate", "isChecked"];
2902
+ var _excluded$N = ["isIndeterminate", "isChecked"];
2821
2903
  var onChangeDefault = function onChangeDefault() {
2822
2904
  return;
2823
2905
  };
@@ -2826,7 +2908,7 @@ function CheckboxIcon(props) {
2826
2908
  // We don't need the `isIndeterminate` or `isChecked` props but it
2827
2909
  // causes rendering issues on the SVG element, so we remove them
2828
2910
  // before passing all the props to the `Icon` component.
2829
- var rest = _objectWithoutPropertiesLoose(props, _excluded$K);
2911
+ var rest = _objectWithoutPropertiesLoose(props, _excluded$N);
2830
2912
 
2831
2913
  return React.createElement(react.Icon, Object.assign({
2832
2914
  viewBox: "0 0 24 24"
@@ -3101,6 +3183,12 @@ var CheckboxGroup = /*#__PURE__*/React.forwardRef(function (props, ref) {
3101
3183
  }, footnote)));
3102
3184
  });
3103
3185
 
3186
+ (function (DatePickerTypes) {
3187
+ DatePickerTypes["Full"] = "full";
3188
+ DatePickerTypes["Month"] = "month";
3189
+ DatePickerTypes["Year"] = "year";
3190
+ })(exports.DatePickerTypes || (exports.DatePickerTypes = {}));
3191
+
3104
3192
  (function (GridGaps) {
3105
3193
  GridGaps["ExtraExtraSmall"] = "xxs";
3106
3194
  GridGaps["ExtraSmall"] = "xs";
@@ -3201,12 +3289,6 @@ function Form(props) {
3201
3289
  }, alteredChildren));
3202
3290
  }
3203
3291
 
3204
- (function (DatePickerTypes) {
3205
- DatePickerTypes["Full"] = "full";
3206
- DatePickerTypes["Month"] = "month";
3207
- DatePickerTypes["Year"] = "year";
3208
- })(exports.DatePickerTypes || (exports.DatePickerTypes = {}));
3209
-
3210
3292
  // HTML Input types as defined by MDN: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
3211
3293
 
3212
3294
  (function (TextInputTypes) {
@@ -3219,7 +3301,8 @@ function Form(props) {
3219
3301
  TextInputTypes["textarea"] = "textarea";
3220
3302
  TextInputTypes["tel"] = "tel";
3221
3303
  TextInputTypes["url"] = "url";
3222
- })(exports.TextInputTypes || (exports.TextInputTypes = {}));
3304
+ })(exports.TextInputTypes || (exports.TextInputTypes = {})); // Only used internally in `TextInput`.
3305
+
3223
3306
 
3224
3307
  var TextInputFormats;
3225
3308
 
@@ -3233,7 +3316,8 @@ var TextInputFormats;
3233
3316
  TextInputFormats["tel"] = "(123) 123-1234";
3234
3317
  TextInputFormats["textarea"] = "";
3235
3318
  TextInputFormats["url"] = "https://domain.com";
3236
- })(TextInputFormats || (TextInputFormats = {}));
3319
+ })(TextInputFormats || (TextInputFormats = {})); // Only used internally in `TextInput` and `SearchBar`.
3320
+
3237
3321
 
3238
3322
  var TextInputVariants;
3239
3323
 
@@ -3293,6 +3377,7 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (props, ref) {
3293
3377
  _props$attributes = props.attributes,
3294
3378
  attributes = _props$attributes === void 0 ? {} : _props$attributes,
3295
3379
  className = props.className,
3380
+ defaultValue = props.defaultValue,
3296
3381
  helperText = props.helperText,
3297
3382
  _props$id = props.id,
3298
3383
  id = _props$id === void 0 ? generateUUID() : _props$id,
@@ -3304,6 +3389,7 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (props, ref) {
3304
3389
  _props$isRequired = props.isRequired,
3305
3390
  isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
3306
3391
  labelText = props.labelText,
3392
+ name = props.name,
3307
3393
  onChange = props.onChange,
3308
3394
  placeholder = props.placeholder,
3309
3395
  _props$showHelperInva = props.showHelperInvalidText,
@@ -3312,6 +3398,8 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (props, ref) {
3312
3398
  showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
3313
3399
  _props$showOptReqLabe = props.showOptReqLabel,
3314
3400
  showOptReqLabel = _props$showOptReqLabe === void 0 ? true : _props$showOptReqLabe,
3401
+ _props$step = props.step,
3402
+ step = _props$step === void 0 ? 1 : _props$step,
3315
3403
  _props$type = props.type,
3316
3404
  type = _props$type === void 0 ? exports.TextInputTypes.text : _props$type,
3317
3405
  value = props.value,
@@ -3346,17 +3434,22 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (props, ref) {
3346
3434
  options = isHidden ? {
3347
3435
  id: id,
3348
3436
  "aria-hidden": isHidden,
3437
+ name: name,
3349
3438
  onChange: onChange,
3350
3439
  ref: ref
3351
3440
  } : _extends({
3352
- id: id,
3353
3441
  "aria-required": isRequired,
3442
+ defaultValue: defaultValue,
3443
+ id: id,
3354
3444
  isDisabled: isDisabled,
3355
3445
  isRequired: isRequired,
3356
3446
  isInvalid: isInvalid,
3357
3447
  placeholder: placeholder,
3448
+ name: name,
3358
3449
  onChange: onChange,
3359
- ref: ref
3450
+ ref: ref,
3451
+ // The `step` attribute is useful for the number type.
3452
+ step: type === exports.TextInputTypes.number ? step : null
3360
3453
  }, attributes); // For `input` and `textarea`, all attributes are the same but `input`
3361
3454
  // also needs `type` and `value` to render correctly.
3362
3455
 
@@ -3480,7 +3573,8 @@ var DateRangeRow = function DateRangeRow(_ref3) {
3480
3573
  isDateRange = _ref3.isDateRange,
3481
3574
  children = _ref3.children;
3482
3575
  return isDateRange ? React__default.createElement(FormRow, {
3483
- id: id + "-form-row"
3576
+ id: id + "-form-row",
3577
+ gap: exports.GridGaps.ExtraSmall
3484
3578
  }, children) : React__default.createElement(React__default.Fragment, null, children);
3485
3579
  };
3486
3580
  /**
@@ -3690,12 +3784,14 @@ var DatePicker = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
3690
3784
  var global = {
3691
3785
  // styles for the `body` element
3692
3786
  body: {
3787
+ boxSizing: "border-box",
3693
3788
  bg: "ui.white",
3694
3789
  color: "ui.black",
3695
3790
  fontFamily: "body",
3696
- fontSize: 0,
3791
+ fontSize: "0",
3697
3792
  fontWeight: "300",
3698
- lineHeight: "1.5"
3793
+ lineHeight: "1.5",
3794
+ overflowX: "hidden"
3699
3795
  },
3700
3796
  // styles for the `a` element
3701
3797
  a: {
@@ -3703,20 +3799,23 @@ var global = {
3703
3799
  },
3704
3800
  svg: {
3705
3801
  display: "inline"
3802
+ },
3803
+ p: {
3804
+ margin: "0 0 var(--nypl-space-s"
3706
3805
  }
3707
3806
  };
3708
3807
 
3709
3808
  /**
3710
- * Breakpoints from "src/styles/base/_02-breakpoints.scss"
3809
+ * Breakpoints from "src/styles/base/_01-breakpoints.scss"
3711
3810
  * How to use Chakra responsive styles: https://chakra-ui.com/docs/features/responsive-styles
3712
3811
  *
3713
- * Chakra Value | DS Variable | EM/PX value
3714
- * --------------------------------------------------
3715
- * sm | --breakpoint-small | 20em/320px
3716
- * md | --breakpoint-medium | 38em/600px
3717
- * lg | --breakpoint-large | 60em/960px
3718
- * xl | --breakpoint-xl | 80em/1280px
3719
- * 2xl | N/A | 96em/1536px
3812
+ * Chakra Value | DS Variable | EM/PX value
3813
+ * ------------------------------------------------------
3814
+ * sm | --nypl-breakpoint-small | 20em/320px
3815
+ * md | --nypl-breakpoint-medium | 38em/600px
3816
+ * lg | --nypl-breakpoint-large | 60em/960px
3817
+ * xl | --nypl-breakpoint-xl | 80em/1280px
3818
+ * 2xl | N/A | 96em/1536px
3720
3819
  *
3721
3820
  * @Note Chakra provides a 2xl option while the DS does not. We don't
3722
3821
  * recommend using this value until further notice.
@@ -4001,6 +4100,15 @@ var Accordion$1 = {
4001
4100
  };
4002
4101
 
4003
4102
  // Variant styling
4103
+ var blogs = {
4104
+ bg: "section.blogs.secondary",
4105
+ color: "ui.black",
4106
+ a: {
4107
+ _hover: {
4108
+ color: "ui.gray.xdark"
4109
+ }
4110
+ }
4111
+ };
4004
4112
  var booksAndMore = {
4005
4113
  bg: "section.books-and-more.secondary"
4006
4114
  };
@@ -4089,6 +4197,7 @@ var Breadcrumb = {
4089
4197
  },
4090
4198
  // Available variants:
4091
4199
  variants: {
4200
+ blogs: blogs,
4092
4201
  booksAndMore: booksAndMore,
4093
4202
  locations: locations,
4094
4203
  research: research,
@@ -4126,7 +4235,7 @@ var baseStyle = {
4126
4235
  opacity: "1"
4127
4236
  }
4128
4237
  }; // Styles for different visual variants:
4129
- // primary, secondary, link, pill, iconOnly, callout
4238
+ // primary, secondary, link, pill, iconOnly, callout, searchbar, noBrand
4130
4239
 
4131
4240
  var primary = {
4132
4241
  bg: "ui.link.primary",
@@ -4202,10 +4311,17 @@ var searchBar = /*#__PURE__*/_extends({}, primary, {
4202
4311
  lineHeight: "1.75"
4203
4312
  });
4204
4313
 
4314
+ var noBrand = /*#__PURE__*/_extends({}, primary, {
4315
+ bg: "ui.black",
4316
+ color: "ui.white",
4317
+ _hover: {
4318
+ bg: "ui.gray.xdark"
4319
+ }
4320
+ });
4321
+
4205
4322
  var Button$1 = {
4206
4323
  baseStyle: baseStyle,
4207
4324
  // Available variants:
4208
- // primary, secondary, link, pill, iconOnly, searchBar
4209
4325
  variants: {
4210
4326
  primary: primary,
4211
4327
  secondary: secondary,
@@ -4213,7 +4329,8 @@ var Button$1 = {
4213
4329
  pill: pill,
4214
4330
  iconOnly: iconOnly,
4215
4331
  callout: callout,
4216
- searchBar: searchBar
4332
+ searchBar: searchBar,
4333
+ noBrand: noBrand
4217
4334
  },
4218
4335
  // Default values
4219
4336
  defaultProps: {
@@ -4250,24 +4367,24 @@ var getBodyPaddingStyles = function getBodyPaddingStyles(_ref) {
4250
4367
  bodyPadding = "s";
4251
4368
 
4252
4369
  if (hasImage) {
4253
- bodyPadding = "0 var(--space-s) var(--space-s)";
4370
+ bodyPadding = "0 var(--nypl-space-s) var(--nypl-space-s)";
4254
4371
  }
4255
4372
  }
4256
4373
 
4257
4374
  if (isRow && border) {
4258
- bodyPadding = "var(--space-s)";
4375
+ bodyPadding = "var(--nypl-space-s)";
4259
4376
  }
4260
4377
 
4261
4378
  if (isRow && border && hasImage) {
4262
4379
  bodyPadding = {
4263
- base: "0 var(--space-s) var(--space-s)",
4264
- md: "var(--space-s) var(--space-s) var(--space-s) 0"
4380
+ base: "0 var(--nypl-space-s) var(--nypl-space-s)",
4381
+ md: "var(--nypl-space-s) var(--nypl-space-s) var(--nypl-space-s) 0"
4265
4382
  };
4266
4383
 
4267
4384
  if (imageAtEnd) {
4268
4385
  bodyPadding = {
4269
- base: "var(--space-s) var(--space-s) 0",
4270
- md: "var(--space-s) 0 var(--space-s) var(--space-s)"
4386
+ base: "var(--nypl-space-s) var(--nypl-space-s) 0",
4387
+ md: "var(--nypl-space-s) 0 var(--nypl-space-s) var(--nypl-space-s)"
4271
4388
  };
4272
4389
  }
4273
4390
  }
@@ -4359,7 +4476,7 @@ var CardActions$1 = {
4359
4476
  } : {};
4360
4477
  return _extends({
4361
4478
  marginBottom: "xs",
4362
- columnGap: "var(--space-xs)",
4479
+ columnGap: "var(--nypl-space-xs)",
4363
4480
  display: "flex",
4364
4481
  _last: {
4365
4482
  marginBottom: "0"
@@ -4402,8 +4519,8 @@ var CardImage$1 = {
4402
4519
  textAlign: "left",
4403
4520
  alignItems: center ? "center" : null,
4404
4521
  margin: {
4405
- base: imageAtEnd ? "var(--space-m) 0 0" : null,
4406
- md: imageAtEnd ? "0 0 0 var(--space-m)" : "0 var(--space-m) 0 0"
4522
+ base: imageAtEnd ? "var(--nypl-space-m) 0 0" : null,
4523
+ md: imageAtEnd ? "0 0 0 var(--nypl-space-m)" : "0 var(--nypl-space-m) 0 0"
4407
4524
  }
4408
4525
  }, size) : {
4409
4526
  marginBottom: "xs"
@@ -4792,7 +4909,7 @@ var DatePicker$1 = {
4792
4909
  subLabels: {
4793
4910
  label: {
4794
4911
  fontSize: "12px",
4795
- marginBottom: "xs"
4912
+ marginBottom: "0"
4796
4913
  }
4797
4914
  }
4798
4915
  }
@@ -5344,7 +5461,7 @@ var List = {
5344
5461
  borderTop: "3px solid",
5345
5462
  borderColor: "section.research.primary",
5346
5463
  margin: "0",
5347
- padding: "var(--space-xs) 0 0"
5464
+ padding: "var(--nypl-space-xs) 0 0"
5348
5465
  },
5349
5466
  dl: {
5350
5467
  display: "grid",
@@ -5353,7 +5470,7 @@ var List = {
5353
5470
  md: "max(250px) 1fr"
5354
5471
  },
5355
5472
  gridTemplateRows: "1fr",
5356
- margin: "var(--space-xs) 0 0"
5473
+ margin: "var(--nypl-space-xs) 0 0"
5357
5474
  },
5358
5475
  dt: {
5359
5476
  borderTop: "1px solid",
@@ -5412,7 +5529,7 @@ var Notification = {
5412
5529
  bg: bg,
5413
5530
  display: "flex",
5414
5531
  fontSize: "-1",
5415
- padding: "var(--space) var(--space-l)",
5532
+ padding: "var(--nypl-space-s) var(--nypl-space-l)",
5416
5533
  position: "relative",
5417
5534
  textAlign: centered ? "center" : null,
5418
5535
  borderRadius: noMargin ? "0" : "4px",
@@ -5420,7 +5537,7 @@ var Notification = {
5420
5537
  container: {
5421
5538
  margin: "auto",
5422
5539
  width: "100%",
5423
- maxWidth: "var(--breakpoint-large)"
5540
+ maxWidth: "var(--nypl-breakpoint-large)"
5424
5541
  },
5425
5542
  dismissibleButton: {
5426
5543
  border: "none",
@@ -5455,7 +5572,7 @@ var NotificationContent = {
5455
5572
  justifyContent: "center",
5456
5573
  content: {
5457
5574
  width: "100%",
5458
- paddingLeft: alignText ? "calc(var(--space-m) + var(--space-s))" : null,
5575
+ paddingLeft: alignText ? "calc(var(--nypl-space-m) + var(--nypl-space-s))" : null,
5459
5576
  color: notificationType === exports.NotificationTypes.Warning ? "brand.primary" : "currentColor"
5460
5577
  }
5461
5578
  };
@@ -5510,6 +5627,75 @@ var Pagination = {
5510
5627
  }
5511
5628
  };
5512
5629
 
5630
+ var ProgressIndicatorSizes;
5631
+
5632
+ (function (ProgressIndicatorSizes) {
5633
+ ProgressIndicatorSizes["Default"] = "default";
5634
+ ProgressIndicatorSizes["Small"] = "small";
5635
+ })(ProgressIndicatorSizes || (ProgressIndicatorSizes = {}));
5636
+
5637
+ var ProgressIndicatorTypes;
5638
+
5639
+ (function (ProgressIndicatorTypes) {
5640
+ ProgressIndicatorTypes["Circular"] = "circular";
5641
+ ProgressIndicatorTypes["Linear"] = "linear";
5642
+ })(ProgressIndicatorTypes || (ProgressIndicatorTypes = {}));
5643
+
5644
+ var ProgressIndicator = {
5645
+ parts: ["circular", "circularLabel", "linear", "linearContainer", "linearPercentage"],
5646
+ baseStyle: function baseStyle(_ref) {
5647
+ var darkMode = _ref.darkMode,
5648
+ size = _ref.size;
5649
+ return {
5650
+ color: darkMode ? "ui.white" : "ui.black",
5651
+ circular: {
5652
+ // Note: we have to target the SVG HTMl elements in order
5653
+ // to override the default styles.
5654
+ svg: {
5655
+ height: size === ProgressIndicatorSizes.Small ? "24px" : "48px",
5656
+ width: size === ProgressIndicatorSizes.Small ? "24px" : "48px",
5657
+ display: "block",
5658
+ circle: {
5659
+ _first: {
5660
+ stroke: darkMode ? "ui.gray.dark" : "ui.gray.light-cool"
5661
+ },
5662
+ _last: {
5663
+ stroke: darkMode ? "ui.white" : "ui.link.primary"
5664
+ }
5665
+ }
5666
+ }
5667
+ },
5668
+ circularContainer: {
5669
+ alignItems: "center",
5670
+ display: "flex",
5671
+ flexDirection: "column",
5672
+ width: "fit-content"
5673
+ },
5674
+ linear: {
5675
+ // Hard to target this specific element without using
5676
+ // "Progress" as the key name in index.ts
5677
+ "> div": {
5678
+ bg: darkMode ? "ui.white" : "ui.link.primary"
5679
+ },
5680
+ flex: 25,
5681
+ bg: darkMode ? "ui.gray.dark" : "ui.gray.light-cool",
5682
+ height: {
5683
+ base: "4px",
5684
+ md: size === ProgressIndicatorSizes.Small ? "4px" : "8px"
5685
+ }
5686
+ },
5687
+ linearContainer: {
5688
+ display: "flex",
5689
+ alignItems: "center"
5690
+ },
5691
+ linearPercentage: {
5692
+ padding: "0 var(--nypl-space-xs)",
5693
+ flex: 1
5694
+ }
5695
+ };
5696
+ }
5697
+ };
5698
+
5513
5699
  var baseStyleControl$1 = {
5514
5700
  verticalAlign: "middle",
5515
5701
  transitionProperty: "box-shadow",
@@ -5727,17 +5913,17 @@ var SkeletonLoader = {
5727
5913
  }; // Fade animation
5728
5914
 
5729
5915
  var fade = function fade() {
5730
- var _keyframes;
5731
-
5732
- return system.keyframes((_keyframes = {
5916
+ return system.keyframes({
5733
5917
  from: {
5734
5918
  opacity: 0.9
5919
+ },
5920
+ "50%": {
5921
+ opacity: 0.7
5922
+ },
5923
+ to: {
5924
+ opacity: 0.9
5735
5925
  }
5736
- }, _keyframes["50%"] = {
5737
- opacity: 0.7
5738
- }, _keyframes.to = {
5739
- opacity: 0.9
5740
- }, _keyframes));
5926
+ });
5741
5927
  }; // Overriding Chakra's Skeleton animation.
5742
5928
 
5743
5929
 
@@ -5749,6 +5935,78 @@ var Skeleton = {
5749
5935
  }
5750
5936
  };
5751
5937
 
5938
+ // Margins around the static display values.
5939
+ var staticValues = {
5940
+ marginTop: "xs",
5941
+ marginBottom: "xs",
5942
+ marginRight: "s",
5943
+ marginLeft: "s"
5944
+ };
5945
+ var CustomSlider = {
5946
+ parts: ["container", "helper", "leftValue", "rightValue", "textInput", "filledTrack", "track", "thumb"],
5947
+ baseStyle: function baseStyle(_ref) {
5948
+ var isDisabled = _ref.isDisabled,
5949
+ isInvalid = _ref.isInvalid,
5950
+ isRangeSlider = _ref.isRangeSlider,
5951
+ showBoxes = _ref.showBoxes;
5952
+ var baseColor = "ui.link.primary";
5953
+
5954
+ if (isInvalid) {
5955
+ baseColor = "ui.error.primary";
5956
+ } else if (isDisabled) {
5957
+ baseColor = "ui.gray.light-cool";
5958
+ }
5959
+
5960
+ return {
5961
+ container: {
5962
+ display: "flex",
5963
+ alignItems: "center"
5964
+ },
5965
+ helper: {
5966
+ marginTop: "xs"
5967
+ },
5968
+ leftValue: _extends({}, staticValues, {
5969
+ // If the text input boxes are shown, then there already is a
5970
+ // margin, so we can set this static value to "0". But for the
5971
+ // single Slider, we *do* need the margin set.
5972
+ marginLeft: showBoxes && isRangeSlider ? "0" : "s"
5973
+ }),
5974
+ rightValue: _extends({}, staticValues, {
5975
+ // If the text input boxes are shown, then there already is
5976
+ // a margin, so we can set this static value to "0".
5977
+ marginRight: showBoxes ? "0" : "s"
5978
+ }),
5979
+ textInput: {
5980
+ // Allows for three or more digits present in the
5981
+ // min or max value text input.
5982
+ minWidth: "65px",
5983
+ color: isInvalid ? "ui.error.primary" : "ui.black"
5984
+ },
5985
+ // Filled track doesn't have a _disabled or _invalid state...
5986
+ // so we manually do it through the props.
5987
+ filledTrack: {
5988
+ bgColor: baseColor
5989
+ },
5990
+ track: {
5991
+ bgColor: "ui.gray.light-cool",
5992
+ _disabled: {
5993
+ bgColor: "ui.gray.light-cool"
5994
+ }
5995
+ },
5996
+ thumb: {
5997
+ border: "1px solid",
5998
+ // Thumb doesn't have an _invalid state...
5999
+ // so we manually do it through the props.
6000
+ borderColor: baseColor,
6001
+ boxShadow: "none",
6002
+ _active: {
6003
+ transform: "translateY(-50%) scale(1.0)"
6004
+ }
6005
+ }
6006
+ };
6007
+ }
6008
+ };
6009
+
5752
6010
  var StatusBadge = {
5753
6011
  baseStyle: {
5754
6012
  borderRadius: "base",
@@ -6234,11 +6492,13 @@ var theme = /*#__PURE__*/react.extendTheme( /*#__PURE__*/_extends({
6234
6492
  List: List
6235
6493
  }, NotificationStyles, {
6236
6494
  Pagination: Pagination,
6495
+ ProgressIndicator: ProgressIndicator,
6237
6496
  Radio: Radio,
6238
6497
  RadioGroup: RadioGroup,
6239
6498
  SearchBar: SearchBar,
6240
6499
  Skeleton: Skeleton,
6241
6500
  SkeletonLoader: SkeletonLoader,
6501
+ CustomSlider: CustomSlider,
6242
6502
  StatusBadge: StatusBadge,
6243
6503
  Tabs: CustomTabs
6244
6504
  }, TemplateStyles, {
@@ -6270,14 +6530,15 @@ var DSProvider = function DSProvider(_ref) {
6270
6530
  HeroTypes["Tertiary"] = "tertiary";
6271
6531
  HeroTypes["Campaign"] = "campaign";
6272
6532
  HeroTypes["FiftyFifty"] = "fiftyfifty";
6273
- })(exports.HeroTypes || (exports.HeroTypes = {}));
6533
+ })(exports.HeroTypes || (exports.HeroTypes = {})); // Only used for internal purposes.
6534
+
6274
6535
 
6275
6536
  var HeroSecondaryTypes = [exports.HeroTypes.Secondary, exports.HeroTypes.SecondaryBooksAndMore, exports.HeroTypes.SecondaryLocations, exports.HeroTypes.SecondaryResearch, exports.HeroTypes.SecondaryWhatsOn];
6276
6537
 
6277
- var variantMap$2 = {};
6538
+ var variantMap$1 = {};
6278
6539
 
6279
- for (var type$2 in exports.HeroTypes) {
6280
- variantMap$2[exports.HeroTypes[type$2]] = exports.HeroTypes[type$2];
6540
+ for (var type$1 in exports.HeroTypes) {
6541
+ variantMap$1[exports.HeroTypes[type$1]] = exports.HeroTypes[type$1];
6281
6542
  }
6282
6543
  /**
6283
6544
  * Map the HeroTypes to the Hero Chakra theme variant object. If a wrong
@@ -6286,8 +6547,8 @@ for (var type$2 in exports.HeroTypes) {
6286
6547
  */
6287
6548
 
6288
6549
 
6289
- var getVariant$3 = function getVariant(type) {
6290
- return variantMap$2[type] || exports.HeroTypes.Primary;
6550
+ var getVariant$2 = function getVariant(type) {
6551
+ return variantMap$1[type] || exports.HeroTypes.Primary;
6291
6552
  };
6292
6553
 
6293
6554
  function Hero$1(props) {
@@ -6299,7 +6560,7 @@ function Hero$1(props) {
6299
6560
  image = props.image,
6300
6561
  locationDetails = props.locationDetails,
6301
6562
  subHeaderText = props.subHeaderText;
6302
- var variant = getVariant$3(heroType);
6563
+ var variant = getVariant$2(heroType);
6303
6564
  var styles = react.useMultiStyleConfig("Hero", {
6304
6565
  variant: variant
6305
6566
  });
@@ -6480,10 +6741,10 @@ function getWithDirectionIcon(children, type) {
6480
6741
 
6481
6742
  if (type === exports.LinkTypes.Backwards) {
6482
6743
  iconRotation = exports.IconRotationTypes.Rotate90;
6483
- iconAlign = IconAlign.Left;
6744
+ iconAlign = exports.IconAlign.Left;
6484
6745
  } else if (type === exports.LinkTypes.Forwards) {
6485
6746
  iconRotation = exports.IconRotationTypes.Rotate270;
6486
- iconAlign = IconAlign.Right;
6747
+ iconAlign = exports.IconAlign.Right;
6487
6748
  }
6488
6749
 
6489
6750
  icon = React.createElement(Icon, {
@@ -7062,6 +7323,88 @@ var Pagination$1 = function Pagination(props) {
7062
7323
  }, previousLiLink, getPaginationNumbers(currentPage), nextLiLink));
7063
7324
  };
7064
7325
 
7326
+ /**
7327
+ * A component that displays a progress status for any task that takes a long
7328
+ * time to complete or consists of multiple steps. Examples include downloading,
7329
+ * uploading, or processing.
7330
+ */
7331
+
7332
+ var ProgressIndicator$1 = function ProgressIndicator(props) {
7333
+ var _props$darkMode = props.darkMode,
7334
+ darkMode = _props$darkMode === void 0 ? false : _props$darkMode,
7335
+ _props$id = props.id,
7336
+ id = _props$id === void 0 ? generateUUID() : _props$id,
7337
+ _props$indicatorType = props.indicatorType,
7338
+ indicatorType = _props$indicatorType === void 0 ? ProgressIndicatorTypes.Linear : _props$indicatorType,
7339
+ _props$isIndeterminat = props.isIndeterminate,
7340
+ isIndeterminate = _props$isIndeterminat === void 0 ? false : _props$isIndeterminat,
7341
+ labelText = props.labelText,
7342
+ _props$showLabel = props.showLabel,
7343
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
7344
+ _props$size = props.size,
7345
+ size = _props$size === void 0 ? ProgressIndicatorSizes.Default : _props$size,
7346
+ _props$value = props.value,
7347
+ value = _props$value === void 0 ? 0 : _props$value;
7348
+ var styles = react.useMultiStyleConfig("ProgressIndicator", {
7349
+ darkMode: darkMode,
7350
+ size: size
7351
+ });
7352
+ var finalValue = value;
7353
+
7354
+ if (finalValue < 0 || finalValue > 100) {
7355
+ console.warn("ProgressIndicator: pass in a `value` between 0 and 100. Defaulting to 0.");
7356
+ finalValue = 0;
7357
+ }
7358
+
7359
+ var progressProps = {
7360
+ id: id,
7361
+ // If the label is visually shown, associate it with the progress indicator.
7362
+ // Otherwise, the `aria-label` will be added.
7363
+ "aria-label": showLabel ? null : labelText,
7364
+ "aria-labelledby": showLabel ? id + "-label" : null,
7365
+ // If `isIndeterminate` is true, then it overrides the `value` prop.
7366
+ isIndeterminate: isIndeterminate || null,
7367
+ value: isIndeterminate ? null : finalValue
7368
+ };
7369
+
7370
+ var progressComponent = function progressComponent(indicatorType) {
7371
+ // Only display the percentage text for the default size, not in the
7372
+ // indeterminate state, and when `showLabel` is true.
7373
+ if (indicatorType === ProgressIndicatorTypes.Circular) {
7374
+ // For the small size, since the label won't be visible, we need to add
7375
+ // it to the parent component's `aria-label` attribute.
7376
+ if (size === ProgressIndicatorSizes.Small) {
7377
+ progressProps["aria-label"] = labelText;
7378
+ }
7379
+
7380
+ return React__default.createElement(react.Box, {
7381
+ __css: styles.circularContainer
7382
+ }, React__default.createElement(react.CircularProgress, Object.assign({}, progressProps, {
7383
+ sx: styles.circular
7384
+ }), showLabel && !isIndeterminate && size !== ProgressIndicatorSizes.Small && React__default.createElement(react.CircularProgressLabel, null, finalValue, "%")), showLabel && size !== ProgressIndicatorSizes.Small && React__default.createElement(Label, {
7385
+ id: id + "-label",
7386
+ htmlFor: id
7387
+ }, labelText));
7388
+ } // The Linear progress indicator is the default.
7389
+
7390
+
7391
+ return React__default.createElement(React__default.Fragment, null, showLabel && React__default.createElement(Label, {
7392
+ id: id + "-label",
7393
+ htmlFor: id
7394
+ }, labelText), React__default.createElement(react.Box, {
7395
+ __css: styles.linearContainer
7396
+ }, React__default.createElement(react.Progress, Object.assign({}, progressProps, {
7397
+ sx: styles.linear
7398
+ })), showLabel && !isIndeterminate && React__default.createElement(react.Box, {
7399
+ __css: styles.linearPercentage
7400
+ }, finalValue, "%")));
7401
+ };
7402
+
7403
+ return React__default.createElement(react.Box, {
7404
+ __css: styles
7405
+ }, progressComponent(indicatorType));
7406
+ };
7407
+
7065
7408
  var Radio$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
7066
7409
  var className = props.className,
7067
7410
  helperText = props.helperText,
@@ -7216,6 +7559,7 @@ var RadioGroup$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
7216
7559
  }, footnote)));
7217
7560
  });
7218
7561
 
7562
+ // Only used for internal purposes.
7219
7563
  var SelectTypes;
7220
7564
 
7221
7565
  (function (SelectTypes) {
@@ -7351,7 +7695,8 @@ function SearchBar$1(props) {
7351
7695
  var helperErrorTextID = generateUUID();
7352
7696
  var ariaDescribedby = helperErrorTextID;
7353
7697
  var footnote = isInvalid ? invalidText : helperErrorText;
7354
- var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText; // Render the `Select` component.
7698
+ var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText;
7699
+ var textInputPlaceholder = (textInputProps == null ? void 0 : textInputProps.placeholder) + " " + (isRequired ? "(Required)" : ""); // Render the `Select` component.
7355
7700
 
7356
7701
  var selectElem = selectProps && React.createElement(Select$1, Object.assign({
7357
7702
  id: generateUUID(),
@@ -7368,9 +7713,12 @@ function SearchBar$1(props) {
7368
7713
  var textInputNative = textInputProps && React.createElement(TextInput, Object.assign({
7369
7714
  id: generateUUID(),
7370
7715
  labelText: textInputProps == null ? void 0 : textInputProps.labelText,
7371
- placeholder: textInputProps == null ? void 0 : textInputProps.placeholder,
7716
+ placeholder: textInputPlaceholder,
7717
+ onChange: textInputProps == null ? void 0 : textInputProps.onChange,
7718
+ name: textInputProps == null ? void 0 : textInputProps.name,
7372
7719
  type: exports.TextInputTypes.text,
7373
- variantType: selectElem ? TextInputVariants.SearchBarSelect : TextInputVariants.SearchBar
7720
+ variantType: selectElem ? TextInputVariants.SearchBarSelect : TextInputVariants.SearchBar,
7721
+ value: textInputProps == null ? void 0 : textInputProps.value
7374
7722
  }, stateProps)); // Render the `Button` component.
7375
7723
 
7376
7724
  var buttonElem = React.createElement(Button, {
@@ -7378,11 +7726,11 @@ function SearchBar$1(props) {
7378
7726
  buttonType: exports.ButtonTypes.SearchBar,
7379
7727
  type: "submit",
7380
7728
  onClick: buttonOnClick,
7381
- disabled: isDisabled
7729
+ isDisabled: isDisabled
7382
7730
  }, React.createElement(Icon, {
7383
7731
  name: exports.IconNames.Search,
7384
7732
  size: exports.IconSizes.Small,
7385
- align: IconAlign.Left
7733
+ align: exports.IconAlign.Left
7386
7734
  }), "Search"); // Render the `HelperErrorText` component.
7387
7735
 
7388
7736
  var helperErrorTextElem = footnote && React.createElement(HelperErrorText, {
@@ -7505,13 +7853,229 @@ function SkeletonLoader$1(props) {
7505
7853
  })))));
7506
7854
  }
7507
7855
 
7508
- var StatusBadgeTypes;
7856
+ /**
7857
+ * The `Slider` component renders a singular value slider or a range slider
7858
+ * with a min and max value. The value(s) can be updated through the slider
7859
+ * thumb(s) or through the text input(s) elements.
7860
+ */
7861
+
7862
+ function Slider(props) {
7863
+ var className = props.className,
7864
+ _props$defaultValue = props.defaultValue,
7865
+ defaultValue = _props$defaultValue === void 0 ? 0 : _props$defaultValue,
7866
+ helperText = props.helperText,
7867
+ _props$id = props.id,
7868
+ id = _props$id === void 0 ? generateUUID() : _props$id,
7869
+ invalidText = props.invalidText,
7870
+ _props$isDisabled = props.isDisabled,
7871
+ isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
7872
+ _props$isInvalid = props.isInvalid,
7873
+ isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
7874
+ _props$isRangeSlider = props.isRangeSlider,
7875
+ isRangeSlider = _props$isRangeSlider === void 0 ? false : _props$isRangeSlider,
7876
+ _props$isRequired = props.isRequired,
7877
+ isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
7878
+ labelText = props.labelText,
7879
+ _props$max = props.max,
7880
+ max = _props$max === void 0 ? 100 : _props$max,
7881
+ _props$min = props.min,
7882
+ min = _props$min === void 0 ? 0 : _props$min,
7883
+ name = props.name,
7884
+ _onChange = props.onChange,
7885
+ _props$optReqFlag = props.optReqFlag,
7886
+ optReqFlag = _props$optReqFlag === void 0 ? true : _props$optReqFlag,
7887
+ _props$showBoxes = props.showBoxes,
7888
+ showBoxes = _props$showBoxes === void 0 ? true : _props$showBoxes,
7889
+ _props$showHelperInva = props.showHelperInvalidText,
7890
+ showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
7891
+ _props$showLabel = props.showLabel,
7892
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
7893
+ _props$showValues = props.showValues,
7894
+ showValues = _props$showValues === void 0 ? true : _props$showValues,
7895
+ _props$step = props.step,
7896
+ step = _props$step === void 0 ? 1 : _props$step;
7897
+
7898
+ var _React$useState = React.useState(defaultValue),
7899
+ currentValue = _React$useState[0],
7900
+ setCurrentValue = _React$useState[1];
7901
+
7902
+ var finalIsInvalid = isInvalid; // In the Range Slider, if the first value is bigger than the second value,
7903
+ // then set the invalid state.
7904
+
7905
+ if (isRangeSlider && currentValue[0] > currentValue[1]) {
7906
+ finalIsInvalid = true;
7907
+ }
7908
+
7909
+ var optReqText = isRequired ? "Required" : "Optional";
7910
+ var footnote = finalIsInvalid ? invalidText : helperText;
7911
+ var styles = react.useMultiStyleConfig("CustomSlider", {
7912
+ isDisabled: isDisabled,
7913
+ isInvalid: finalIsInvalid,
7914
+ isRangeSlider: isRangeSlider,
7915
+ showBoxes: showBoxes
7916
+ }); // Props that the `Slider` and `RangeSlider` Chakra
7917
+ // components both use.
7918
+
7919
+ var sliderSharedProps = {
7920
+ // Don't focus on the thumbs for every small change.
7921
+ focusThumbOnChange: false,
7922
+ id: id,
7923
+ isDisabled: isDisabled,
7924
+ max: max,
7925
+ min: min,
7926
+ name: name,
7927
+ onChange: function onChange(val) {
7928
+ return setCurrentValue(val);
7929
+ },
7930
+ // Call the passed in `onChange` function prop to get the
7931
+ // *final* value once a user stops dragging the slider.
7932
+ onChangeEnd: function onChangeEnd(val) {
7933
+ return _onChange(val);
7934
+ },
7935
+ step: step
7936
+ }; // Props that the two `TextInput` components use.
7937
+
7938
+ var textInputSharedProps = {
7939
+ attributes: {
7940
+ max: max,
7941
+ min: min
7942
+ },
7943
+ isDisabled: isDisabled,
7944
+ isInvalid: finalIsInvalid,
7945
+ isRequired: isRequired,
7946
+ // Never show the label or helper text for the `TextInput` component.
7947
+ showHelperInvalidText: false,
7948
+ showLabel: false,
7949
+ step: step,
7950
+ type: exports.TextInputTypes.number
7951
+ };
7952
+ /**
7953
+ * This returns either the "start" or "end" `TextInput` component. Note that
7954
+ * the "end" `TextInput` component is always rendered but the "start" is
7955
+ * only used for the `isRangeSlider` case.
7956
+ */
7957
+
7958
+ var getTextInput = function getTextInput(type) {
7959
+ var inputProps = {
7960
+ start: _extends({
7961
+ // We only want the value for this box in the `isRangeSlider` case.
7962
+ value: isRangeSlider ? currentValue[0].toString() : "",
7963
+ onChange: function onChange(val) {
7964
+ // If the value is empty, set it to 0.
7965
+ var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // Only update the first value in the range.
7966
+
7967
+ var newValue = [nextValue, currentValue[1]];
7968
+ setCurrentValue(newValue); // If the text input was updated directly,
7969
+ // send the data back to the user.
7970
+
7971
+ _onChange && _onChange(newValue);
7972
+ }
7973
+ }, textInputSharedProps),
7974
+ end: _extends({
7975
+ // This text input *always* shows. In the default case, we only
7976
+ // keep track of one value. For the `isRangeSlider` case, we keep
7977
+ // track of an array but only want the second value.
7978
+ value: isRangeSlider ? currentValue[1].toString() : currentValue.toString(),
7979
+ onChange: function onChange(val) {
7980
+ // If the value is empty, set it to 0.
7981
+ var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // If the value entered is bigger than the max value,
7982
+ // then set it to the max value.
7983
+
7984
+ if (nextValue > max) {
7985
+ nextValue = max;
7986
+ } // Only update the second value in the `isRangeSlider` case,
7987
+ // or the single value in the default case.
7988
+
7989
+
7990
+ var newValue = isRangeSlider ? [currentValue[0], nextValue] : nextValue;
7991
+ setCurrentValue(newValue); // If the text input was updated directly,
7992
+ // send the data back to the user.
7993
+
7994
+ _onChange && _onChange(newValue);
7995
+ }
7996
+ }, textInputSharedProps)
7997
+ };
7998
+ var updatedLabel = !isRangeSlider ? labelText : labelText + " - " + type + " value";
7999
+ return React.createElement(TextInput, Object.assign({
8000
+ id: id + "-textInput-" + type,
8001
+ labelText: updatedLabel,
8002
+ additionalStyles: _extends({}, styles.textInput, {
8003
+ // Specific margins for each text input to
8004
+ // push the elements inside.
8005
+ marginRight: type === "start" ? "s" : null,
8006
+ marginLeft: type === "end" ? "s" : null
8007
+ })
8008
+ }, inputProps[type]));
8009
+ };
8010
+ /**
8011
+ * Returns a Chakra `Slider` or `RangeSlider` component based on the
8012
+ * `isRangeSlider` prop from the DS `Slider` component.
8013
+ */
8014
+
8015
+
8016
+ var getSliderType = function getSliderType() {
8017
+ return isRangeSlider ? React.createElement(react.RangeSlider // Both slider thumbs need values and should be in an array.
8018
+ , Object.assign({
8019
+ "aria-label": !showLabel ? [labelText + " - start value", labelText + " - end value"] : null,
8020
+ "aria-labelledby": showLabel ? [id + "-label", id + "-label"] : null,
8021
+ value: currentValue,
8022
+ // Make the thumbs larger.
8023
+ size: "lg"
8024
+ }, sliderSharedProps), React.createElement(react.RangeSliderTrack, {
8025
+ sx: styles.track
8026
+ }, React.createElement(react.RangeSliderFilledTrack, {
8027
+ sx: styles.filledTrack
8028
+ })), React.createElement(react.RangeSliderThumb, {
8029
+ index: 0,
8030
+ sx: styles.thumb
8031
+ }), React.createElement(react.RangeSliderThumb, {
8032
+ index: 1,
8033
+ sx: styles.thumb
8034
+ })) : React.createElement(react.Slider, Object.assign({
8035
+ "aria-label": !showLabel ? labelText : null,
8036
+ "aria-labelledby": id + "-label",
8037
+ value: currentValue,
8038
+ // Make the thumb larger.
8039
+ size: "lg"
8040
+ }, sliderSharedProps), React.createElement(react.SliderTrack, {
8041
+ sx: styles.track
8042
+ }, React.createElement(react.SliderFilledTrack, {
8043
+ sx: styles.filledTrack
8044
+ })), React.createElement(react.SliderThumb, {
8045
+ sx: styles.thumb
8046
+ }));
8047
+ };
8048
+
8049
+ return React.createElement(react.Box, {
8050
+ className: className,
8051
+ __css: styles
8052
+ }, showLabel && React.createElement(Label, {
8053
+ id: id + "-label",
8054
+ // We can't target the slider thumbs since those are divs and we
8055
+ // should link the label somewhere. So either target the first
8056
+ // input box in a `RangeSlider` or the only input box in a `Slider`.
8057
+ // When the input fields are not visible, remove this attribute.
8058
+ htmlFor: showBoxes ? id + "-textInput-" + (isRangeSlider ? "start" : "end") : null,
8059
+ optReqFlag: optReqFlag && optReqText
8060
+ }, labelText), React.createElement(react.Box, {
8061
+ __css: styles.container
8062
+ }, showBoxes && isRangeSlider && getTextInput("start"), showValues && React.createElement(react.Box, {
8063
+ __css: styles.leftValue
8064
+ }, min), getSliderType(), showValues && React.createElement(react.Box, {
8065
+ __css: styles.rightValue
8066
+ }, max), showBoxes && getTextInput("end")), footnote && showHelperInvalidText && React.createElement(react.Box, {
8067
+ __css: styles.helper
8068
+ }, React.createElement(HelperErrorText, {
8069
+ id: id + "-helperText",
8070
+ isInvalid: finalIsInvalid
8071
+ }, footnote)));
8072
+ }
7509
8073
 
7510
8074
  (function (StatusBadgeTypes) {
7511
8075
  StatusBadgeTypes["Low"] = "low";
7512
8076
  StatusBadgeTypes["Medium"] = "medium";
7513
8077
  StatusBadgeTypes["High"] = "high";
7514
- })(StatusBadgeTypes || (StatusBadgeTypes = {}));
8078
+ })(exports.StatusBadgeTypes || (exports.StatusBadgeTypes = {}));
7515
8079
 
7516
8080
  function StatusBadge$1(props) {
7517
8081
  var children = props.children,
@@ -7519,7 +8083,7 @@ function StatusBadge$1(props) {
7519
8083
  _props$id = props.id,
7520
8084
  id = _props$id === void 0 ? generateUUID() : _props$id,
7521
8085
  _props$level = props.level,
7522
- level = _props$level === void 0 ? StatusBadgeTypes.Low : _props$level;
8086
+ level = _props$level === void 0 ? exports.StatusBadgeTypes.Low : _props$level;
7523
8087
  var styles = react.useStyleConfig("StatusBadge", {
7524
8088
  variant: level
7525
8089
  });
@@ -7647,7 +8211,7 @@ var getElementsFromContentData$1 = function getElementsFromContentData(data, use
7647
8211
  console.warn("We recommend to use no more than six tabs. If more than six tabs are " + "needed, consider other navigational patterns.");
7648
8212
  }
7649
8213
 
7650
- data.map(function (tab, index) {
8214
+ data.forEach(function (tab, index) {
7651
8215
  var tempPanel; // For URL hash enabled tabs, we need to add a custom `onClick` to handle the URL hash.
7652
8216
 
7653
8217
  var tempTab = React.createElement(react.Tab, {
@@ -7693,7 +8257,7 @@ var getElementsFromChildren = function getElementsFromChildren(children) {
7693
8257
  return {};
7694
8258
  }
7695
8259
 
7696
- children.map(function (child) {
8260
+ children.forEach(function (child) {
7697
8261
  if (child.type === react.TabList || child.props.mdxType === "TabList") {
7698
8262
  tabs.push(child);
7699
8263
  var childTabs = React.Children.count(child.props.children);
@@ -7768,7 +8332,7 @@ function Tabs(props) {
7768
8332
  if (windowDimensions.width > 600) {
7769
8333
  goToStart();
7770
8334
  }
7771
- }, [windowDimensions.width]);
8335
+ }, [goToStart, windowDimensions.width]);
7772
8336
  var previousButton = React.createElement(Button, {
7773
8337
  buttonType: exports.ButtonTypes.Primary,
7774
8338
  attributes: _extends({
@@ -7819,40 +8383,6 @@ function Tabs(props) {
7819
8383
  }, React.createElement(react.Box, Object.assign({}, carouselStyle), tabs)), nextButton), panels);
7820
8384
  }
7821
8385
 
7822
- (function (TextDisplaySizes) {
7823
- TextDisplaySizes["Default"] = "default";
7824
- TextDisplaySizes["Caption"] = "caption";
7825
- TextDisplaySizes["Tag"] = "tag";
7826
- TextDisplaySizes["Mini"] = "mini";
7827
- })(exports.TextDisplaySizes || (exports.TextDisplaySizes = {}));
7828
-
7829
- function Text$1(props) {
7830
- var children = props.children,
7831
- _props$className = props.className,
7832
- className = _props$className === void 0 ? "" : _props$className,
7833
- _props$displaySize = props.displaySize,
7834
- displaySize = _props$displaySize === void 0 ? exports.TextDisplaySizes.Default : _props$displaySize,
7835
- isBold = props.isBold,
7836
- isItalic = props.isItalic,
7837
- noSpace = props.noSpace;
7838
- var variant = getVariant(displaySize, exports.TextDisplaySizes, exports.TextDisplaySizes.Default);
7839
- var styles = react.useStyleConfig("Text", {
7840
- variant: variant,
7841
- isBold: isBold,
7842
- isItalic: isItalic,
7843
- noSpace: noSpace
7844
- });
7845
-
7846
- if (!children) {
7847
- console.warn("The Text component has no children and will not render correctly.");
7848
- }
7849
-
7850
- return React.createElement(react.Text, {
7851
- className: className,
7852
- sx: styles
7853
- }, children);
7854
- }
7855
-
7856
8386
  /**
7857
8387
  * The main top-level parent component that wraps all template-related
7858
8388
  * components. For backwards compatibility, this renders a `nypl-ds` CSS class.
@@ -8021,6 +8551,40 @@ var TemplateAppContainer = function TemplateAppContainer(props) {
8021
8551
  }, contentTopElem, sidebar === "left" && contentSidebarElem, contentPrimaryElem, sidebar === "right" && contentSidebarElem), footer && React.createElement(TemplateFooter, null, footer));
8022
8552
  };
8023
8553
 
8554
+ (function (TextDisplaySizes) {
8555
+ TextDisplaySizes["Default"] = "default";
8556
+ TextDisplaySizes["Caption"] = "caption";
8557
+ TextDisplaySizes["Tag"] = "tag";
8558
+ TextDisplaySizes["Mini"] = "mini";
8559
+ })(exports.TextDisplaySizes || (exports.TextDisplaySizes = {}));
8560
+
8561
+ function Text$1(props) {
8562
+ var children = props.children,
8563
+ _props$className = props.className,
8564
+ className = _props$className === void 0 ? "" : _props$className,
8565
+ _props$displaySize = props.displaySize,
8566
+ displaySize = _props$displaySize === void 0 ? exports.TextDisplaySizes.Default : _props$displaySize,
8567
+ isBold = props.isBold,
8568
+ isItalic = props.isItalic,
8569
+ noSpace = props.noSpace;
8570
+ var variant = getVariant(displaySize, exports.TextDisplaySizes, exports.TextDisplaySizes.Default);
8571
+ var styles = react.useStyleConfig("Text", {
8572
+ variant: variant,
8573
+ isBold: isBold,
8574
+ isItalic: isItalic,
8575
+ noSpace: noSpace
8576
+ });
8577
+
8578
+ if (!children) {
8579
+ console.warn("The Text component has no children and will not render correctly.");
8580
+ }
8581
+
8582
+ return React.createElement(react.Text, {
8583
+ className: className,
8584
+ sx: styles
8585
+ }, children);
8586
+ }
8587
+
8024
8588
  /**
8025
8589
  * A custom hook that returns the Chakra-based NYPL theme object. This must be
8026
8590
  * used inside a component that is wrapped in the `DSProvider` component, so
@@ -8288,6 +8852,7 @@ exports.Checkbox = Checkbox;
8288
8852
  exports.CheckboxGroup = CheckboxGroup;
8289
8853
  exports.DSProvider = DSProvider;
8290
8854
  exports.DatePicker = DatePicker;
8855
+ exports.Fieldset = Fieldset;
8291
8856
  exports.Form = Form;
8292
8857
  exports.FormField = FormField;
8293
8858
  exports.FormRow = FormRow;
@@ -8305,12 +8870,14 @@ exports.List = List$1;
8305
8870
  exports.Modal = Modal;
8306
8871
  exports.Notification = Notification$1;
8307
8872
  exports.Pagination = Pagination$1;
8873
+ exports.ProgressIndicator = ProgressIndicator$1;
8308
8874
  exports.Radio = Radio$1;
8309
8875
  exports.RadioGroup = RadioGroup$1;
8310
8876
  exports.SearchBar = SearchBar$1;
8311
8877
  exports.Select = Select$1;
8312
8878
  exports.SimpleGrid = SimpleGrid;
8313
8879
  exports.SkeletonLoader = SkeletonLoader$1;
8880
+ exports.Slider = Slider;
8314
8881
  exports.StatusBadge = StatusBadge$1;
8315
8882
  exports.Tabs = Tabs;
8316
8883
  exports.Template = Template$1;