@nypl/design-system-react-components 0.25.4 → 0.25.8

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 (85) hide show
  1. package/CHANGELOG.md +52 -0
  2. package/dist/components/Breadcrumbs/BreadcrumbsTypes.d.ts +1 -0
  3. package/dist/components/Icons/IconSvgs.d.ts +1 -0
  4. package/dist/components/Icons/IconTypes.d.ts +1 -0
  5. package/dist/components/Image/ImageTypes.d.ts +3 -1
  6. package/dist/components/Link/LinkTypes.d.ts +1 -0
  7. package/dist/components/Notification/Notification.d.ts +2 -0
  8. package/dist/components/Select/Select.d.ts +2 -0
  9. package/dist/components/Toggle/Toggle.d.ts +47 -0
  10. package/dist/components/Toggle/ToggleSizes.d.ts +4 -0
  11. package/dist/components/VideoPlayer/VideoPlayer.d.ts +5 -3
  12. package/dist/design-system-react-components.cjs.development.js +921 -360
  13. package/dist/design-system-react-components.cjs.development.js.map +1 -1
  14. package/dist/design-system-react-components.cjs.production.min.js +1 -1
  15. package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
  16. package/dist/design-system-react-components.esm.js +917 -353
  17. package/dist/design-system-react-components.esm.js.map +1 -1
  18. package/dist/index.d.ts +5 -0
  19. package/dist/theme/components/breadcrumb.d.ts +9 -0
  20. package/dist/theme/components/notification.d.ts +8 -4
  21. package/dist/theme/components/toggle.d.ts +68 -0
  22. package/dist/theme/foundations/spacing.d.ts +2 -0
  23. package/package.json +2 -2
  24. package/src/components/Accordion/Accordion.stories.mdx +1 -2
  25. package/src/components/Breadcrumbs/Breadcrumbs.stories.mdx +20 -3
  26. package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +20 -0
  27. package/src/components/Breadcrumbs/BreadcrumbsTypes.tsx +1 -0
  28. package/src/components/Breadcrumbs/__snapshots__/Breadcrumbs.test.tsx.snap +198 -0
  29. package/src/components/Button/Button.tsx +0 -1
  30. package/src/components/Card/Card.stories.mdx +74 -7
  31. package/src/components/Card/Card.tsx +9 -8
  32. package/src/components/Card/__snapshots__/Card.test.tsx.snap +67 -35
  33. package/src/components/Chakra/Grid.stories.mdx +11 -14
  34. package/src/components/DatePicker/DatePicker.test.tsx +8 -6
  35. package/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap +5 -4
  36. package/src/components/Icons/Icon.stories.mdx +3 -2
  37. package/src/components/Icons/IconSvgs.tsx +2 -0
  38. package/src/components/Icons/IconTypes.tsx +1 -0
  39. package/src/components/Image/Image.stories.mdx +152 -90
  40. package/src/components/Image/Image.test.tsx +10 -0
  41. package/src/components/Image/ImageTypes.ts +2 -0
  42. package/src/components/Image/__snapshots__/Image.test.tsx.snap +24 -8
  43. package/src/components/Label/Label.stories.mdx +1 -1
  44. package/src/components/Link/Link.stories.mdx +2 -3
  45. package/src/components/Link/Link.test.tsx +71 -0
  46. package/src/components/Link/Link.tsx +41 -9
  47. package/src/components/Link/LinkTypes.tsx +1 -0
  48. package/src/components/Link/__snapshots__/Link.test.tsx.snap +201 -0
  49. package/src/components/Notification/Notification.stories.mdx +36 -3
  50. package/src/components/Notification/Notification.test.tsx +62 -16
  51. package/src/components/Notification/Notification.tsx +17 -5
  52. package/src/components/Notification/__snapshots__/Notification.test.tsx.snap +117 -0
  53. package/src/components/Pagination/Pagination.stories.mdx +1 -2
  54. package/src/components/Pagination/__snapshots__/Pagination.test.tsx.snap +42 -0
  55. package/src/components/ProgressIndicator/ProgressIndicator.stories.mdx +2 -3
  56. package/src/components/SearchBar/SearchBar.Test.tsx +64 -20
  57. package/src/components/SearchBar/SearchBar.stories.mdx +3 -4
  58. package/src/components/SearchBar/SearchBar.tsx +4 -1
  59. package/src/components/Select/Select.stories.mdx +132 -55
  60. package/src/components/Select/Select.test.tsx +2 -2
  61. package/src/components/Select/Select.tsx +6 -2
  62. package/src/components/Slider/Slider.stories.mdx +3 -2
  63. package/src/components/Slider/Slider.test.tsx +35 -0
  64. package/src/components/Slider/Slider.tsx +8 -2
  65. package/src/components/Template/Template.stories.mdx +1 -2
  66. package/src/components/Toggle/Toggle.stories.mdx +176 -0
  67. package/src/components/Toggle/Toggle.test.tsx +140 -0
  68. package/src/components/Toggle/Toggle.tsx +118 -0
  69. package/src/components/Toggle/ToggleSizes.tsx +4 -0
  70. package/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap +255 -0
  71. package/src/components/VideoPlayer/VideoPlayer.stories.mdx +39 -18
  72. package/src/components/VideoPlayer/VideoPlayer.test.tsx +103 -1
  73. package/src/components/VideoPlayer/VideoPlayer.tsx +57 -17
  74. package/src/components/VideoPlayer/__snapshots__/VideoPlayer.test.tsx.snap +48 -0
  75. package/src/index.ts +8 -0
  76. package/src/theme/components/breadcrumb.ts +11 -1
  77. package/src/theme/components/card.ts +4 -5
  78. package/src/theme/components/global.ts +1 -1
  79. package/src/theme/components/icon.ts +2 -2
  80. package/src/theme/components/image.ts +8 -0
  81. package/src/theme/components/notification.ts +8 -6
  82. package/src/theme/components/toggle.ts +65 -0
  83. package/src/theme/foundations/spacing.ts +3 -0
  84. package/src/theme/index.ts +2 -0
  85. package/src/utils/componentCategories.ts +3 -1
@@ -120,6 +120,7 @@ function generateUUID() {
120
120
  IconNames["ActionCheckCircle"] = "action_check_circle";
121
121
  IconNames["ActionHelpDefault"] = "action_help_default";
122
122
  IconNames["ActionHelpOutline"] = "action_help_outline";
123
+ IconNames["AlertNotificationImportant"] = "alert_notification_important";
123
124
  IconNames["ActionLaunch"] = "action_launch";
124
125
  IconNames["Arrow"] = "arrow";
125
126
  IconNames["Check"] = "check";
@@ -372,13 +373,13 @@ function _objectWithoutProperties$6(source, excluded) { if (source == null) retu
372
373
 
373
374
  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; }
374
375
 
375
- function SvgArrow(_ref) {
376
+ function SvgAlertNotificationImportant(_ref) {
376
377
  var title = _ref.title,
377
378
  titleId = _ref.titleId,
378
379
  props = _objectWithoutProperties$6(_ref, _excluded$6);
379
380
 
380
381
  return /*#__PURE__*/React.createElement("svg", _extends$7({
381
- viewBox: "0 0 24 14",
382
+ viewBox: "0 0 24 24",
382
383
  xmlns: "http://www.w3.org/2000/svg",
383
384
  "aria-labelledby": titleId
384
385
  }, props), title ? /*#__PURE__*/React.createElement("title", {
@@ -386,11 +387,11 @@ function SvgArrow(_ref) {
386
387
  }, title) : null, _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
387
388
  fillRule: "evenodd",
388
389
  clipRule: "evenodd",
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"
390
+ d: "M10.5 2.75c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1.17c3.14.68 5.5 3.48 5.5 6.83v6l2 2v1H3v-1l2-2v-6C5 7.4 7.36 4.6 10.5 3.92V2.75zm1.5 3c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm-1.99 15.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM13 7.75v4h-2v-4h2zm0 8v-2h-2v2h2z"
390
391
  })));
391
392
  }
392
393
 
393
- var _g, _defs;
394
+ var _path$7;
394
395
 
395
396
  var _excluded$7 = ["title", "titleId"];
396
397
 
@@ -400,37 +401,25 @@ function _objectWithoutProperties$7(source, excluded) { if (source == null) retu
400
401
 
401
402
  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; }
402
403
 
403
- function SvgBrooklyn(_ref) {
404
+ function SvgArrow(_ref) {
404
405
  var title = _ref.title,
405
406
  titleId = _ref.titleId,
406
407
  props = _objectWithoutProperties$7(_ref, _excluded$7);
407
408
 
408
409
  return /*#__PURE__*/React.createElement("svg", _extends$8({
409
- width: 328,
410
- height: 120,
411
- fill: "none",
410
+ viewBox: "0 0 24 14",
412
411
  xmlns: "http://www.w3.org/2000/svg",
413
412
  "aria-labelledby": titleId
414
413
  }, props), title ? /*#__PURE__*/React.createElement("title", {
415
414
  id: titleId
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
- })))));
415
+ }, title) : null, _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
416
+ fillRule: "evenodd",
417
+ clipRule: "evenodd",
418
+ 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"
419
+ })));
431
420
  }
432
421
 
433
- var _path$7;
422
+ var _g, _defs;
434
423
 
435
424
  var _excluded$8 = ["title", "titleId"];
436
425
 
@@ -440,20 +429,34 @@ function _objectWithoutProperties$8(source, excluded) { if (source == null) retu
440
429
 
441
430
  function _objectWithoutPropertiesLoose$9(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
442
431
 
443
- function SvgCheck(_ref) {
432
+ function SvgBrooklyn(_ref) {
444
433
  var title = _ref.title,
445
434
  titleId = _ref.titleId,
446
435
  props = _objectWithoutProperties$8(_ref, _excluded$8);
447
436
 
448
437
  return /*#__PURE__*/React.createElement("svg", _extends$9({
449
- viewBox: "0 0 24 24",
438
+ width: 328,
439
+ height: 120,
440
+ fill: "none",
450
441
  xmlns: "http://www.w3.org/2000/svg",
451
442
  "aria-labelledby": titleId
452
443
  }, props), title ? /*#__PURE__*/React.createElement("title", {
453
444
  id: titleId
454
- }, title) : null, _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
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"
456
- })));
445
+ }, title) : null, _g || (_g = /*#__PURE__*/React.createElement("g", {
446
+ clipPath: "url(#brooklyn_svg__clip0)",
447
+ fill: "#000"
448
+ }, /*#__PURE__*/React.createElement("path", {
449
+ 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"
450
+ }), /*#__PURE__*/React.createElement("path", {
451
+ 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"
452
+ }), /*#__PURE__*/React.createElement("path", {
453
+ 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"
454
+ }))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
455
+ id: "brooklyn_svg__clip0"
456
+ }, /*#__PURE__*/React.createElement("path", {
457
+ fill: "#fff",
458
+ d: "M0 0h327.045v119.691H0z"
459
+ })))));
457
460
  }
458
461
 
459
462
  var _path$8;
@@ -466,7 +469,7 @@ function _objectWithoutProperties$9(source, excluded) { if (source == null) retu
466
469
 
467
470
  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; }
468
471
 
469
- function SvgClock(_ref) {
472
+ function SvgCheck(_ref) {
470
473
  var title = _ref.title,
471
474
  titleId = _ref.titleId,
472
475
  props = _objectWithoutProperties$9(_ref, _excluded$9);
@@ -478,9 +481,7 @@ function SvgClock(_ref) {
478
481
  }, props), title ? /*#__PURE__*/React.createElement("title", {
479
482
  id: titleId
480
483
  }, title) : null, _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
481
- fillRule: "evenodd",
482
- clipRule: "evenodd",
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"
484
+ 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"
484
485
  })));
485
486
  }
486
487
 
@@ -494,7 +495,7 @@ function _objectWithoutProperties$a(source, excluded) { if (source == null) retu
494
495
 
495
496
  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; }
496
497
 
497
- function SvgClose(_ref) {
498
+ function SvgClock(_ref) {
498
499
  var title = _ref.title,
499
500
  titleId = _ref.titleId,
500
501
  props = _objectWithoutProperties$a(_ref, _excluded$a);
@@ -506,11 +507,13 @@ function SvgClose(_ref) {
506
507
  }, props), title ? /*#__PURE__*/React.createElement("title", {
507
508
  id: titleId
508
509
  }, title) : null, _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
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"
510
+ fillRule: "evenodd",
511
+ clipRule: "evenodd",
512
+ 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"
510
513
  })));
511
514
  }
512
515
 
513
- var _path$a, _path2$2, _path3$2;
516
+ var _path$a;
514
517
 
515
518
  var _excluded$b = ["title", "titleId"];
516
519
 
@@ -520,7 +523,7 @@ function _objectWithoutProperties$b(source, excluded) { if (source == null) retu
520
523
 
521
524
  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; }
522
525
 
523
- function SvgFileTypeAudio(_ref) {
526
+ function SvgClose(_ref) {
524
527
  var title = _ref.title,
525
528
  titleId = _ref.titleId,
526
529
  props = _objectWithoutProperties$b(_ref, _excluded$b);
@@ -532,19 +535,11 @@ function SvgFileTypeAudio(_ref) {
532
535
  }, props), title ? /*#__PURE__*/React.createElement("title", {
533
536
  id: titleId
534
537
  }, title) : null, _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
535
- fillRule: "evenodd",
536
- clipRule: "evenodd",
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"
538
- })), _path2$2 || (_path2$2 = /*#__PURE__*/React.createElement("path", {
539
- fillRule: "evenodd",
540
- clipRule: "evenodd",
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"
538
+ 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"
544
539
  })));
545
540
  }
546
541
 
547
- var _path$b, _path2$3, _path3$3;
542
+ var _path$b, _path2$2, _path3$2;
548
543
 
549
544
  var _excluded$c = ["title", "titleId"];
550
545
 
@@ -554,7 +549,7 @@ function _objectWithoutProperties$c(source, excluded) { if (source == null) retu
554
549
 
555
550
  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; }
556
551
 
557
- function SvgFileTypeDoc(_ref) {
552
+ function SvgFileTypeAudio(_ref) {
558
553
  var title = _ref.title,
559
554
  titleId = _ref.titleId,
560
555
  props = _objectWithoutProperties$c(_ref, _excluded$c);
@@ -568,17 +563,17 @@ function SvgFileTypeDoc(_ref) {
568
563
  }, title) : null, _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
569
564
  fillRule: "evenodd",
570
565
  clipRule: "evenodd",
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", {
566
+ 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"
567
+ })), _path2$2 || (_path2$2 = /*#__PURE__*/React.createElement("path", {
573
568
  fillRule: "evenodd",
574
569
  clipRule: "evenodd",
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"
570
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
571
+ })), _path3$2 || (_path3$2 = /*#__PURE__*/React.createElement("path", {
572
+ 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"
578
573
  })));
579
574
  }
580
575
 
581
- var _path$c, _path2$4;
576
+ var _path$c, _path2$3, _path3$3;
582
577
 
583
578
  var _excluded$d = ["title", "titleId"];
584
579
 
@@ -588,7 +583,7 @@ function _objectWithoutProperties$d(source, excluded) { if (source == null) retu
588
583
 
589
584
  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; }
590
585
 
591
- function SvgFileTypeGenericDoc(_ref) {
586
+ function SvgFileTypeDoc(_ref) {
592
587
  var title = _ref.title,
593
588
  titleId = _ref.titleId,
594
589
  props = _objectWithoutProperties$d(_ref, _excluded$d);
@@ -602,15 +597,17 @@ function SvgFileTypeGenericDoc(_ref) {
602
597
  }, title) : null, _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
603
598
  fillRule: "evenodd",
604
599
  clipRule: "evenodd",
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"
606
- })), _path2$4 || (_path2$4 = /*#__PURE__*/React.createElement("path", {
600
+ 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"
601
+ })), _path2$3 || (_path2$3 = /*#__PURE__*/React.createElement("path", {
607
602
  fillRule: "evenodd",
608
603
  clipRule: "evenodd",
609
- d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
604
+ d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
605
+ })), _path3$3 || (_path3$3 = /*#__PURE__*/React.createElement("path", {
606
+ d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
610
607
  })));
611
608
  }
612
609
 
613
- var _path$d, _path2$5, _path3$4, _circle, _path4;
610
+ var _path$d, _path2$4;
614
611
 
615
612
  var _excluded$e = ["title", "titleId"];
616
613
 
@@ -620,7 +617,7 @@ function _objectWithoutProperties$e(source, excluded) { if (source == null) retu
620
617
 
621
618
  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; }
622
619
 
623
- function SvgFileTypeImage(_ref) {
620
+ function SvgFileTypeGenericDoc(_ref) {
624
621
  var title = _ref.title,
625
622
  titleId = _ref.titleId,
626
623
  props = _objectWithoutProperties$e(_ref, _excluded$e);
@@ -635,24 +632,14 @@ function SvgFileTypeImage(_ref) {
635
632
  fillRule: "evenodd",
636
633
  clipRule: "evenodd",
637
634
  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"
638
- })), _path2$5 || (_path2$5 = /*#__PURE__*/React.createElement("path", {
639
- fillRule: "evenodd",
640
- clipRule: "evenodd",
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", {
635
+ })), _path2$4 || (_path2$4 = /*#__PURE__*/React.createElement("path", {
649
636
  fillRule: "evenodd",
650
637
  clipRule: "evenodd",
651
638
  d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
652
639
  })));
653
640
  }
654
641
 
655
- var _path$e, _path2$6, _path3$5;
642
+ var _path$e, _path2$5, _path3$4, _circle, _path4;
656
643
 
657
644
  var _excluded$f = ["title", "titleId"];
658
645
 
@@ -662,7 +649,7 @@ function _objectWithoutProperties$f(source, excluded) { if (source == null) retu
662
649
 
663
650
  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; }
664
651
 
665
- function SvgFileTypePdf(_ref) {
652
+ function SvgFileTypeImage(_ref) {
666
653
  var title = _ref.title,
667
654
  titleId = _ref.titleId,
668
655
  props = _objectWithoutProperties$f(_ref, _excluded$f);
@@ -677,16 +664,24 @@ function SvgFileTypePdf(_ref) {
677
664
  fillRule: "evenodd",
678
665
  clipRule: "evenodd",
679
666
  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", {
667
+ })), _path2$5 || (_path2$5 = /*#__PURE__*/React.createElement("path", {
668
+ fillRule: "evenodd",
669
+ clipRule: "evenodd",
670
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
671
+ })), _path3$4 || (_path3$4 = /*#__PURE__*/React.createElement("path", {
672
+ d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
673
+ })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
674
+ cx: 9.375,
675
+ cy: 10.125,
676
+ r: 1.125
677
+ })), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
681
678
  fillRule: "evenodd",
682
679
  clipRule: "evenodd",
683
680
  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"
686
681
  })));
687
682
  }
688
683
 
689
- var _path$f, _path2$7, _path3$6;
684
+ var _path$f, _path2$6, _path3$5;
690
685
 
691
686
  var _excluded$g = ["title", "titleId"];
692
687
 
@@ -696,7 +691,7 @@ function _objectWithoutProperties$g(source, excluded) { if (source == null) retu
696
691
 
697
692
  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; }
698
693
 
699
- function SvgFileTypeSpreadsheet(_ref) {
694
+ function SvgFileTypePdf(_ref) {
700
695
  var title = _ref.title,
701
696
  titleId = _ref.titleId,
702
697
  props = _objectWithoutProperties$g(_ref, _excluded$g);
@@ -711,16 +706,16 @@ function SvgFileTypeSpreadsheet(_ref) {
711
706
  fillRule: "evenodd",
712
707
  clipRule: "evenodd",
713
708
  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", {
709
+ })), _path2$6 || (_path2$6 = /*#__PURE__*/React.createElement("path", {
715
710
  fillRule: "evenodd",
716
711
  clipRule: "evenodd",
717
712
  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"
713
+ })), _path3$5 || (_path3$5 = /*#__PURE__*/React.createElement("path", {
714
+ 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"
720
715
  })));
721
716
  }
722
717
 
723
- var _path$g, _path2$8;
718
+ var _path$g, _path2$7, _path3$6;
724
719
 
725
720
  var _excluded$h = ["title", "titleId"];
726
721
 
@@ -730,7 +725,7 @@ function _objectWithoutProperties$h(source, excluded) { if (source == null) retu
730
725
 
731
726
  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; }
732
727
 
733
- function SvgFileTypeVideo(_ref) {
728
+ function SvgFileTypeSpreadsheet(_ref) {
734
729
  var title = _ref.title,
735
730
  titleId = _ref.titleId,
736
731
  props = _objectWithoutProperties$h(_ref, _excluded$h);
@@ -745,14 +740,16 @@ function SvgFileTypeVideo(_ref) {
745
740
  fillRule: "evenodd",
746
741
  clipRule: "evenodd",
747
742
  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", {
743
+ })), _path2$7 || (_path2$7 = /*#__PURE__*/React.createElement("path", {
749
744
  fillRule: "evenodd",
750
745
  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"
746
+ d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
747
+ })), _path3$6 || (_path3$6 = /*#__PURE__*/React.createElement("path", {
748
+ d: "M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"
752
749
  })));
753
750
  }
754
751
 
755
- var _path$h;
752
+ var _path$h, _path2$8;
756
753
 
757
754
  var _excluded$i = ["title", "titleId"];
758
755
 
@@ -762,13 +759,13 @@ function _objectWithoutProperties$i(source, excluded) { if (source == null) retu
762
759
 
763
760
  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; }
764
761
 
765
- function SvgDownload(_ref) {
762
+ function SvgFileTypeVideo(_ref) {
766
763
  var title = _ref.title,
767
764
  titleId = _ref.titleId,
768
765
  props = _objectWithoutProperties$i(_ref, _excluded$i);
769
766
 
770
767
  return /*#__PURE__*/React.createElement("svg", _extends$j({
771
- viewBox: "0 0 14 18",
768
+ viewBox: "0 0 24 24",
772
769
  xmlns: "http://www.w3.org/2000/svg",
773
770
  "aria-labelledby": titleId
774
771
  }, props), title ? /*#__PURE__*/React.createElement("title", {
@@ -776,11 +773,15 @@ function SvgDownload(_ref) {
776
773
  }, title) : null, _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
777
774
  fillRule: "evenodd",
778
775
  clipRule: "evenodd",
779
- d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
776
+ 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"
777
+ })), _path2$8 || (_path2$8 = /*#__PURE__*/React.createElement("path", {
778
+ fillRule: "evenodd",
779
+ clipRule: "evenodd",
780
+ 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"
780
781
  })));
781
782
  }
782
783
 
783
- var _path$i, _path2$9;
784
+ var _path$i;
784
785
 
785
786
  var _excluded$j = ["title", "titleId"];
786
787
 
@@ -790,26 +791,25 @@ function _objectWithoutProperties$j(source, excluded) { if (source == null) retu
790
791
 
791
792
  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; }
792
793
 
793
- function SvgErrorFilled(_ref) {
794
+ function SvgDownload(_ref) {
794
795
  var title = _ref.title,
795
796
  titleId = _ref.titleId,
796
797
  props = _objectWithoutProperties$j(_ref, _excluded$j);
797
798
 
798
799
  return /*#__PURE__*/React.createElement("svg", _extends$k({
799
- viewBox: "0 0 24 25",
800
+ viewBox: "0 0 14 18",
800
801
  xmlns: "http://www.w3.org/2000/svg",
801
802
  "aria-labelledby": titleId
802
803
  }, props), title ? /*#__PURE__*/React.createElement("title", {
803
804
  id: titleId
804
805
  }, 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"
806
+ fillRule: "evenodd",
807
+ clipRule: "evenodd",
808
+ d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
809
809
  })));
810
810
  }
811
811
 
812
- var _path$j;
812
+ var _path$j, _path2$9;
813
813
 
814
814
  var _excluded$k = ["title", "titleId"];
815
815
 
@@ -819,7 +819,7 @@ function _objectWithoutProperties$k(source, excluded) { if (source == null) retu
819
819
 
820
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
821
 
822
- function SvgErrorOutline(_ref) {
822
+ function SvgErrorFilled(_ref) {
823
823
  var title = _ref.title,
824
824
  titleId = _ref.titleId,
825
825
  props = _objectWithoutProperties$k(_ref, _excluded$k);
@@ -831,9 +831,10 @@ function SvgErrorOutline(_ref) {
831
831
  }, props), title ? /*#__PURE__*/React.createElement("title", {
832
832
  id: titleId
833
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"
834
+ 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"
835
+ })), _path2$9 || (_path2$9 = /*#__PURE__*/React.createElement("path", {
836
+ d: "M13.2 14.112h-2.4v-7.2h2.4v7.2zM13.2 18.912h-2.4v-2.4h2.4v2.4z",
837
+ fill: "#fff"
837
838
  })));
838
839
  }
839
840
 
@@ -847,23 +848,25 @@ function _objectWithoutProperties$l(source, excluded) { if (source == null) retu
847
848
 
848
849
  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
 
850
- function SvgHeadset(_ref) {
851
+ function SvgErrorOutline(_ref) {
851
852
  var title = _ref.title,
852
853
  titleId = _ref.titleId,
853
854
  props = _objectWithoutProperties$l(_ref, _excluded$l);
854
855
 
855
856
  return /*#__PURE__*/React.createElement("svg", _extends$m({
856
- viewBox: "0 0 18 19",
857
+ viewBox: "0 0 24 25",
857
858
  xmlns: "http://www.w3.org/2000/svg",
858
859
  "aria-labelledby": titleId
859
860
  }, props), title ? /*#__PURE__*/React.createElement("title", {
860
861
  id: titleId
861
862
  }, 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
+ fillRule: "evenodd",
864
+ clipRule: "evenodd",
865
+ 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"
863
866
  })));
864
867
  }
865
868
 
866
- var _path$l, _path2$a, _circle$1, _path3$7, _circle2, _path4$1, _path5;
869
+ var _path$l;
867
870
 
868
871
  var _excluded$m = ["title", "titleId"];
869
872
 
@@ -873,18 +876,44 @@ function _objectWithoutProperties$m(source, excluded) { if (source == null) retu
873
876
 
874
877
  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
878
 
876
- function SvgLogoBrooklynpl(_ref) {
879
+ function SvgHeadset(_ref) {
877
880
  var title = _ref.title,
878
881
  titleId = _ref.titleId,
879
882
  props = _objectWithoutProperties$m(_ref, _excluded$m);
880
883
 
881
884
  return /*#__PURE__*/React.createElement("svg", _extends$n({
885
+ viewBox: "0 0 18 19",
882
886
  xmlns: "http://www.w3.org/2000/svg",
883
- viewBox: "0 0 327.045 119.691",
884
887
  "aria-labelledby": titleId
885
888
  }, props), title ? /*#__PURE__*/React.createElement("title", {
886
889
  id: titleId
887
890
  }, title) : null, _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
891
+ 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"
892
+ })));
893
+ }
894
+
895
+ var _path$m, _path2$a, _circle$1, _path3$7, _circle2, _path4$1, _path5;
896
+
897
+ var _excluded$n = ["title", "titleId"];
898
+
899
+ 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); }
900
+
901
+ 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; }
902
+
903
+ 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; }
904
+
905
+ function SvgLogoBrooklynpl(_ref) {
906
+ var title = _ref.title,
907
+ titleId = _ref.titleId,
908
+ props = _objectWithoutProperties$n(_ref, _excluded$n);
909
+
910
+ return /*#__PURE__*/React.createElement("svg", _extends$o({
911
+ xmlns: "http://www.w3.org/2000/svg",
912
+ viewBox: "0 0 327.045 119.691",
913
+ "aria-labelledby": titleId
914
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
915
+ id: titleId
916
+ }, title) : null, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
888
917
  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"
889
918
  })), _path2$a || (_path2$a = /*#__PURE__*/React.createElement("path", {
890
919
  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"
@@ -905,28 +934,28 @@ function SvgLogoBrooklynpl(_ref) {
905
934
  })));
906
935
  }
907
936
 
908
- var _path$m, _path2$b, _path3$8, _path4$2, _path5$1, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17;
937
+ var _path$n, _path2$b, _path3$8, _path4$2, _path5$1, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17;
909
938
 
910
- var _excluded$n = ["title", "titleId"];
939
+ var _excluded$o = ["title", "titleId"];
911
940
 
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); }
941
+ 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); }
913
942
 
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; }
943
+ 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; }
915
944
 
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; }
945
+ 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; }
917
946
 
918
947
  function SvgLogoNypl(_ref) {
919
948
  var title = _ref.title,
920
949
  titleId = _ref.titleId,
921
- props = _objectWithoutProperties$n(_ref, _excluded$n);
950
+ props = _objectWithoutProperties$o(_ref, _excluded$o);
922
951
 
923
- return /*#__PURE__*/React.createElement("svg", _extends$o({
952
+ return /*#__PURE__*/React.createElement("svg", _extends$p({
924
953
  viewBox: "0 0 317 178",
925
954
  xmlns: "http://www.w3.org/2000/svg",
926
955
  "aria-labelledby": titleId
927
956
  }, props), title ? /*#__PURE__*/React.createElement("title", {
928
957
  id: titleId
929
- }, title) : null, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
958
+ }, title) : null, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
930
959
  d: "M159.458 2.388h2.395l17.461 25.224V2.388h2.264v29.175h-2.221L161.722 6.165v25.398h-2.221V2.387h-.043z"
931
960
  })), _path2$b || (_path2$b = /*#__PURE__*/React.createElement("path", {
932
961
  fillRule: "evenodd",
@@ -979,22 +1008,22 @@ function SvgLogoNypl(_ref) {
979
1008
  })));
980
1009
  }
981
1010
 
982
- var _path$n, _defs$1;
1011
+ var _path$o, _defs$1;
983
1012
 
984
- var _excluded$o = ["title", "titleId"];
1013
+ var _excluded$p = ["title", "titleId"];
985
1014
 
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); }
1015
+ 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); }
987
1016
 
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; }
1017
+ 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; }
989
1018
 
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; }
1019
+ 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; }
991
1020
 
992
1021
  function SvgLogoNyplNegative(_ref) {
993
1022
  var title = _ref.title,
994
1023
  titleId = _ref.titleId,
995
- props = _objectWithoutProperties$o(_ref, _excluded$o);
1024
+ props = _objectWithoutProperties$p(_ref, _excluded$p);
996
1025
 
997
- return /*#__PURE__*/React.createElement("svg", _extends$p({
1026
+ return /*#__PURE__*/React.createElement("svg", _extends$q({
998
1027
  width: 457,
999
1028
  height: 269,
1000
1029
  fill: "none",
@@ -1003,7 +1032,7 @@ function SvgLogoNyplNegative(_ref) {
1003
1032
  "aria-labelledby": titleId
1004
1033
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1005
1034
  id: titleId
1006
- }, title) : null, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
1035
+ }, title) : null, _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
1007
1036
  fill: "url(#logo_nypl_negative_svg__pattern0)",
1008
1037
  d: "M0 0h457v268.295H0z"
1009
1038
  })), _defs$1 || (_defs$1 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", {
@@ -1022,48 +1051,48 @@ function SvgLogoNyplNegative(_ref) {
1022
1051
  }))));
1023
1052
  }
1024
1053
 
1025
- var _path$o;
1054
+ var _path$p;
1026
1055
 
1027
- var _excluded$p = ["title", "titleId"];
1056
+ var _excluded$q = ["title", "titleId"];
1028
1057
 
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); }
1058
+ 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); }
1030
1059
 
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; }
1060
+ 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; }
1032
1061
 
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; }
1062
+ 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; }
1034
1063
 
1035
1064
  function SvgLogoQueenspl(_ref) {
1036
1065
  var title = _ref.title,
1037
1066
  titleId = _ref.titleId,
1038
- props = _objectWithoutProperties$p(_ref, _excluded$p);
1067
+ props = _objectWithoutProperties$q(_ref, _excluded$q);
1039
1068
 
1040
- return /*#__PURE__*/React.createElement("svg", _extends$q({
1069
+ return /*#__PURE__*/React.createElement("svg", _extends$r({
1041
1070
  xmlns: "http://www.w3.org/2000/svg",
1042
1071
  viewBox: "0 0 1114 601",
1043
1072
  "aria-labelledby": titleId
1044
1073
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1045
1074
  id: titleId
1046
- }, title) : null, _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
1075
+ }, title) : null, _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
1047
1076
  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"
1048
1077
  })));
1049
1078
  }
1050
1079
 
1051
- var _path$p;
1080
+ var _path$q;
1052
1081
 
1053
- var _excluded$q = ["title", "titleId"];
1082
+ var _excluded$r = ["title", "titleId"];
1054
1083
 
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); }
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); }
1056
1085
 
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; }
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; }
1058
1087
 
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; }
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; }
1060
1089
 
1061
1090
  function SvgLpaNegative(_ref) {
1062
1091
  var title = _ref.title,
1063
1092
  titleId = _ref.titleId,
1064
- props = _objectWithoutProperties$q(_ref, _excluded$q);
1093
+ props = _objectWithoutProperties$r(_ref, _excluded$r);
1065
1094
 
1066
- return /*#__PURE__*/React.createElement("svg", _extends$r({
1095
+ return /*#__PURE__*/React.createElement("svg", _extends$s({
1067
1096
  width: 205,
1068
1097
  height: 80,
1069
1098
  fill: "none",
@@ -1071,28 +1100,28 @@ function SvgLpaNegative(_ref) {
1071
1100
  "aria-labelledby": titleId
1072
1101
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1073
1102
  id: titleId
1074
- }, title) : null, _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
1103
+ }, title) : null, _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
1075
1104
  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",
1076
1105
  fill: "#fff"
1077
1106
  })));
1078
1107
  }
1079
1108
 
1080
- var _path$q, _path2$c;
1109
+ var _path$r, _path2$c;
1081
1110
 
1082
- var _excluded$r = ["title", "titleId"];
1111
+ var _excluded$s = ["title", "titleId"];
1083
1112
 
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); }
1113
+ 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); }
1085
1114
 
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; }
1115
+ 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; }
1087
1116
 
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; }
1117
+ 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; }
1089
1118
 
1090
1119
  function SvgLpaPositive(_ref) {
1091
1120
  var title = _ref.title,
1092
1121
  titleId = _ref.titleId,
1093
- props = _objectWithoutProperties$r(_ref, _excluded$r);
1122
+ props = _objectWithoutProperties$s(_ref, _excluded$s);
1094
1123
 
1095
- return /*#__PURE__*/React.createElement("svg", _extends$s({
1124
+ return /*#__PURE__*/React.createElement("svg", _extends$t({
1096
1125
  width: 186,
1097
1126
  height: 74,
1098
1127
  fill: "none",
@@ -1100,7 +1129,7 @@ function SvgLpaPositive(_ref) {
1100
1129
  "aria-labelledby": titleId
1101
1130
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1102
1131
  id: titleId
1103
- }, title) : null, _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
1132
+ }, title) : null, _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
1104
1133
  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",
1105
1134
  fill: "#008375"
1106
1135
  })), _path2$c || (_path2$c = /*#__PURE__*/React.createElement("path", {
@@ -1111,20 +1140,20 @@ function SvgLpaPositive(_ref) {
1111
1140
 
1112
1141
  var _rect;
1113
1142
 
1114
- var _excluded$s = ["title", "titleId"];
1143
+ var _excluded$t = ["title", "titleId"];
1115
1144
 
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); }
1145
+ 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); }
1117
1146
 
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; }
1147
+ 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; }
1119
1148
 
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; }
1149
+ 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; }
1121
1150
 
1122
1151
  function SvgMinus(_ref) {
1123
1152
  var title = _ref.title,
1124
1153
  titleId = _ref.titleId,
1125
- props = _objectWithoutProperties$s(_ref, _excluded$s);
1154
+ props = _objectWithoutProperties$t(_ref, _excluded$t);
1126
1155
 
1127
- return /*#__PURE__*/React.createElement("svg", _extends$t({
1156
+ return /*#__PURE__*/React.createElement("svg", _extends$u({
1128
1157
  viewBox: "0 -11 24 24",
1129
1158
  width: 24,
1130
1159
  height: 2,
@@ -1139,22 +1168,22 @@ function SvgMinus(_ref) {
1139
1168
  })));
1140
1169
  }
1141
1170
 
1142
- var _path$r, _mask, _g$1;
1171
+ var _path$s, _mask, _g$1;
1143
1172
 
1144
- var _excluded$t = ["title", "titleId"];
1173
+ var _excluded$u = ["title", "titleId"];
1145
1174
 
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); }
1175
+ 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); }
1147
1176
 
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; }
1177
+ 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; }
1149
1178
 
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; }
1179
+ 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; }
1151
1180
 
1152
1181
  function SvgNyplCircleNegative(_ref) {
1153
1182
  var title = _ref.title,
1154
1183
  titleId = _ref.titleId,
1155
- props = _objectWithoutProperties$t(_ref, _excluded$t);
1184
+ props = _objectWithoutProperties$u(_ref, _excluded$u);
1156
1185
 
1157
- return /*#__PURE__*/React.createElement("svg", _extends$u({
1186
+ return /*#__PURE__*/React.createElement("svg", _extends$v({
1158
1187
  width: 125,
1159
1188
  height: 126,
1160
1189
  fill: "none",
@@ -1162,7 +1191,7 @@ function SvgNyplCircleNegative(_ref) {
1162
1191
  "aria-labelledby": titleId
1163
1192
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1164
1193
  id: titleId
1165
- }, title) : null, _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
1194
+ }, title) : null, _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
1166
1195
  fillRule: "evenodd",
1167
1196
  clipRule: "evenodd",
1168
1197
  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",
@@ -1187,22 +1216,22 @@ function SvgNyplCircleNegative(_ref) {
1187
1216
  }))));
1188
1217
  }
1189
1218
 
1190
- var _mask$1, _g$2, _path$s;
1219
+ var _mask$1, _g$2, _path$t;
1191
1220
 
1192
- var _excluded$u = ["title", "titleId"];
1221
+ var _excluded$v = ["title", "titleId"];
1193
1222
 
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); }
1223
+ 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); }
1195
1224
 
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; }
1225
+ 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; }
1197
1226
 
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; }
1227
+ 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; }
1199
1228
 
1200
1229
  function SvgNyplCirclePositive(_ref) {
1201
1230
  var title = _ref.title,
1202
1231
  titleId = _ref.titleId,
1203
- props = _objectWithoutProperties$u(_ref, _excluded$u);
1232
+ props = _objectWithoutProperties$v(_ref, _excluded$v);
1204
1233
 
1205
- return /*#__PURE__*/React.createElement("svg", _extends$v({
1234
+ return /*#__PURE__*/React.createElement("svg", _extends$w({
1206
1235
  width: 48,
1207
1236
  height: 49,
1208
1237
  fill: "none",
@@ -1229,7 +1258,7 @@ function SvgNyplCirclePositive(_ref) {
1229
1258
  clipRule: "evenodd",
1230
1259
  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",
1231
1260
  fill: "#000"
1232
- }))), _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
1261
+ }))), _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
1233
1262
  fillRule: "evenodd",
1234
1263
  clipRule: "evenodd",
1235
1264
  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",
@@ -1237,22 +1266,22 @@ function SvgNyplCirclePositive(_ref) {
1237
1266
  })));
1238
1267
  }
1239
1268
 
1240
- var _path$t, _defs$2;
1269
+ var _path$u, _defs$2;
1241
1270
 
1242
- var _excluded$v = ["title", "titleId"];
1271
+ var _excluded$w = ["title", "titleId"];
1243
1272
 
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); }
1273
+ 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); }
1245
1274
 
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; }
1275
+ 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; }
1247
1276
 
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; }
1277
+ 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; }
1249
1278
 
1250
1279
  function SvgNyplFullLockUpNegative(_ref) {
1251
1280
  var title = _ref.title,
1252
1281
  titleId = _ref.titleId,
1253
- props = _objectWithoutProperties$v(_ref, _excluded$v);
1282
+ props = _objectWithoutProperties$w(_ref, _excluded$w);
1254
1283
 
1255
- return /*#__PURE__*/React.createElement("svg", _extends$w({
1284
+ return /*#__PURE__*/React.createElement("svg", _extends$x({
1256
1285
  width: 457,
1257
1286
  height: 269,
1258
1287
  fill: "none",
@@ -1261,7 +1290,7 @@ function SvgNyplFullLockUpNegative(_ref) {
1261
1290
  "aria-labelledby": titleId
1262
1291
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1263
1292
  id: titleId
1264
- }, title) : null, _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
1293
+ }, title) : null, _path$u || (_path$u = /*#__PURE__*/React.createElement("path", {
1265
1294
  fill: "url(#nypl_full_lock_up_negative_svg__pattern0)",
1266
1295
  d: "M0 .379h457v268.295H0z"
1267
1296
  })), _defs$2 || (_defs$2 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", {
@@ -1280,22 +1309,22 @@ function SvgNyplFullLockUpNegative(_ref) {
1280
1309
  }))));
1281
1310
  }
1282
1311
 
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;
1312
+ var _path$v, _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;
1284
1313
 
1285
- var _excluded$w = ["title", "titleId"];
1314
+ var _excluded$x = ["title", "titleId"];
1286
1315
 
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); }
1316
+ 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); }
1288
1317
 
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; }
1318
+ 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; }
1290
1319
 
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; }
1320
+ 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; }
1292
1321
 
1293
1322
  function SvgNyplFullLockUp(_ref) {
1294
1323
  var title = _ref.title,
1295
1324
  titleId = _ref.titleId,
1296
- props = _objectWithoutProperties$w(_ref, _excluded$w);
1325
+ props = _objectWithoutProperties$x(_ref, _excluded$x);
1297
1326
 
1298
- return /*#__PURE__*/React.createElement("svg", _extends$x({
1327
+ return /*#__PURE__*/React.createElement("svg", _extends$y({
1299
1328
  width: 457,
1300
1329
  height: 258,
1301
1330
  fill: "none",
@@ -1303,7 +1332,7 @@ function SvgNyplFullLockUp(_ref) {
1303
1332
  "aria-labelledby": titleId
1304
1333
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1305
1334
  id: titleId
1306
- }, title) : null, _path$u || (_path$u = /*#__PURE__*/React.createElement("path", {
1335
+ }, title) : null, _path$v || (_path$v = /*#__PURE__*/React.createElement("path", {
1307
1336
  d: "M229.882 3.455h3.452l25.173 36.473V3.455h3.264V45.64h-3.201L233.146 8.917V45.64h-3.201V3.455h-.063z",
1308
1337
  fill: "#000"
1309
1338
  })), _path2$d || (_path2$d = /*#__PURE__*/React.createElement("path", {
@@ -1373,22 +1402,22 @@ function SvgNyplFullLockUp(_ref) {
1373
1402
  })));
1374
1403
  }
1375
1404
 
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;
1405
+ var _path$w, _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;
1377
1406
 
1378
- var _excluded$x = ["title", "titleId"];
1407
+ var _excluded$y = ["title", "titleId"];
1379
1408
 
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); }
1409
+ 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); }
1381
1410
 
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; }
1411
+ 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; }
1383
1412
 
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; }
1413
+ 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; }
1385
1414
 
1386
1415
  function SvgNyplNoLionNegative(_ref) {
1387
1416
  var title = _ref.title,
1388
1417
  titleId = _ref.titleId,
1389
- props = _objectWithoutProperties$x(_ref, _excluded$x);
1418
+ props = _objectWithoutProperties$y(_ref, _excluded$y);
1390
1419
 
1391
- return /*#__PURE__*/React.createElement("svg", _extends$y({
1420
+ return /*#__PURE__*/React.createElement("svg", _extends$z({
1392
1421
  width: 364,
1393
1422
  height: 300,
1394
1423
  fill: "none",
@@ -1396,7 +1425,7 @@ function SvgNyplNoLionNegative(_ref) {
1396
1425
  "aria-labelledby": titleId
1397
1426
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1398
1427
  id: titleId
1399
- }, title) : null, _path$v || (_path$v = /*#__PURE__*/React.createElement("path", {
1428
+ }, title) : null, _path$w || (_path$w = /*#__PURE__*/React.createElement("path", {
1400
1429
  d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
1401
1430
  fill: "#fff"
1402
1431
  })), _path2$e || (_path2$e = /*#__PURE__*/React.createElement("path", {
@@ -1458,22 +1487,22 @@ function SvgNyplNoLionNegative(_ref) {
1458
1487
  })));
1459
1488
  }
1460
1489
 
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;
1490
+ var _path$x, _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;
1462
1491
 
1463
- var _excluded$y = ["title", "titleId"];
1492
+ var _excluded$z = ["title", "titleId"];
1464
1493
 
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); }
1494
+ 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); }
1466
1495
 
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; }
1496
+ 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; }
1468
1497
 
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; }
1498
+ 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; }
1470
1499
 
1471
1500
  function SvgNyplNoLionPositive(_ref) {
1472
1501
  var title = _ref.title,
1473
1502
  titleId = _ref.titleId,
1474
- props = _objectWithoutProperties$y(_ref, _excluded$y);
1503
+ props = _objectWithoutProperties$z(_ref, _excluded$z);
1475
1504
 
1476
- return /*#__PURE__*/React.createElement("svg", _extends$z({
1505
+ return /*#__PURE__*/React.createElement("svg", _extends$A({
1477
1506
  width: 364,
1478
1507
  height: 300,
1479
1508
  fill: "none",
@@ -1481,7 +1510,7 @@ function SvgNyplNoLionPositive(_ref) {
1481
1510
  "aria-labelledby": titleId
1482
1511
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1483
1512
  id: titleId
1484
- }, title) : null, _path$w || (_path$w = /*#__PURE__*/React.createElement("path", {
1513
+ }, title) : null, _path$x || (_path$x = /*#__PURE__*/React.createElement("path", {
1485
1514
  d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
1486
1515
  fill: "#000"
1487
1516
  })), _path2$f || (_path2$f = /*#__PURE__*/React.createElement("path", {
@@ -1545,20 +1574,20 @@ function SvgNyplNoLionPositive(_ref) {
1545
1574
 
1546
1575
  var _rect$1, _rect2;
1547
1576
 
1548
- var _excluded$z = ["title", "titleId"];
1577
+ var _excluded$A = ["title", "titleId"];
1549
1578
 
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); }
1579
+ 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); }
1551
1580
 
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; }
1581
+ 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; }
1553
1582
 
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; }
1583
+ 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; }
1555
1584
 
1556
1585
  function SvgPlus(_ref) {
1557
1586
  var title = _ref.title,
1558
1587
  titleId = _ref.titleId,
1559
- props = _objectWithoutProperties$z(_ref, _excluded$z);
1588
+ props = _objectWithoutProperties$A(_ref, _excluded$A);
1560
1589
 
1561
- return /*#__PURE__*/React.createElement("svg", _extends$A({
1590
+ return /*#__PURE__*/React.createElement("svg", _extends$B({
1562
1591
  viewBox: "0 0 23 23",
1563
1592
  xmlns: "http://www.w3.org/2000/svg",
1564
1593
  "aria-labelledby": titleId
@@ -1581,20 +1610,20 @@ function SvgPlus(_ref) {
1581
1610
 
1582
1611
  var _g$3, _defs$3;
1583
1612
 
1584
- var _excluded$A = ["title", "titleId"];
1613
+ var _excluded$B = ["title", "titleId"];
1585
1614
 
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); }
1615
+ 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); }
1587
1616
 
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; }
1617
+ 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; }
1589
1618
 
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; }
1619
+ 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; }
1591
1620
 
1592
1621
  function SvgQueensLong(_ref) {
1593
1622
  var title = _ref.title,
1594
1623
  titleId = _ref.titleId,
1595
- props = _objectWithoutProperties$A(_ref, _excluded$A);
1624
+ props = _objectWithoutProperties$B(_ref, _excluded$B);
1596
1625
 
1597
- return /*#__PURE__*/React.createElement("svg", _extends$B({
1626
+ return /*#__PURE__*/React.createElement("svg", _extends$C({
1598
1627
  width: 355,
1599
1628
  height: 48,
1600
1629
  fill: "none",
@@ -1643,20 +1672,20 @@ function SvgQueensLong(_ref) {
1643
1672
 
1644
1673
  var _g$4, _defs$4;
1645
1674
 
1646
- var _excluded$B = ["title", "titleId"];
1675
+ var _excluded$C = ["title", "titleId"];
1647
1676
 
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); }
1677
+ 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); }
1649
1678
 
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; }
1679
+ 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; }
1651
1680
 
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; }
1681
+ 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; }
1653
1682
 
1654
1683
  function SvgQueensStacked(_ref) {
1655
1684
  var title = _ref.title,
1656
1685
  titleId = _ref.titleId,
1657
- props = _objectWithoutProperties$B(_ref, _excluded$B);
1686
+ props = _objectWithoutProperties$C(_ref, _excluded$C);
1658
1687
 
1659
- return /*#__PURE__*/React.createElement("svg", _extends$C({
1688
+ return /*#__PURE__*/React.createElement("svg", _extends$D({
1660
1689
  width: 320,
1661
1690
  height: 174,
1662
1691
  fill: "none",
@@ -1678,22 +1707,22 @@ function SvgQueensStacked(_ref) {
1678
1707
  })))));
1679
1708
  }
1680
1709
 
1681
- var _path$x, _path2$g, _path3$c, _path4$6, _path5$5;
1710
+ var _path$y, _path2$g, _path3$c, _path4$6, _path5$5;
1682
1711
 
1683
- var _excluded$C = ["title", "titleId"];
1712
+ var _excluded$D = ["title", "titleId"];
1684
1713
 
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); }
1714
+ 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); }
1686
1715
 
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; }
1716
+ 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; }
1688
1717
 
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; }
1718
+ 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; }
1690
1719
 
1691
1720
  function SvgSchomburgCircle(_ref) {
1692
1721
  var title = _ref.title,
1693
1722
  titleId = _ref.titleId,
1694
- props = _objectWithoutProperties$C(_ref, _excluded$C);
1723
+ props = _objectWithoutProperties$D(_ref, _excluded$D);
1695
1724
 
1696
- return /*#__PURE__*/React.createElement("svg", _extends$D({
1725
+ return /*#__PURE__*/React.createElement("svg", _extends$E({
1697
1726
  width: 67,
1698
1727
  height: 67,
1699
1728
  fill: "none",
@@ -1701,7 +1730,7 @@ function SvgSchomburgCircle(_ref) {
1701
1730
  "aria-labelledby": titleId
1702
1731
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1703
1732
  id: titleId
1704
- }, title) : null, _path$x || (_path$x = /*#__PURE__*/React.createElement("path", {
1733
+ }, title) : null, _path$y || (_path$y = /*#__PURE__*/React.createElement("path", {
1705
1734
  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",
1706
1735
  fill: "#C54B38"
1707
1736
  })), _path2$g || (_path2$g = /*#__PURE__*/React.createElement("path", {
@@ -1719,22 +1748,22 @@ function SvgSchomburgCircle(_ref) {
1719
1748
  })));
1720
1749
  }
1721
1750
 
1722
- var _path$y, _path2$h, _path3$d, _path4$7, _path5$6, _path6$4, _path7$4;
1751
+ var _path$z, _path2$h, _path3$d, _path4$7, _path5$6, _path6$4, _path7$4;
1723
1752
 
1724
- var _excluded$D = ["title", "titleId"];
1753
+ var _excluded$E = ["title", "titleId"];
1725
1754
 
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); }
1755
+ 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); }
1727
1756
 
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; }
1757
+ 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; }
1729
1758
 
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; }
1759
+ 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; }
1731
1760
 
1732
1761
  function SvgSchomburgPositive(_ref) {
1733
1762
  var title = _ref.title,
1734
1763
  titleId = _ref.titleId,
1735
- props = _objectWithoutProperties$D(_ref, _excluded$D);
1764
+ props = _objectWithoutProperties$E(_ref, _excluded$E);
1736
1765
 
1737
- return /*#__PURE__*/React.createElement("svg", _extends$E({
1766
+ return /*#__PURE__*/React.createElement("svg", _extends$F({
1738
1767
  width: 185,
1739
1768
  height: 79,
1740
1769
  fill: "none",
@@ -1742,7 +1771,7 @@ function SvgSchomburgPositive(_ref) {
1742
1771
  "aria-labelledby": titleId
1743
1772
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1744
1773
  id: titleId
1745
- }, title) : null, _path$y || (_path$y = /*#__PURE__*/React.createElement("path", {
1774
+ }, title) : null, _path$z || (_path$z = /*#__PURE__*/React.createElement("path", {
1746
1775
  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",
1747
1776
  fill: "#010101"
1748
1777
  })), _path2$h || (_path2$h = /*#__PURE__*/React.createElement("path", {
@@ -1766,28 +1795,28 @@ function SvgSchomburgPositive(_ref) {
1766
1795
  })));
1767
1796
  }
1768
1797
 
1769
- var _path$z;
1798
+ var _path$A;
1770
1799
 
1771
- var _excluded$E = ["title", "titleId"];
1800
+ var _excluded$F = ["title", "titleId"];
1772
1801
 
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); }
1802
+ 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); }
1774
1803
 
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; }
1804
+ 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; }
1776
1805
 
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; }
1806
+ 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; }
1778
1807
 
1779
1808
  function SvgSearch(_ref) {
1780
1809
  var title = _ref.title,
1781
1810
  titleId = _ref.titleId,
1782
- props = _objectWithoutProperties$E(_ref, _excluded$E);
1811
+ props = _objectWithoutProperties$F(_ref, _excluded$F);
1783
1812
 
1784
- return /*#__PURE__*/React.createElement("svg", _extends$F({
1813
+ return /*#__PURE__*/React.createElement("svg", _extends$G({
1785
1814
  viewBox: "0 0 24 24",
1786
1815
  xmlns: "http://www.w3.org/2000/svg",
1787
1816
  "aria-labelledby": titleId
1788
1817
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1789
1818
  id: titleId
1790
- }, title) : null, _path$z || (_path$z = /*#__PURE__*/React.createElement("path", {
1819
+ }, title) : null, _path$A || (_path$A = /*#__PURE__*/React.createElement("path", {
1791
1820
  fillRule: "evenodd",
1792
1821
  clipRule: "evenodd",
1793
1822
  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"
@@ -1796,20 +1825,20 @@ function SvgSearch(_ref) {
1796
1825
 
1797
1826
  var _g$5, _defs$5;
1798
1827
 
1799
- var _excluded$F = ["title", "titleId"];
1828
+ var _excluded$G = ["title", "titleId"];
1800
1829
 
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); }
1830
+ 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); }
1802
1831
 
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; }
1832
+ 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; }
1804
1833
 
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; }
1834
+ 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; }
1806
1835
 
1807
1836
  function SvgSimplyeBlack(_ref) {
1808
1837
  var title = _ref.title,
1809
1838
  titleId = _ref.titleId,
1810
- props = _objectWithoutProperties$F(_ref, _excluded$F);
1839
+ props = _objectWithoutProperties$G(_ref, _excluded$G);
1811
1840
 
1812
- return /*#__PURE__*/React.createElement("svg", _extends$G({
1841
+ return /*#__PURE__*/React.createElement("svg", _extends$H({
1813
1842
  width: 512,
1814
1843
  height: 148,
1815
1844
  fill: "none",
@@ -1837,20 +1866,20 @@ function SvgSimplyeBlack(_ref) {
1837
1866
 
1838
1867
  var _g$6, _defs$6;
1839
1868
 
1840
- var _excluded$G = ["title", "titleId"];
1869
+ var _excluded$H = ["title", "titleId"];
1841
1870
 
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); }
1871
+ 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); }
1843
1872
 
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; }
1873
+ 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; }
1845
1874
 
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; }
1875
+ 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; }
1847
1876
 
1848
1877
  function SvgSimplyeColor(_ref) {
1849
1878
  var title = _ref.title,
1850
1879
  titleId = _ref.titleId,
1851
- props = _objectWithoutProperties$G(_ref, _excluded$G);
1880
+ props = _objectWithoutProperties$H(_ref, _excluded$H);
1852
1881
 
1853
- return /*#__PURE__*/React.createElement("svg", _extends$H({
1882
+ return /*#__PURE__*/React.createElement("svg", _extends$I({
1854
1883
  width: 682,
1855
1884
  height: 196,
1856
1885
  fill: "none",
@@ -1881,22 +1910,22 @@ function SvgSimplyeColor(_ref) {
1881
1910
  })))));
1882
1911
  }
1883
1912
 
1884
- var _path$A;
1913
+ var _path$B;
1885
1914
 
1886
- var _excluded$H = ["title", "titleId"];
1915
+ var _excluded$I = ["title", "titleId"];
1887
1916
 
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); }
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); }
1889
1918
 
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; }
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; }
1891
1920
 
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; }
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; }
1893
1922
 
1894
1923
  function SvgSnflNegative(_ref) {
1895
1924
  var title = _ref.title,
1896
1925
  titleId = _ref.titleId,
1897
- props = _objectWithoutProperties$H(_ref, _excluded$H);
1926
+ props = _objectWithoutProperties$I(_ref, _excluded$I);
1898
1927
 
1899
- return /*#__PURE__*/React.createElement("svg", _extends$I({
1928
+ return /*#__PURE__*/React.createElement("svg", _extends$J({
1900
1929
  width: 73,
1901
1930
  height: 99,
1902
1931
  fill: "none",
@@ -1904,28 +1933,28 @@ function SvgSnflNegative(_ref) {
1904
1933
  "aria-labelledby": titleId
1905
1934
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1906
1935
  id: titleId
1907
- }, title) : null, _path$A || (_path$A = /*#__PURE__*/React.createElement("path", {
1936
+ }, title) : null, _path$B || (_path$B = /*#__PURE__*/React.createElement("path", {
1908
1937
  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",
1909
1938
  fill: "#fff"
1910
1939
  })));
1911
1940
  }
1912
1941
 
1913
- var _path$B;
1942
+ var _path$C;
1914
1943
 
1915
- var _excluded$I = ["title", "titleId"];
1944
+ var _excluded$J = ["title", "titleId"];
1916
1945
 
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); }
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); }
1918
1947
 
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; }
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; }
1920
1949
 
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; }
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; }
1922
1951
 
1923
1952
  function SvgSnflPositive(_ref) {
1924
1953
  var title = _ref.title,
1925
1954
  titleId = _ref.titleId,
1926
- props = _objectWithoutProperties$I(_ref, _excluded$I);
1955
+ props = _objectWithoutProperties$J(_ref, _excluded$J);
1927
1956
 
1928
- return /*#__PURE__*/React.createElement("svg", _extends$J({
1957
+ return /*#__PURE__*/React.createElement("svg", _extends$K({
1929
1958
  width: 84,
1930
1959
  height: 111,
1931
1960
  fill: "none",
@@ -1933,63 +1962,63 @@ function SvgSnflPositive(_ref) {
1933
1962
  "aria-labelledby": titleId
1934
1963
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1935
1964
  id: titleId
1936
- }, title) : null, _path$B || (_path$B = /*#__PURE__*/React.createElement("path", {
1965
+ }, title) : null, _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
1937
1966
  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",
1938
1967
  fill: "#000"
1939
1968
  })));
1940
1969
  }
1941
1970
 
1942
- var _path$C;
1971
+ var _path$D;
1943
1972
 
1944
- var _excluded$J = ["title", "titleId"];
1973
+ var _excluded$K = ["title", "titleId"];
1945
1974
 
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); }
1975
+ 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); }
1947
1976
 
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; }
1977
+ 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; }
1949
1978
 
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; }
1979
+ 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; }
1951
1980
 
1952
1981
  function SvgSpeakerNotes(_ref) {
1953
1982
  var title = _ref.title,
1954
1983
  titleId = _ref.titleId,
1955
- props = _objectWithoutProperties$J(_ref, _excluded$J);
1984
+ props = _objectWithoutProperties$K(_ref, _excluded$K);
1956
1985
 
1957
- return /*#__PURE__*/React.createElement("svg", _extends$K({
1986
+ return /*#__PURE__*/React.createElement("svg", _extends$L({
1958
1987
  viewBox: "0 0 24 24",
1959
1988
  xmlns: "http://www.w3.org/2000/svg",
1960
1989
  "aria-labelledby": titleId
1961
1990
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1962
1991
  id: titleId
1963
- }, title) : null, _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
1992
+ }, title) : null, _path$D || (_path$D = /*#__PURE__*/React.createElement("path", {
1964
1993
  fillRule: "evenodd",
1965
1994
  clipRule: "evenodd",
1966
1995
  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"
1967
1996
  })));
1968
1997
  }
1969
1998
 
1970
- var _path$D, _path2$i;
1999
+ var _path$E, _path2$i;
1971
2000
 
1972
- var _excluded$K = ["title", "titleId"];
2001
+ var _excluded$L = ["title", "titleId"];
1973
2002
 
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); }
2003
+ 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); }
1975
2004
 
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; }
2005
+ 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; }
1977
2006
 
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; }
2007
+ 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; }
1979
2008
 
1980
2009
  function SvgUtilityAccountFilled(_ref) {
1981
2010
  var title = _ref.title,
1982
2011
  titleId = _ref.titleId,
1983
- props = _objectWithoutProperties$K(_ref, _excluded$K);
2012
+ props = _objectWithoutProperties$L(_ref, _excluded$L);
1984
2013
 
1985
- return /*#__PURE__*/React.createElement("svg", _extends$L({
2014
+ return /*#__PURE__*/React.createElement("svg", _extends$M({
1986
2015
  viewBox: "0 0 24 24",
1987
2016
  fill: "none",
1988
2017
  xmlns: "http://www.w3.org/2000/svg",
1989
2018
  "aria-labelledby": titleId
1990
2019
  }, props), title ? /*#__PURE__*/React.createElement("title", {
1991
2020
  id: titleId
1992
- }, title) : null, _path$D || (_path$D = /*#__PURE__*/React.createElement("path", {
2021
+ }, title) : null, _path$E || (_path$E = /*#__PURE__*/React.createElement("path", {
1993
2022
  clipRule: "evenodd",
1994
2023
  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"
1995
2024
  })), _path2$i || (_path2$i = /*#__PURE__*/React.createElement("path", {
@@ -1998,29 +2027,29 @@ function SvgUtilityAccountFilled(_ref) {
1998
2027
  })));
1999
2028
  }
2000
2029
 
2001
- var _path$E, _path2$j;
2030
+ var _path$F, _path2$j;
2002
2031
 
2003
- var _excluded$L = ["title", "titleId"];
2032
+ var _excluded$M = ["title", "titleId"];
2004
2033
 
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); }
2034
+ 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); }
2006
2035
 
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; }
2036
+ 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; }
2008
2037
 
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; }
2038
+ 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; }
2010
2039
 
2011
2040
  function SvgUtilityAccountUnfilled(_ref) {
2012
2041
  var title = _ref.title,
2013
2042
  titleId = _ref.titleId,
2014
- props = _objectWithoutProperties$L(_ref, _excluded$L);
2043
+ props = _objectWithoutProperties$M(_ref, _excluded$M);
2015
2044
 
2016
- return /*#__PURE__*/React.createElement("svg", _extends$M({
2045
+ return /*#__PURE__*/React.createElement("svg", _extends$N({
2017
2046
  viewBox: "0 0 24 24",
2018
2047
  fill: "none",
2019
2048
  xmlns: "http://www.w3.org/2000/svg",
2020
2049
  "aria-labelledby": titleId
2021
2050
  }, props), title ? /*#__PURE__*/React.createElement("title", {
2022
2051
  id: titleId
2023
- }, title) : null, _path$E || (_path$E = /*#__PURE__*/React.createElement("path", {
2052
+ }, title) : null, _path$F || (_path$F = /*#__PURE__*/React.createElement("path", {
2024
2053
  fillRule: "evenodd",
2025
2054
  clipRule: "evenodd",
2026
2055
  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",
@@ -2035,28 +2064,28 @@ function SvgUtilityAccountUnfilled(_ref) {
2035
2064
  })));
2036
2065
  }
2037
2066
 
2038
- var _path$F;
2067
+ var _path$G;
2039
2068
 
2040
- var _excluded$M = ["title", "titleId"];
2069
+ var _excluded$N = ["title", "titleId"];
2041
2070
 
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); }
2071
+ 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); }
2043
2072
 
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; }
2073
+ 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; }
2045
2074
 
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; }
2075
+ 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; }
2047
2076
 
2048
2077
  function SvgUtilityHamburger(_ref) {
2049
2078
  var title = _ref.title,
2050
2079
  titleId = _ref.titleId,
2051
- props = _objectWithoutProperties$M(_ref, _excluded$M);
2080
+ props = _objectWithoutProperties$N(_ref, _excluded$N);
2052
2081
 
2053
- return /*#__PURE__*/React.createElement("svg", _extends$N({
2082
+ return /*#__PURE__*/React.createElement("svg", _extends$O({
2054
2083
  viewBox: "0 0 24 24",
2055
2084
  xmlns: "http://www.w3.org/2000/svg",
2056
2085
  "aria-labelledby": titleId
2057
2086
  }, props), title ? /*#__PURE__*/React.createElement("title", {
2058
2087
  id: titleId
2059
- }, title) : null, _path$F || (_path$F = /*#__PURE__*/React.createElement("path", {
2088
+ }, title) : null, _path$G || (_path$G = /*#__PURE__*/React.createElement("path", {
2060
2089
  fillRule: "evenodd",
2061
2090
  clipRule: "evenodd",
2062
2091
  stroke: "#000",
@@ -2074,6 +2103,7 @@ var iconSvgs = {
2074
2103
  action_help_default: SvgActionHelpDefault,
2075
2104
  action_help_outline: SvgActionHelpOutline,
2076
2105
  action_launch: SvgActionLaunch,
2106
+ alert_notification_important: SvgAlertNotificationImportant,
2077
2107
  arrow: SvgArrow,
2078
2108
  brooklyn: SvgBrooklyn,
2079
2109
  check: SvgCheck,
@@ -2273,6 +2303,7 @@ function Accordion(props) {
2273
2303
  }
2274
2304
 
2275
2305
  (function (ColorVariants) {
2306
+ ColorVariants["Blogs"] = "blogs";
2276
2307
  ColorVariants["BooksAndMore"] = "booksAndMore";
2277
2308
  ColorVariants["Locations"] = "locations";
2278
2309
  ColorVariants["Research"] = "research";
@@ -2544,6 +2575,8 @@ function Heading(props) {
2544
2575
  ImageSizes["Large"] = "large";
2545
2576
  ImageSizes["Medium"] = "medium";
2546
2577
  ImageSizes["Small"] = "small";
2578
+ ImageSizes["ExtraSmall"] = "xsmall";
2579
+ ImageSizes["ExtraExtraSmall"] = "xxsmall";
2547
2580
  })(exports.ImageSizes || (exports.ImageSizes = {}));
2548
2581
 
2549
2582
  (function (ImageTypes) {
@@ -2647,14 +2680,15 @@ function CardImage(props) {
2647
2680
  imageSize: imageSize,
2648
2681
  layout: layout
2649
2682
  });
2650
- return React.createElement(Image, {
2683
+ return React.createElement(react.Box, {
2684
+ __css: styles
2685
+ }, React.createElement(Image, {
2651
2686
  alt: alt,
2652
2687
  component: component,
2653
2688
  imageAspectRatio: imageAspectRatio,
2654
2689
  imageSize: imageSize,
2655
- src: src,
2656
- additionalStyles: styles
2657
- });
2690
+ src: src
2691
+ }));
2658
2692
  } // CardHeading child-component
2659
2693
 
2660
2694
 
@@ -2898,7 +2932,7 @@ function HelperErrorText(props) {
2898
2932
  }, children);
2899
2933
  }
2900
2934
 
2901
- var _excluded$N = ["isIndeterminate", "isChecked"];
2935
+ var _excluded$O = ["isIndeterminate", "isChecked"];
2902
2936
  var onChangeDefault = function onChangeDefault() {
2903
2937
  return;
2904
2938
  };
@@ -2907,7 +2941,7 @@ function CheckboxIcon(props) {
2907
2941
  // We don't need the `isIndeterminate` or `isChecked` props but it
2908
2942
  // causes rendering issues on the SVG element, so we remove them
2909
2943
  // before passing all the props to the `Icon` component.
2910
- var rest = _objectWithoutPropertiesLoose(props, _excluded$N);
2944
+ var rest = _objectWithoutPropertiesLoose(props, _excluded$O);
2911
2945
 
2912
2946
  return React.createElement(react.Icon, Object.assign({
2913
2947
  viewBox: "0 0 24 24"
@@ -3002,6 +3036,7 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function (props, ref) {
3002
3036
  *
3003
3037
  * Chakra Number Value | Chakra Name value | DS Variable
3004
3038
  * ------------------- | ----------------- | -----------------
3039
+ * 0.5 | xxxs | --nypl-space-xxxs
3005
3040
  * 1 | xxs | --nypl-space-xxs
3006
3041
  * 2 | xs | --nypl-space-xs
3007
3042
  * 4 | s | --nypl-space-s
@@ -3014,6 +3049,8 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function (props, ref) {
3014
3049
  var spacing = {
3015
3050
  px: "1px",
3016
3051
  0: "0",
3052
+ // --nypl-space-xxxs = 2px
3053
+ xxxs: "0.125rem",
3017
3054
  0.5: "0.125rem",
3018
3055
  // --nypl-space-xxs = 4px
3019
3056
  xxs: "0.25rem",
@@ -4099,11 +4136,20 @@ var Accordion$1 = {
4099
4136
  };
4100
4137
 
4101
4138
  // Variant styling
4139
+ var blogs = {
4140
+ bg: "section.blogs.secondary",
4141
+ color: "ui.black",
4142
+ a: {
4143
+ _hover: {
4144
+ color: "ui.gray.xdark"
4145
+ }
4146
+ }
4147
+ };
4102
4148
  var booksAndMore = {
4103
4149
  bg: "section.books-and-more.secondary"
4104
4150
  };
4105
4151
  var locations = {
4106
- bg: "section.locations.secondary"
4152
+ bg: "section.locations.primary"
4107
4153
  };
4108
4154
  var research = {
4109
4155
  bg: "section.research.secondary"
@@ -4187,6 +4233,7 @@ var Breadcrumb = {
4187
4233
  },
4188
4234
  // Available variants:
4189
4235
  variants: {
4236
+ blogs: blogs,
4190
4237
  booksAndMore: booksAndMore,
4191
4238
  locations: locations,
4192
4239
  research: research,
@@ -4328,6 +4375,18 @@ var Button$1 = {
4328
4375
  };
4329
4376
 
4330
4377
  var imageSizes = {
4378
+ xxsmall: {
4379
+ flex: {
4380
+ base: "0 0 100%",
4381
+ md: "0 0 64px"
4382
+ },
4383
+ width: "100%"
4384
+ },
4385
+ xsmall: {
4386
+ flex: {
4387
+ md: "0 0 96px"
4388
+ }
4389
+ },
4331
4390
  small: {
4332
4391
  flex: {
4333
4392
  md: "0 0 165px"
@@ -4493,11 +4552,6 @@ var CardImage$1 = {
4493
4552
  // These sizes are only for the "row" layout.
4494
4553
  var size = imageSizes[imageSize] || {};
4495
4554
  var layoutStyles = layout === "row" ? _extends({
4496
- display: "flex",
4497
- flexFlow: {
4498
- base: "column nowrap",
4499
- md: "row"
4500
- },
4501
4555
  flex: {
4502
4556
  md: "0 0 225px"
4503
4557
  },
@@ -4510,9 +4564,14 @@ var CardImage$1 = {
4510
4564
  margin: {
4511
4565
  base: imageAtEnd ? "var(--nypl-space-m) 0 0" : null,
4512
4566
  md: imageAtEnd ? "0 0 0 var(--nypl-space-m)" : "0 var(--nypl-space-m) 0 0"
4567
+ },
4568
+ width: {
4569
+ base: "100%",
4570
+ md: null
4513
4571
  }
4514
4572
  }, size) : {
4515
- marginBottom: "xs"
4573
+ marginBottom: "xs",
4574
+ width: "100%"
4516
4575
  };
4517
4576
  var imageAtEndStyles = imageAtEnd ? {
4518
4577
  marginBottom: "0",
@@ -4602,7 +4661,7 @@ var checkboxRadioHelperStyle = /*#__PURE__*/_extends({}, helperTextMargin, {
4602
4661
  var labelLegendText = {
4603
4662
  alignItems: "baseline",
4604
4663
  width: "100%",
4605
- marginBottom: "s",
4664
+ marginBottom: "xs",
4606
4665
  fontSize: "14px",
4607
4666
  fontWeight: "medium",
4608
4667
  display: "flex",
@@ -4739,6 +4798,12 @@ var imageSizes$1 = {
4739
4798
  "default": {
4740
4799
  maxWidth: "100%"
4741
4800
  },
4801
+ xxsmall: /*#__PURE__*/_extends({}, sideMarginsAuto, {
4802
+ maxWidth: "64px"
4803
+ }),
4804
+ xsmall: /*#__PURE__*/_extends({}, sideMarginsAuto, {
4805
+ maxWidth: "96px"
4806
+ }),
4742
4807
  small: /*#__PURE__*/_extends({}, sideMarginsAuto, {
4743
4808
  maxWidth: "165px"
4744
4809
  }),
@@ -5276,10 +5341,10 @@ var svgBase = {
5276
5341
  var align = {
5277
5342
  none: {},
5278
5343
  left: {
5279
- marginRight: "xs"
5344
+ marginRight: "xxs"
5280
5345
  },
5281
5346
  right: {
5282
- marginLeft: "xs"
5347
+ marginLeft: "xxs"
5283
5348
  }
5284
5349
  };
5285
5350
  var iconRotation = {
@@ -5555,14 +5620,16 @@ var NotificationContent = {
5555
5620
  parts: ["content"],
5556
5621
  baseStyle: function baseStyle(_ref2) {
5557
5622
  var alignText = _ref2.alignText,
5623
+ icon = _ref2.icon,
5558
5624
  notificationType = _ref2.notificationType;
5559
5625
  return {
5560
5626
  display: "flex",
5561
5627
  justifyContent: "center",
5562
5628
  content: {
5563
- width: "100%",
5629
+ color: notificationType === exports.NotificationTypes.Warning ? "brand.primary" : "currentColor",
5630
+ marginTop: icon ? "xxxs" : "0",
5564
5631
  paddingLeft: alignText ? "calc(var(--nypl-space-m) + var(--nypl-space-s))" : null,
5565
- color: notificationType === exports.NotificationTypes.Warning ? "brand.primary" : "currentColor"
5632
+ width: "100%"
5566
5633
  }
5567
5634
  };
5568
5635
  }
@@ -5571,6 +5638,7 @@ var NotificationHeading = {
5571
5638
  parts: ["heading"],
5572
5639
  baseStyle: function baseStyle(_ref3) {
5573
5640
  var centered = _ref3.centered,
5641
+ icon = _ref3.icon,
5574
5642
  notificationType = _ref3.notificationType;
5575
5643
  var color = "ui.black";
5576
5644
 
@@ -5586,6 +5654,7 @@ var NotificationHeading = {
5586
5654
  justifyContent: centered ? "center" : null,
5587
5655
  heading: {
5588
5656
  marginBottom: "0",
5657
+ marginTop: icon ? "xxxs" : "0",
5589
5658
  color: color
5590
5659
  }
5591
5660
  };
@@ -5616,19 +5685,15 @@ var Pagination = {
5616
5685
  }
5617
5686
  };
5618
5687
 
5619
- var ProgressIndicatorSizes;
5620
-
5621
5688
  (function (ProgressIndicatorSizes) {
5622
5689
  ProgressIndicatorSizes["Default"] = "default";
5623
5690
  ProgressIndicatorSizes["Small"] = "small";
5624
- })(ProgressIndicatorSizes || (ProgressIndicatorSizes = {}));
5625
-
5626
- var ProgressIndicatorTypes;
5691
+ })(exports.ProgressIndicatorSizes || (exports.ProgressIndicatorSizes = {}));
5627
5692
 
5628
5693
  (function (ProgressIndicatorTypes) {
5629
5694
  ProgressIndicatorTypes["Circular"] = "circular";
5630
5695
  ProgressIndicatorTypes["Linear"] = "linear";
5631
- })(ProgressIndicatorTypes || (ProgressIndicatorTypes = {}));
5696
+ })(exports.ProgressIndicatorTypes || (exports.ProgressIndicatorTypes = {}));
5632
5697
 
5633
5698
  var ProgressIndicator = {
5634
5699
  parts: ["circular", "circularLabel", "linear", "linearContainer", "linearPercentage"],
@@ -5641,8 +5706,8 @@ var ProgressIndicator = {
5641
5706
  // Note: we have to target the SVG HTMl elements in order
5642
5707
  // to override the default styles.
5643
5708
  svg: {
5644
- height: size === ProgressIndicatorSizes.Small ? "24px" : "48px",
5645
- width: size === ProgressIndicatorSizes.Small ? "24px" : "48px",
5709
+ height: size === exports.ProgressIndicatorSizes.Small ? "24px" : "48px",
5710
+ width: size === exports.ProgressIndicatorSizes.Small ? "24px" : "48px",
5646
5711
  display: "block",
5647
5712
  circle: {
5648
5713
  _first: {
@@ -5670,7 +5735,7 @@ var ProgressIndicator = {
5670
5735
  bg: darkMode ? "ui.gray.dark" : "ui.gray.light-cool",
5671
5736
  height: {
5672
5737
  base: "4px",
5673
- md: size === ProgressIndicatorSizes.Small ? "4px" : "8px"
5738
+ md: size === exports.ProgressIndicatorSizes.Small ? "4px" : "8px"
5674
5739
  }
5675
5740
  },
5676
5741
  linearContainer: {
@@ -6380,6 +6445,76 @@ var TextInput$1 = {
6380
6445
  }
6381
6446
  };
6382
6447
 
6448
+ var baseStyle$3 = {
6449
+ label: {
6450
+ display: "flex",
6451
+ alignItems: "center",
6452
+ width: "fit-content"
6453
+ },
6454
+ helper: /*#__PURE__*/_extends({}, helperTextMargin, {
6455
+ marginLeft: "xs"
6456
+ })
6457
+ };
6458
+ var Switch = {
6459
+ baseStyle: {
6460
+ opacity: 0.4,
6461
+ track: {
6462
+ p: "4px",
6463
+ border: "1px solid",
6464
+ borderColor: "ui.gray.medium",
6465
+ _checked: {
6466
+ borderColor: "ui.link.primary",
6467
+ bg: "ui.link.primary",
6468
+ opacity: 1
6469
+ },
6470
+ _invalid: {
6471
+ borderColor: "ui.error.primary",
6472
+ bg: "inherit",
6473
+ "> span": {
6474
+ bg: "ui.error.primary"
6475
+ }
6476
+ },
6477
+ _disabled: {
6478
+ borderColor: "ui.gray.medium",
6479
+ bg: "ui.gray.medium",
6480
+ _checked: {
6481
+ opacity: 0.4
6482
+ }
6483
+ },
6484
+ _focus: {
6485
+ outline: "2px solid",
6486
+ outlineColor: "ui.focus",
6487
+ outlineOffset: "2px",
6488
+ zIndex: "9999"
6489
+ }
6490
+ },
6491
+ label: {
6492
+ fontSize: -1,
6493
+ marginLeft: "xs"
6494
+ },
6495
+ thumb: {
6496
+ _disabled: {
6497
+ bg: "ui.error.primary"
6498
+ }
6499
+ }
6500
+ },
6501
+ defaultProps: {
6502
+ colorScheme: "white"
6503
+ }
6504
+ };
6505
+ var Toggle = {
6506
+ parts: ["helper"],
6507
+ baseStyle: baseStyle$3,
6508
+ // Default values
6509
+ defaultProps: {
6510
+ size: "lg"
6511
+ }
6512
+ };
6513
+ var Toggle$1 = {
6514
+ Toggle: Toggle,
6515
+ Switch: Switch
6516
+ };
6517
+
6383
6518
  var fourByThree = {
6384
6519
  inside: {
6385
6520
  paddingBottom: "75%"
@@ -6492,7 +6627,8 @@ var theme = /*#__PURE__*/react.extendTheme( /*#__PURE__*/_extends({
6492
6627
  Tabs: CustomTabs
6493
6628
  }, TemplateStyles, {
6494
6629
  Text: Text,
6495
- TextInput: TextInput$1,
6630
+ TextInput: TextInput$1
6631
+ }, Toggle$1, {
6496
6632
  VideoPlayer: VideoPlayer
6497
6633
  }),
6498
6634
  // Use `cssVarPrefix` to set the prefix used on the CSS vars produced by
@@ -6714,6 +6850,7 @@ Input.displayName = "Input";
6714
6850
  LinkTypes["Backwards"] = "backwards";
6715
6851
  LinkTypes["Button"] = "button";
6716
6852
  LinkTypes["Default"] = "default";
6853
+ LinkTypes["External"] = "external";
6717
6854
  LinkTypes["Forwards"] = "forwards";
6718
6855
  })(exports.LinkTypes || (exports.LinkTypes = {}));
6719
6856
 
@@ -6722,7 +6859,7 @@ Input.displayName = "Input";
6722
6859
  * on the `Backwards` or `Forwards` `LinkTypes` type.
6723
6860
  */
6724
6861
 
6725
- function getWithDirectionIcon(children, type) {
6862
+ function getWithDirectionIcon(children, type, linkId) {
6726
6863
  var iconRotation;
6727
6864
  var iconAlign;
6728
6865
  var icon = null; // An icon needs a position in order for it to be created and
@@ -6736,14 +6873,27 @@ function getWithDirectionIcon(children, type) {
6736
6873
  iconAlign = exports.IconAlign.Right;
6737
6874
  }
6738
6875
 
6876
+ var iconId = linkId + "-icon";
6739
6877
  icon = React.createElement(Icon, {
6740
- name: exports.IconNames.Arrow,
6741
6878
  align: iconAlign,
6879
+ className: "more-link",
6742
6880
  iconRotation: iconRotation,
6743
- className: "more-link"
6881
+ id: iconId,
6882
+ name: exports.IconNames.Arrow
6744
6883
  });
6745
6884
  return React.createElement(React.Fragment, null, type === exports.LinkTypes.Backwards && icon, children, type === exports.LinkTypes.Forwards && icon);
6746
6885
  }
6886
+
6887
+ function getExternalIcon(children, linkId) {
6888
+ var iconId = linkId + "-icon";
6889
+ var icon = React.createElement(Icon, {
6890
+ align: exports.IconAlign.Right,
6891
+ className: "more-link",
6892
+ id: iconId,
6893
+ name: exports.IconNames.ActionLaunch
6894
+ });
6895
+ return React.createElement(React.Fragment, null, children, icon);
6896
+ }
6747
6897
  /**
6748
6898
  * A component that uses an `href` prop or a child anchor element, to create
6749
6899
  * an anchor element with added styling and conventions.
@@ -6775,7 +6925,7 @@ var Link$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
6775
6925
  throw new Error("Link needs prop 'href'");
6776
6926
  }
6777
6927
 
6778
- if (type === exports.LinkTypes.Action || type === exports.LinkTypes.Forwards || type === exports.LinkTypes.Backwards) {
6928
+ if (type === exports.LinkTypes.Action || type === exports.LinkTypes.Forwards || type === exports.LinkTypes.Backwards || type === exports.LinkTypes.External) {
6779
6929
  variant = "moreLink";
6780
6930
  } else if (type === exports.LinkTypes.Button) {
6781
6931
  variant = "button";
@@ -6783,10 +6933,13 @@ var Link$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
6783
6933
 
6784
6934
  var style = react.useStyleConfig("Link", {
6785
6935
  variant: variant
6786
- }); // Render with specific direction arrows only if the type
6787
- // is Forwards or Backwards.
6936
+ }); // Render with specific direction arrows if the type is
6937
+ // Forwards or Backwards. Or render with the launch icon
6938
+ // if the type is External. Otherwise, do not add an icon.
6788
6939
 
6789
- var newChildren = type === exports.LinkTypes.Forwards || type === exports.LinkTypes.Backwards ? getWithDirectionIcon(children, type) : children;
6940
+ var newChildren = (type === exports.LinkTypes.Forwards || type === exports.LinkTypes.Backwards) && getWithDirectionIcon(children, type, id) || type === exports.LinkTypes.External && getExternalIcon(children, id) || children;
6941
+ var rel = type === exports.LinkTypes.External ? "nofollow" : null;
6942
+ var target = type === exports.LinkTypes.External ? "_blank" : null;
6790
6943
 
6791
6944
  if (!href) {
6792
6945
  // React Types error makes this fail:
@@ -6801,13 +6954,17 @@ var Link$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
6801
6954
  return React.cloneElement(childrenToClone, _extends({
6802
6955
  className: className
6803
6956
  }, linkProps, childProps, {
6804
- ref: ref
6957
+ ref: ref,
6958
+ rel: rel,
6959
+ target: target
6805
6960
  }), [childrenToClone.props.children]);
6806
6961
  } else {
6807
6962
  return React.createElement(react.Box, Object.assign({
6808
6963
  as: "a",
6809
6964
  className: className,
6810
- ref: ref
6965
+ ref: ref,
6966
+ rel: rel,
6967
+ target: target
6811
6968
  }, linkProps, {
6812
6969
  __css: _extends({}, style, additionalStyles)
6813
6970
  }), newChildren);
@@ -6995,6 +7152,7 @@ function NotificationHeading$1(props) {
6995
7152
  notificationType = props.notificationType;
6996
7153
  var styles = react.useMultiStyleConfig("NotificationHeading", {
6997
7154
  centered: centered,
7155
+ icon: icon,
6998
7156
  notificationType: notificationType
6999
7157
  });
7000
7158
  return React__default.createElement(react.Box, {
@@ -7016,6 +7174,7 @@ function NotificationContent$1(props) {
7016
7174
  notificationType = props.notificationType;
7017
7175
  var styles = react.useMultiStyleConfig("NotificationContent", {
7018
7176
  alignText: alignText,
7177
+ icon: icon,
7019
7178
  notificationType: notificationType
7020
7179
  });
7021
7180
  return React__default.createElement(react.Box, {
@@ -7043,7 +7202,9 @@ function Notification$1(props) {
7043
7202
  notificationContent = props.notificationContent,
7044
7203
  notificationHeading = props.notificationHeading,
7045
7204
  _props$notificationTy = props.notificationType,
7046
- notificationType = _props$notificationTy === void 0 ? exports.NotificationTypes.Standard : _props$notificationTy;
7205
+ notificationType = _props$notificationTy === void 0 ? exports.NotificationTypes.Standard : _props$notificationTy,
7206
+ _props$showIcon = props.showIcon,
7207
+ showIcon = _props$showIcon === void 0 ? true : _props$showIcon;
7047
7208
 
7048
7209
  var _useState = React.useState(true),
7049
7210
  isOpen = _useState[0],
@@ -7056,7 +7217,8 @@ function Notification$1(props) {
7056
7217
  var styles = react.useMultiStyleConfig("Notification", {
7057
7218
  centered: centered,
7058
7219
  noMargin: noMargin,
7059
- notificationType: notificationType
7220
+ notificationType: notificationType,
7221
+ showIcon: showIcon
7060
7222
  });
7061
7223
 
7062
7224
  var iconElement = function iconElement() {
@@ -7066,7 +7228,12 @@ function Notification$1(props) {
7066
7228
  decorative: false,
7067
7229
  size: exports.IconSizes.Large,
7068
7230
  additionalStyles: styles.icon
7069
- }; // If a custom icon is passed, add specific `Notification` styles.
7231
+ }; // If the icon should not display, return null.
7232
+
7233
+ if (!showIcon) {
7234
+ return null;
7235
+ } // If a custom icon is passed, add specific `Notification` styles.
7236
+
7070
7237
 
7071
7238
  if (icon) return React__default.cloneElement(icon, _extends({
7072
7239
  id: id + "-custom-notification-icon"
@@ -7074,13 +7241,16 @@ function Notification$1(props) {
7074
7241
  var iconProps = (_iconProps = {}, _iconProps[exports.NotificationTypes.Announcement] = {
7075
7242
  name: exports.IconNames.SpeakerNotes,
7076
7243
  color: exports.IconColors.SectionResearchSecondary
7244
+ }, _iconProps[exports.NotificationTypes.Standard] = {
7245
+ name: exports.IconNames.AlertNotificationImportant,
7246
+ color: exports.IconColors.UiBlack
7077
7247
  }, _iconProps[exports.NotificationTypes.Warning] = {
7078
7248
  name: exports.IconNames.ErrorFilled,
7079
7249
  color: exports.IconColors.BrandPrimary
7080
7250
  }, _iconProps);
7081
- return notificationType !== exports.NotificationTypes.Standard ? React__default.createElement(Icon, Object.assign({
7251
+ return React__default.createElement(Icon, Object.assign({
7082
7252
  id: id + "-notification-icon"
7083
- }, baseIconProps, iconProps[notificationType])) : null;
7253
+ }, baseIconProps, iconProps[notificationType]));
7084
7254
  };
7085
7255
 
7086
7256
  var dismissibleButton = dismissible && React__default.createElement(Button, {
@@ -7100,7 +7270,7 @@ function Notification$1(props) {
7100
7270
  notificationType: notificationType
7101
7271
  }, notificationHeading); // Specific alignment styles for the content.
7102
7272
 
7103
- var alignText = childHeading && (!!icon || notificationType !== exports.NotificationTypes.Standard && !centered);
7273
+ var alignText = childHeading && showIcon && (!!icon || !centered);
7104
7274
  var childContent = React__default.createElement(NotificationContent$1, {
7105
7275
  alignText: alignText,
7106
7276
  icon: !childHeading ? iconElem : null,
@@ -7312,6 +7482,88 @@ var Pagination$1 = function Pagination(props) {
7312
7482
  }, previousLiLink, getPaginationNumbers(currentPage), nextLiLink));
7313
7483
  };
7314
7484
 
7485
+ /**
7486
+ * A component that displays a progress status for any task that takes a long
7487
+ * time to complete or consists of multiple steps. Examples include downloading,
7488
+ * uploading, or processing.
7489
+ */
7490
+
7491
+ var ProgressIndicator$1 = function ProgressIndicator(props) {
7492
+ var _props$darkMode = props.darkMode,
7493
+ darkMode = _props$darkMode === void 0 ? false : _props$darkMode,
7494
+ _props$id = props.id,
7495
+ id = _props$id === void 0 ? generateUUID() : _props$id,
7496
+ _props$indicatorType = props.indicatorType,
7497
+ indicatorType = _props$indicatorType === void 0 ? exports.ProgressIndicatorTypes.Linear : _props$indicatorType,
7498
+ _props$isIndeterminat = props.isIndeterminate,
7499
+ isIndeterminate = _props$isIndeterminat === void 0 ? false : _props$isIndeterminat,
7500
+ labelText = props.labelText,
7501
+ _props$showLabel = props.showLabel,
7502
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
7503
+ _props$size = props.size,
7504
+ size = _props$size === void 0 ? exports.ProgressIndicatorSizes.Default : _props$size,
7505
+ _props$value = props.value,
7506
+ value = _props$value === void 0 ? 0 : _props$value;
7507
+ var styles = react.useMultiStyleConfig("ProgressIndicator", {
7508
+ darkMode: darkMode,
7509
+ size: size
7510
+ });
7511
+ var finalValue = value;
7512
+
7513
+ if (finalValue < 0 || finalValue > 100) {
7514
+ console.warn("ProgressIndicator: pass in a `value` between 0 and 100. Defaulting to 0.");
7515
+ finalValue = 0;
7516
+ }
7517
+
7518
+ var progressProps = {
7519
+ id: id,
7520
+ // If the label is visually shown, associate it with the progress indicator.
7521
+ // Otherwise, the `aria-label` will be added.
7522
+ "aria-label": showLabel ? null : labelText,
7523
+ "aria-labelledby": showLabel ? id + "-label" : null,
7524
+ // If `isIndeterminate` is true, then it overrides the `value` prop.
7525
+ isIndeterminate: isIndeterminate || null,
7526
+ value: isIndeterminate ? null : finalValue
7527
+ };
7528
+
7529
+ var progressComponent = function progressComponent(indicatorType) {
7530
+ // Only display the percentage text for the default size, not in the
7531
+ // indeterminate state, and when `showLabel` is true.
7532
+ if (indicatorType === exports.ProgressIndicatorTypes.Circular) {
7533
+ // For the small size, since the label won't be visible, we need to add
7534
+ // it to the parent component's `aria-label` attribute.
7535
+ if (size === exports.ProgressIndicatorSizes.Small) {
7536
+ progressProps["aria-label"] = labelText;
7537
+ }
7538
+
7539
+ return React__default.createElement(react.Box, {
7540
+ __css: styles.circularContainer
7541
+ }, React__default.createElement(react.CircularProgress, Object.assign({}, progressProps, {
7542
+ sx: styles.circular
7543
+ }), showLabel && !isIndeterminate && size !== exports.ProgressIndicatorSizes.Small && React__default.createElement(react.CircularProgressLabel, null, finalValue, "%")), showLabel && size !== exports.ProgressIndicatorSizes.Small && React__default.createElement(Label, {
7544
+ id: id + "-label",
7545
+ htmlFor: id
7546
+ }, labelText));
7547
+ } // The Linear progress indicator is the default.
7548
+
7549
+
7550
+ return React__default.createElement(React__default.Fragment, null, showLabel && React__default.createElement(Label, {
7551
+ id: id + "-label",
7552
+ htmlFor: id
7553
+ }, labelText), React__default.createElement(react.Box, {
7554
+ __css: styles.linearContainer
7555
+ }, React__default.createElement(react.Progress, Object.assign({}, progressProps, {
7556
+ sx: styles.linear
7557
+ })), showLabel && !isIndeterminate && React__default.createElement(react.Box, {
7558
+ __css: styles.linearPercentage
7559
+ }, finalValue, "%")));
7560
+ };
7561
+
7562
+ return React__default.createElement(react.Box, {
7563
+ __css: styles
7564
+ }, progressComponent(indicatorType));
7565
+ };
7566
+
7315
7567
  var Radio$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
7316
7568
  var className = props.className,
7317
7569
  helperText = props.helperText,
@@ -7495,6 +7747,7 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
7495
7747
  labelText = props.labelText,
7496
7748
  name = props.name,
7497
7749
  onChange = props.onChange,
7750
+ placeholder = props.placeholder,
7498
7751
  _props$showHelperInva = props.showHelperInvalidText,
7499
7752
  showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
7500
7753
  _props$showLabel = props.showLabel,
@@ -7503,7 +7756,8 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
7503
7756
  showOptReqLabel = _props$showOptReqLabe === void 0 ? true : _props$showOptReqLabe,
7504
7757
  _props$type = props.type,
7505
7758
  type = _props$type === void 0 ? SelectTypes.Default : _props$type,
7506
- value = props.value;
7759
+ _props$value = props.value,
7760
+ value = _props$value === void 0 ? "" : _props$value;
7507
7761
  var ariaAttributes = {};
7508
7762
  var optReqFlag = isRequired ? "Required" : "Optional";
7509
7763
  var styles = react.useMultiStyleConfig("CustomSelect", {
@@ -7513,7 +7767,7 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
7513
7767
  var footnote = isInvalid ? finalInvalidText : helperText; // To control the `Select` component, both `onChange` and `value`
7514
7768
  // must be passed.
7515
7769
 
7516
- var controlledProps = onChange && value ? {
7770
+ var controlledProps = onChange ? {
7517
7771
  onChange: onChange,
7518
7772
  value: value
7519
7773
  } : {};
@@ -7546,6 +7800,7 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
7546
7800
  isDisabled: isDisabled,
7547
7801
  isInvalid: isInvalid,
7548
7802
  name: name,
7803
+ placeholder: placeholder,
7549
7804
  ref: ref
7550
7805
  }, controlledProps, ariaAttributes, {
7551
7806
  icon: React__default.createElement(Icon, {
@@ -7602,7 +7857,8 @@ function SearchBar$1(props) {
7602
7857
  var helperErrorTextID = generateUUID();
7603
7858
  var ariaDescribedby = helperErrorTextID;
7604
7859
  var footnote = isInvalid ? invalidText : helperErrorText;
7605
- var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText; // Render the `Select` component.
7860
+ var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText;
7861
+ var textInputPlaceholder = (textInputProps == null ? void 0 : textInputProps.placeholder) + " " + (isRequired ? "(Required)" : ""); // Render the `Select` component.
7606
7862
 
7607
7863
  var selectElem = selectProps && React.createElement(Select$1, Object.assign({
7608
7864
  id: generateUUID(),
@@ -7619,7 +7875,7 @@ function SearchBar$1(props) {
7619
7875
  var textInputNative = textInputProps && React.createElement(TextInput, Object.assign({
7620
7876
  id: generateUUID(),
7621
7877
  labelText: textInputProps == null ? void 0 : textInputProps.labelText,
7622
- placeholder: textInputProps == null ? void 0 : textInputProps.placeholder,
7878
+ placeholder: textInputPlaceholder,
7623
7879
  onChange: textInputProps == null ? void 0 : textInputProps.onChange,
7624
7880
  name: textInputProps == null ? void 0 : textInputProps.name,
7625
7881
  type: exports.TextInputTypes.text,
@@ -7759,6 +8015,229 @@ function SkeletonLoader$1(props) {
7759
8015
  })))));
7760
8016
  }
7761
8017
 
8018
+ /**
8019
+ * The `Slider` component renders a singular value slider or a range slider
8020
+ * with a min and max value. The value(s) can be updated through the slider
8021
+ * thumb(s) or through the text input(s) elements.
8022
+ */
8023
+
8024
+ function Slider(props) {
8025
+ var className = props.className,
8026
+ _props$defaultValue = props.defaultValue,
8027
+ defaultValue = _props$defaultValue === void 0 ? 0 : _props$defaultValue,
8028
+ helperText = props.helperText,
8029
+ _props$id = props.id,
8030
+ id = _props$id === void 0 ? generateUUID() : _props$id,
8031
+ invalidText = props.invalidText,
8032
+ _props$isDisabled = props.isDisabled,
8033
+ isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
8034
+ _props$isInvalid = props.isInvalid,
8035
+ isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
8036
+ _props$isRangeSlider = props.isRangeSlider,
8037
+ isRangeSlider = _props$isRangeSlider === void 0 ? false : _props$isRangeSlider,
8038
+ _props$isRequired = props.isRequired,
8039
+ isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
8040
+ labelText = props.labelText,
8041
+ _props$max = props.max,
8042
+ max = _props$max === void 0 ? 100 : _props$max,
8043
+ _props$min = props.min,
8044
+ min = _props$min === void 0 ? 0 : _props$min,
8045
+ name = props.name,
8046
+ _onChange = props.onChange,
8047
+ _props$optReqFlag = props.optReqFlag,
8048
+ optReqFlag = _props$optReqFlag === void 0 ? true : _props$optReqFlag,
8049
+ _props$showBoxes = props.showBoxes,
8050
+ showBoxes = _props$showBoxes === void 0 ? true : _props$showBoxes,
8051
+ _props$showHelperInva = props.showHelperInvalidText,
8052
+ showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
8053
+ _props$showLabel = props.showLabel,
8054
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
8055
+ _props$showValues = props.showValues,
8056
+ showValues = _props$showValues === void 0 ? true : _props$showValues,
8057
+ _props$step = props.step,
8058
+ step = _props$step === void 0 ? 1 : _props$step; // For the RangeSlider, if the defaultValue is not an array, then we set
8059
+ // the defaultValue to an array with the min and max values.
8060
+
8061
+ var rangeSliderDefault = typeof defaultValue === "number" ? [min, max] : defaultValue; // We need to set the default value correctly for both types of sliders.
8062
+
8063
+ var finalDevaultValue = isRangeSlider ? rangeSliderDefault : defaultValue;
8064
+
8065
+ var _React$useState = React.useState(finalDevaultValue),
8066
+ currentValue = _React$useState[0],
8067
+ setCurrentValue = _React$useState[1];
8068
+
8069
+ var finalIsInvalid = isInvalid; // In the Range Slider, if the first value is bigger than the second value,
8070
+ // then set the invalid state.
8071
+
8072
+ if (isRangeSlider && currentValue[0] > currentValue[1]) {
8073
+ finalIsInvalid = true;
8074
+ }
8075
+
8076
+ var optReqText = isRequired ? "Required" : "Optional";
8077
+ var footnote = finalIsInvalid ? invalidText : helperText;
8078
+ var styles = react.useMultiStyleConfig("CustomSlider", {
8079
+ isDisabled: isDisabled,
8080
+ isInvalid: finalIsInvalid,
8081
+ isRangeSlider: isRangeSlider,
8082
+ showBoxes: showBoxes
8083
+ }); // Props that the `Slider` and `RangeSlider` Chakra
8084
+ // components both use.
8085
+
8086
+ var sliderSharedProps = {
8087
+ // Don't focus on the thumbs for every small change.
8088
+ focusThumbOnChange: false,
8089
+ id: id,
8090
+ isDisabled: isDisabled,
8091
+ max: max,
8092
+ min: min,
8093
+ name: name,
8094
+ onChange: function onChange(val) {
8095
+ return setCurrentValue(val);
8096
+ },
8097
+ // Call the passed in `onChange` function prop to get the
8098
+ // *final* value once a user stops dragging the slider.
8099
+ onChangeEnd: function onChangeEnd(val) {
8100
+ return _onChange && _onChange(val);
8101
+ },
8102
+ step: step
8103
+ }; // Props that the two `TextInput` components use.
8104
+
8105
+ var textInputSharedProps = {
8106
+ attributes: {
8107
+ max: max,
8108
+ min: min
8109
+ },
8110
+ isDisabled: isDisabled,
8111
+ isInvalid: finalIsInvalid,
8112
+ isRequired: isRequired,
8113
+ // Never show the label or helper text for the `TextInput` component.
8114
+ showHelperInvalidText: false,
8115
+ showLabel: false,
8116
+ step: step,
8117
+ type: exports.TextInputTypes.number
8118
+ };
8119
+ /**
8120
+ * This returns either the "start" or "end" `TextInput` component. Note that
8121
+ * the "end" `TextInput` component is always rendered but the "start" is
8122
+ * only used for the `isRangeSlider` case.
8123
+ */
8124
+
8125
+ var getTextInput = function getTextInput(type) {
8126
+ var inputProps = {
8127
+ start: _extends({
8128
+ // We only want the value for this box in the `isRangeSlider` case.
8129
+ value: isRangeSlider ? currentValue[0].toString() : "",
8130
+ onChange: function onChange(val) {
8131
+ // If the value is empty, set it to 0.
8132
+ var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // Only update the first value in the range.
8133
+
8134
+ var newValue = [nextValue, currentValue[1]];
8135
+ setCurrentValue(newValue); // If the text input was updated directly,
8136
+ // send the data back to the user.
8137
+
8138
+ _onChange && _onChange(newValue);
8139
+ }
8140
+ }, textInputSharedProps),
8141
+ end: _extends({
8142
+ // This text input *always* shows. In the default case, we only
8143
+ // keep track of one value. For the `isRangeSlider` case, we keep
8144
+ // track of an array but only want the second value.
8145
+ value: isRangeSlider ? currentValue[1].toString() : currentValue.toString(),
8146
+ onChange: function onChange(val) {
8147
+ // If the value is empty, set it to 0.
8148
+ var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // If the value entered is bigger than the max value,
8149
+ // then set it to the max value.
8150
+
8151
+ if (nextValue > max) {
8152
+ nextValue = max;
8153
+ } // Only update the second value in the `isRangeSlider` case,
8154
+ // or the single value in the default case.
8155
+
8156
+
8157
+ var newValue = isRangeSlider ? [currentValue[0], nextValue] : nextValue;
8158
+ setCurrentValue(newValue); // If the text input was updated directly,
8159
+ // send the data back to the user.
8160
+
8161
+ _onChange && _onChange(newValue);
8162
+ }
8163
+ }, textInputSharedProps)
8164
+ };
8165
+ var updatedLabel = !isRangeSlider ? labelText : labelText + " - " + type + " value";
8166
+ return React.createElement(TextInput, Object.assign({
8167
+ id: id + "-textInput-" + type,
8168
+ labelText: updatedLabel,
8169
+ additionalStyles: _extends({}, styles.textInput, {
8170
+ // Specific margins for each text input to
8171
+ // push the elements inside.
8172
+ marginRight: type === "start" ? "s" : null,
8173
+ marginLeft: type === "end" ? "s" : null
8174
+ })
8175
+ }, inputProps[type]));
8176
+ };
8177
+ /**
8178
+ * Returns a Chakra `Slider` or `RangeSlider` component based on the
8179
+ * `isRangeSlider` prop from the DS `Slider` component.
8180
+ */
8181
+
8182
+
8183
+ var getSliderType = function getSliderType() {
8184
+ return isRangeSlider ? React.createElement(react.RangeSlider // Both slider thumbs need values and should be in an array.
8185
+ , Object.assign({
8186
+ "aria-label": !showLabel ? [labelText + " - start value", labelText + " - end value"] : null,
8187
+ "aria-labelledby": showLabel ? [id + "-label", id + "-label"] : null,
8188
+ value: currentValue,
8189
+ // Make the thumbs larger.
8190
+ size: "lg"
8191
+ }, sliderSharedProps), React.createElement(react.RangeSliderTrack, {
8192
+ sx: styles.track
8193
+ }, React.createElement(react.RangeSliderFilledTrack, {
8194
+ sx: styles.filledTrack
8195
+ })), React.createElement(react.RangeSliderThumb, {
8196
+ index: 0,
8197
+ sx: styles.thumb
8198
+ }), React.createElement(react.RangeSliderThumb, {
8199
+ index: 1,
8200
+ sx: styles.thumb
8201
+ })) : React.createElement(react.Slider, Object.assign({
8202
+ "aria-label": !showLabel ? labelText : null,
8203
+ "aria-labelledby": id + "-label",
8204
+ value: currentValue,
8205
+ // Make the thumb larger.
8206
+ size: "lg"
8207
+ }, sliderSharedProps), React.createElement(react.SliderTrack, {
8208
+ sx: styles.track
8209
+ }, React.createElement(react.SliderFilledTrack, {
8210
+ sx: styles.filledTrack
8211
+ })), React.createElement(react.SliderThumb, {
8212
+ sx: styles.thumb
8213
+ }));
8214
+ };
8215
+
8216
+ return React.createElement(react.Box, {
8217
+ className: className,
8218
+ __css: styles
8219
+ }, showLabel && React.createElement(Label, {
8220
+ id: id + "-label",
8221
+ // We can't target the slider thumbs since those are divs and we
8222
+ // should link the label somewhere. So either target the first
8223
+ // input box in a `RangeSlider` or the only input box in a `Slider`.
8224
+ // When the input fields are not visible, remove this attribute.
8225
+ htmlFor: showBoxes ? id + "-textInput-" + (isRangeSlider ? "start" : "end") : null,
8226
+ optReqFlag: optReqFlag && optReqText
8227
+ }, labelText), React.createElement(react.Box, {
8228
+ __css: styles.container
8229
+ }, showBoxes && isRangeSlider && getTextInput("start"), showValues && React.createElement(react.Box, {
8230
+ __css: styles.leftValue
8231
+ }, min), getSliderType(), showValues && React.createElement(react.Box, {
8232
+ __css: styles.rightValue
8233
+ }, max), showBoxes && getTextInput("end")), footnote && showHelperInvalidText && React.createElement(react.Box, {
8234
+ __css: styles.helper
8235
+ }, React.createElement(HelperErrorText, {
8236
+ id: id + "-helperText",
8237
+ isInvalid: finalIsInvalid
8238
+ }, footnote)));
8239
+ }
8240
+
7762
8241
  (function (StatusBadgeTypes) {
7763
8242
  StatusBadgeTypes["Low"] = "low";
7764
8243
  StatusBadgeTypes["Medium"] = "medium";
@@ -8273,6 +8752,70 @@ function Text$1(props) {
8273
8752
  }, children);
8274
8753
  }
8275
8754
 
8755
+ (function (ToggleSizes) {
8756
+ ToggleSizes["Large"] = "large";
8757
+ ToggleSizes["Small"] = "small";
8758
+ })(exports.ToggleSizes || (exports.ToggleSizes = {}));
8759
+
8760
+ var onChangeDefault$2 = function onChangeDefault() {
8761
+ return;
8762
+ };
8763
+ /**
8764
+ * Component that renders Chakra's `Switch` component along with NYPL defaults.
8765
+ */
8766
+
8767
+ var Toggle$2 = /*#__PURE__*/React.forwardRef(function (props, ref) {
8768
+ var _props$additionalStyl = props.additionalStyles,
8769
+ additionalStyles = _props$additionalStyl === void 0 ? {} : _props$additionalStyl,
8770
+ _props$defaultChecked = props.defaultChecked,
8771
+ defaultChecked = _props$defaultChecked === void 0 ? false : _props$defaultChecked,
8772
+ helperText = props.helperText,
8773
+ _props$id = props.id,
8774
+ id = _props$id === void 0 ? generateUUID() : _props$id,
8775
+ invalidText = props.invalidText,
8776
+ isChecked = props.isChecked,
8777
+ _props$isDisabled = props.isDisabled,
8778
+ isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
8779
+ _props$isInvalid = props.isInvalid,
8780
+ isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
8781
+ _props$isRequired = props.isRequired,
8782
+ isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
8783
+ labelText = props.labelText,
8784
+ name = props.name,
8785
+ _props$onChange = props.onChange,
8786
+ onChange = _props$onChange === void 0 ? onChangeDefault$2 : _props$onChange,
8787
+ _props$size = props.size,
8788
+ size = _props$size === void 0 ? exports.ToggleSizes.Large : _props$size;
8789
+ var footnote = isInvalid ? invalidText : helperText;
8790
+ var ariaAttributes = {};
8791
+ var styles = react.useMultiStyleConfig("Toggle", {});
8792
+ var switchStyles = react.useStyleConfig("Switch");
8793
+ ariaAttributes["aria-label"] = labelText && footnote ? labelText + " - " + footnote : labelText;
8794
+ return React.createElement(React.Fragment, null, React.createElement(react.Box, {
8795
+ __css: _extends({}, styles, additionalStyles)
8796
+ }, React.createElement(react.Switch, Object.assign({
8797
+ id: id,
8798
+ name: name || "default",
8799
+ isDisabled: isDisabled,
8800
+ isInvalid: isInvalid,
8801
+ isRequired: isRequired,
8802
+ ref: ref,
8803
+ size: size === exports.ToggleSizes.Large ? "lg" : "sm"
8804
+ }, isChecked !== undefined ? {
8805
+ isChecked: isChecked,
8806
+ onChange: onChange
8807
+ } : {
8808
+ defaultChecked: defaultChecked
8809
+ }, ariaAttributes, {
8810
+ __css: switchStyles
8811
+ }), labelText)), footnote && React.createElement(react.Box, {
8812
+ __css: styles.helper
8813
+ }, React.createElement(HelperErrorText, {
8814
+ isInvalid: isInvalid,
8815
+ id: id + "-helperText"
8816
+ }, footnote)));
8817
+ });
8818
+
8276
8819
  /**
8277
8820
  * A custom hook that returns the Chakra-based NYPL theme object. This must be
8278
8821
  * used inside a component that is wrapped in the `DSProvider` component, so
@@ -8382,6 +8925,7 @@ function VideoPlayer$1(props) {
8382
8925
  var aspectRatio = props.aspectRatio,
8383
8926
  className = props.className,
8384
8927
  descriptionText = props.descriptionText,
8928
+ embedCode = props.embedCode,
8385
8929
  headingText = props.headingText,
8386
8930
  helperText = props.helperText,
8387
8931
  _props$id = props.id,
@@ -8393,22 +8937,32 @@ function VideoPlayer$1(props) {
8393
8937
  videoType = props.videoType;
8394
8938
  var iframeTitleFinal = videoType === exports.VideoPlayerTypes.Vimeo ? iframeTitle || "Vimeo video player" : iframeTitle || "YouTube video player";
8395
8939
  var videoSrc = videoType === exports.VideoPlayerTypes.Vimeo ? "https://player.vimeo.com/video/" + videoId + "?autoplay=0&loop=0" : "https://www.youtube.com/embed/" + videoId + "?disablekb=1&autoplay=0&fs=1&modestbranding=0";
8940
+ var iFrameTitleEmbedCode = iframeTitle ? "" + iframeTitle : "Video player";
8941
+ var embedCodeFinal = embedCode && embedCode.includes("<iframe") && !embedCode.includes("title=") ? embedCode.replace("<iframe ", "<iframe title=\"" + iFrameTitleEmbedCode + "\" ") : embedCode;
8396
8942
  var errorMessage = "<strong>Error:</strong> This video player has not been configured properly. Please contact the site administrator.";
8397
8943
  var isInvalid = false;
8398
8944
 
8399
- if (!videoType && !videoId) {
8400
- console.warn("VideoPlayer requires the `videoType` and `videoId` props");
8945
+ if (!embedCodeFinal && !videoType && !videoId) {
8946
+ console.warn("VideoPlayer requires either the `embedCode` prop or both the `videoType` and `videoId` props.");
8947
+ isInvalid = true;
8948
+ } else if (!embedCodeFinal && !videoType) {
8949
+ console.warn("VideoPlayer also requires the `videoType` prop. You have only set the `videoId` prop.");
8950
+ isInvalid = true;
8951
+ } else if (!embedCodeFinal && !videoId) {
8952
+ console.warn("VideoPlayer also requires the `videoId` prop. You have only set the `videoType` prop.");
8401
8953
  isInvalid = true;
8402
- } else if (!videoType) {
8403
- console.warn("VideoPlayer requires the `videoType` prop");
8954
+ } else if (embedCodeFinal && (videoType || videoId)) {
8955
+ console.warn("VideoPlayer can accept the `embedCode` prop or the `videoType` and `videoId` props. You have set both.");
8404
8956
  isInvalid = true;
8405
- } else if (!videoId) {
8406
- console.warn("VideoPlayer requires the `videoId` prop");
8957
+ }
8958
+
8959
+ if (videoId && (videoId.includes("://") || videoId.includes("http") || videoId.includes(".") || videoId.includes("youtube") || videoId.includes("vimeo"))) {
8960
+ console.warn("The VideoPlayer `videoId` prop is not configured properly.");
8407
8961
  isInvalid = true;
8408
8962
  }
8409
8963
 
8410
- if (videoId.includes("://") || videoId.includes("http") || videoId.includes(".") || videoId.includes("youtube") || videoId.includes("vimeo")) {
8411
- console.warn("VideoPlayer `videoId` prop is not configured properly");
8964
+ if (embedCodeFinal && (!embedCodeFinal.includes("vimeo.com") && !embedCodeFinal.includes("youtube.com") || !embedCodeFinal.includes("<iframe") || !embedCodeFinal.includes("</iframe"))) {
8965
+ console.warn("The VideoPlayer `embedCode` prop is not configured properly.");
8412
8966
  isInvalid = true;
8413
8967
  }
8414
8968
 
@@ -8416,7 +8970,11 @@ function VideoPlayer$1(props) {
8416
8970
  var styles = react.useMultiStyleConfig("VideoPlayer", {
8417
8971
  variant: variant
8418
8972
  });
8419
- var embedCode = React.createElement(react.Box, {
8973
+ var embedElement = embedCodeFinal ? React.createElement("span", {
8974
+ dangerouslySetInnerHTML: {
8975
+ __html: embedCodeFinal
8976
+ }
8977
+ }) : React.createElement(react.Box, {
8420
8978
  as: "iframe",
8421
8979
  src: videoSrc,
8422
8980
  title: iframeTitleFinal,
@@ -8441,7 +8999,7 @@ function VideoPlayer$1(props) {
8441
8999
  id: id + "-componentWrapper"
8442
9000
  }, React.createElement(react.Box, {
8443
9001
  __css: styles.inside
8444
- }, embedCode)));
9002
+ }, embedElement)));
8445
9003
  }
8446
9004
 
8447
9005
  Object.defineProperty(exports, 'Box', {
@@ -8558,12 +9116,14 @@ exports.List = List$1;
8558
9116
  exports.Modal = Modal;
8559
9117
  exports.Notification = Notification$1;
8560
9118
  exports.Pagination = Pagination$1;
9119
+ exports.ProgressIndicator = ProgressIndicator$1;
8561
9120
  exports.Radio = Radio$1;
8562
9121
  exports.RadioGroup = RadioGroup$1;
8563
9122
  exports.SearchBar = SearchBar$1;
8564
9123
  exports.Select = Select$1;
8565
9124
  exports.SimpleGrid = SimpleGrid;
8566
9125
  exports.SkeletonLoader = SkeletonLoader$1;
9126
+ exports.Slider = Slider;
8567
9127
  exports.StatusBadge = StatusBadge$1;
8568
9128
  exports.Tabs = Tabs;
8569
9129
  exports.Template = Template$1;
@@ -8577,6 +9137,7 @@ exports.TemplateFooter = TemplateFooter;
8577
9137
  exports.TemplateHeader = TemplateHeader$1;
8578
9138
  exports.Text = Text$1;
8579
9139
  exports.TextInput = TextInput;
9140
+ exports.Toggle = Toggle$2;
8580
9141
  exports.VideoPlayer = VideoPlayer$1;
8581
9142
  exports.useNYPLTheme = useNYPLTheme;
8582
9143
  //# sourceMappingURL=design-system-react-components.cjs.development.js.map