@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.
- package/CHANGELOG.md +52 -0
- package/dist/components/Breadcrumbs/BreadcrumbsTypes.d.ts +1 -0
- package/dist/components/Icons/IconSvgs.d.ts +1 -0
- package/dist/components/Icons/IconTypes.d.ts +1 -0
- package/dist/components/Image/ImageTypes.d.ts +3 -1
- package/dist/components/Link/LinkTypes.d.ts +1 -0
- package/dist/components/Notification/Notification.d.ts +2 -0
- package/dist/components/Select/Select.d.ts +2 -0
- package/dist/components/Toggle/Toggle.d.ts +47 -0
- package/dist/components/Toggle/ToggleSizes.d.ts +4 -0
- package/dist/components/VideoPlayer/VideoPlayer.d.ts +5 -3
- package/dist/design-system-react-components.cjs.development.js +921 -360
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +917 -353
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/theme/components/breadcrumb.d.ts +9 -0
- package/dist/theme/components/notification.d.ts +8 -4
- package/dist/theme/components/toggle.d.ts +68 -0
- package/dist/theme/foundations/spacing.d.ts +2 -0
- package/package.json +2 -2
- package/src/components/Accordion/Accordion.stories.mdx +1 -2
- package/src/components/Breadcrumbs/Breadcrumbs.stories.mdx +20 -3
- package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +20 -0
- package/src/components/Breadcrumbs/BreadcrumbsTypes.tsx +1 -0
- package/src/components/Breadcrumbs/__snapshots__/Breadcrumbs.test.tsx.snap +198 -0
- package/src/components/Button/Button.tsx +0 -1
- package/src/components/Card/Card.stories.mdx +74 -7
- package/src/components/Card/Card.tsx +9 -8
- package/src/components/Card/__snapshots__/Card.test.tsx.snap +67 -35
- package/src/components/Chakra/Grid.stories.mdx +11 -14
- package/src/components/DatePicker/DatePicker.test.tsx +8 -6
- package/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap +5 -4
- package/src/components/Icons/Icon.stories.mdx +3 -2
- package/src/components/Icons/IconSvgs.tsx +2 -0
- package/src/components/Icons/IconTypes.tsx +1 -0
- package/src/components/Image/Image.stories.mdx +152 -90
- package/src/components/Image/Image.test.tsx +10 -0
- package/src/components/Image/ImageTypes.ts +2 -0
- package/src/components/Image/__snapshots__/Image.test.tsx.snap +24 -8
- package/src/components/Label/Label.stories.mdx +1 -1
- package/src/components/Link/Link.stories.mdx +2 -3
- package/src/components/Link/Link.test.tsx +71 -0
- package/src/components/Link/Link.tsx +41 -9
- package/src/components/Link/LinkTypes.tsx +1 -0
- package/src/components/Link/__snapshots__/Link.test.tsx.snap +201 -0
- package/src/components/Notification/Notification.stories.mdx +36 -3
- package/src/components/Notification/Notification.test.tsx +62 -16
- package/src/components/Notification/Notification.tsx +17 -5
- package/src/components/Notification/__snapshots__/Notification.test.tsx.snap +117 -0
- package/src/components/Pagination/Pagination.stories.mdx +1 -2
- package/src/components/Pagination/__snapshots__/Pagination.test.tsx.snap +42 -0
- package/src/components/ProgressIndicator/ProgressIndicator.stories.mdx +2 -3
- package/src/components/SearchBar/SearchBar.Test.tsx +64 -20
- package/src/components/SearchBar/SearchBar.stories.mdx +3 -4
- package/src/components/SearchBar/SearchBar.tsx +4 -1
- package/src/components/Select/Select.stories.mdx +132 -55
- package/src/components/Select/Select.test.tsx +2 -2
- package/src/components/Select/Select.tsx +6 -2
- package/src/components/Slider/Slider.stories.mdx +3 -2
- package/src/components/Slider/Slider.test.tsx +35 -0
- package/src/components/Slider/Slider.tsx +8 -2
- package/src/components/Template/Template.stories.mdx +1 -2
- package/src/components/Toggle/Toggle.stories.mdx +176 -0
- package/src/components/Toggle/Toggle.test.tsx +140 -0
- package/src/components/Toggle/Toggle.tsx +118 -0
- package/src/components/Toggle/ToggleSizes.tsx +4 -0
- package/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap +255 -0
- package/src/components/VideoPlayer/VideoPlayer.stories.mdx +39 -18
- package/src/components/VideoPlayer/VideoPlayer.test.tsx +103 -1
- package/src/components/VideoPlayer/VideoPlayer.tsx +57 -17
- package/src/components/VideoPlayer/__snapshots__/VideoPlayer.test.tsx.snap +48 -0
- package/src/index.ts +8 -0
- package/src/theme/components/breadcrumb.ts +11 -1
- package/src/theme/components/card.ts +4 -5
- package/src/theme/components/global.ts +1 -1
- package/src/theme/components/icon.ts +2 -2
- package/src/theme/components/image.ts +8 -0
- package/src/theme/components/notification.ts +8 -6
- package/src/theme/components/toggle.ts +65 -0
- package/src/theme/foundations/spacing.ts +3 -0
- package/src/theme/index.ts +2 -0
- package/src/utils/componentCategories.ts +3 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useStyleConfig, Icon as Icon$2, Box, Accordion as Accordion$2, AccordionPanel, AccordionItem, AccordionButton, Breadcrumb as Breadcrumb$1, BreadcrumbItem, BreadcrumbLink, Button as Button$2, Link as Link$2, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, Checkbox as Checkbox$2, CheckboxGroup as CheckboxGroup$2, Stack, SimpleGrid as SimpleGrid$1, Input as Input$1, Textarea, extendTheme, ChakraProvider, Radio as Radio$2, useRadioGroup, Select as Select$2, Skeleton as Skeleton$1, Tabs as Tabs$1, Tab, TabPanel, TabList, TabPanels, Text as Text$2, useTheme } from '@chakra-ui/react';
|
|
1
|
+
import { useStyleConfig, Icon as Icon$2, Box, Accordion as Accordion$2, AccordionPanel, AccordionItem, AccordionButton, Breadcrumb as Breadcrumb$1, BreadcrumbItem, BreadcrumbLink, Button as Button$2, Link as Link$2, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, Checkbox as Checkbox$2, CheckboxGroup as CheckboxGroup$2, Stack, SimpleGrid as SimpleGrid$1, Input as Input$1, Textarea, extendTheme, ChakraProvider, CircularProgress, CircularProgressLabel, Progress, Radio as Radio$2, useRadioGroup, Select as Select$2, Skeleton as Skeleton$1, RangeSlider, RangeSliderTrack, RangeSliderFilledTrack, RangeSliderThumb, Slider as Slider$1, SliderTrack, SliderFilledTrack, SliderThumb, Tabs as Tabs$1, Tab, TabPanel, TabList, TabPanels, Text as Text$2, Switch as Switch$1, useTheme } from '@chakra-ui/react';
|
|
2
2
|
export { Box, ButtonGroup, Center, Circle, Grid, GridItem, HStack, Square, Stack, Tab, TabList, TabPanel, TabPanels, VStack } from '@chakra-ui/react';
|
|
3
3
|
import React__default, { createElement, cloneElement, Fragment, Children, forwardRef, useState, Component, useEffect } from 'react';
|
|
4
4
|
import { v4 } from 'uuid';
|
|
@@ -125,6 +125,7 @@ var IconNames;
|
|
|
125
125
|
IconNames["ActionCheckCircle"] = "action_check_circle";
|
|
126
126
|
IconNames["ActionHelpDefault"] = "action_help_default";
|
|
127
127
|
IconNames["ActionHelpOutline"] = "action_help_outline";
|
|
128
|
+
IconNames["AlertNotificationImportant"] = "alert_notification_important";
|
|
128
129
|
IconNames["ActionLaunch"] = "action_launch";
|
|
129
130
|
IconNames["Arrow"] = "arrow";
|
|
130
131
|
IconNames["Check"] = "check";
|
|
@@ -379,13 +380,13 @@ function _objectWithoutProperties$6(source, excluded) { if (source == null) retu
|
|
|
379
380
|
|
|
380
381
|
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; }
|
|
381
382
|
|
|
382
|
-
function
|
|
383
|
+
function SvgAlertNotificationImportant(_ref) {
|
|
383
384
|
var title = _ref.title,
|
|
384
385
|
titleId = _ref.titleId,
|
|
385
386
|
props = _objectWithoutProperties$6(_ref, _excluded$6);
|
|
386
387
|
|
|
387
388
|
return /*#__PURE__*/createElement("svg", _extends$7({
|
|
388
|
-
viewBox: "0 0 24
|
|
389
|
+
viewBox: "0 0 24 24",
|
|
389
390
|
xmlns: "http://www.w3.org/2000/svg",
|
|
390
391
|
"aria-labelledby": titleId
|
|
391
392
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
@@ -393,11 +394,11 @@ function SvgArrow(_ref) {
|
|
|
393
394
|
}, title) : null, _path$6 || (_path$6 = /*#__PURE__*/createElement("path", {
|
|
394
395
|
fillRule: "evenodd",
|
|
395
396
|
clipRule: "evenodd",
|
|
396
|
-
d: "M10.
|
|
397
|
+
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"
|
|
397
398
|
})));
|
|
398
399
|
}
|
|
399
400
|
|
|
400
|
-
var
|
|
401
|
+
var _path$7;
|
|
401
402
|
|
|
402
403
|
var _excluded$7 = ["title", "titleId"];
|
|
403
404
|
|
|
@@ -407,37 +408,25 @@ function _objectWithoutProperties$7(source, excluded) { if (source == null) retu
|
|
|
407
408
|
|
|
408
409
|
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; }
|
|
409
410
|
|
|
410
|
-
function
|
|
411
|
+
function SvgArrow(_ref) {
|
|
411
412
|
var title = _ref.title,
|
|
412
413
|
titleId = _ref.titleId,
|
|
413
414
|
props = _objectWithoutProperties$7(_ref, _excluded$7);
|
|
414
415
|
|
|
415
416
|
return /*#__PURE__*/createElement("svg", _extends$8({
|
|
416
|
-
|
|
417
|
-
height: 120,
|
|
418
|
-
fill: "none",
|
|
417
|
+
viewBox: "0 0 24 14",
|
|
419
418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
420
419
|
"aria-labelledby": titleId
|
|
421
420
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
422
421
|
id: titleId
|
|
423
|
-
}, title) : null,
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
}), /*#__PURE__*/createElement("path", {
|
|
429
|
-
d: "M143.024 91.463a9.616 9.616 0 014.517.779c.238.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.676 4.676 0 00-2.07 2.289 6.187 6.187 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.235 6.235 0 002.336-1.557v6.619c-.851.416-1.737.755-2.648 1.012a11.662 11.662 0 01-8.177-1.479c-2.858-1.686-5.447-6.505-3.816-11.526a10.187 10.187 0 015.607-5.996 15.995 15.995 0 013.505-.78zM73.247 92.086h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.904 2.904 0 002.492.779 3.415 3.415 0 001.635-.623c.762-.778.7-2.44.7-3.972v-8.8h7.243c0 .646.153 11.962-.233 13.784-.358 1.991-2.237 4.1-5.218 5.062-.806.229-1.632.378-2.468.444a22.52 22.52 0 01-3.92-.027 11.616 11.616 0 01-4.733-1.325 7.206 7.206 0 01-2.825-3.407 20.363 20.363 0 01-.539-5.653v-8.878zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.908 7.908 0 00-6.896-6.605c-2.204-.324-13.694-.15-13.878-.15v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738.513-.944.88-1.96 1.087-3.015.061-.324.197-1.088.207-1.331.051-1.2.01-2.404-.126-3.597zm-8.4 4.367c-1.085.974-2.94.77-4.592.77v-5.567c3.061.041 3.627.287 4.075.518a2.552 2.552 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zM115.861 98.816a9.561 9.561 0 00-6.368-6.922 8.678 8.678 0 00-7.821 1.282V81.028H94.43v29.826h7.242v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.964 9.964 0 006.029-8.456 14.998 14.998 0 00-.296-3.55zm-10.803 6.252a3.607 3.607 0 01-2.008-.61 3.61 3.61 0 01-.548-5.562 3.614 3.614 0 115.112 5.113 3.612 3.612 0 01-2.556 1.059zM129.029 89.763a4.035 4.035 0 100-8.07 4.035 4.035 0 000 8.07zM116.931 81.058h7.23v29.799h-7.23s-.03-29.83 0-29.8zM125.368 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM223.562 89.763a4.034 4.034 0 100-8.068 4.034 4.034 0 000 8.068zM219.901 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM249.872 98.87a9.56 9.56 0 00-6.368-6.922 8.676 8.676 0 00-7.82 1.282V81.082h-7.243v29.826h7.243v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.967 9.967 0 006.029-8.456 14.997 14.997 0 00-.297-3.55zm-10.802 6.252a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM279.092 92.093l.001 1.063c-.231-.137-.575-.427-.913-.62a6.268 6.268 0 00-2.292-.862c-5.628-.588-8.082 2.038-9.532 3.934a9.069 9.069 0 00-.973 2.13h-.094v-5.645c-5.361-.32-6.973 2.197-7.024 2.197v-2.197h-7.305v18.761l7.267-.005c.159-5.709-.388-9.522.788-11.215a3.866 3.866 0 012.457-1.318 7.012 7.012 0 011.893.06c.525.149 1.038.337 1.535.563a24.451 24.451 0 00-.234 3.504c.538 4.526 2.694 6.926 6.074 8.411 2.552 1.06 7.019.69 8.241-1.151h.162c0 .39.008 1.004.008 1.151h7.242V92.093h-7.301zm-3.356 13.029a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM202.876 83.728v27.121h15.981v-6.719l-8.166.027v-20.43s-7.842-.026-7.815 0zM302.06 99.127c-.508-.165-1.39-.624-1.947-.737a6.497 6.497 0 00-1.736-.06 3.731 3.731 0 00-2.614 1.318c-1.176 1.693-.588 5.495-.747 11.204h-7.308V92.093h7.305v2.21c.051 0 1.693-2.21 7.024-2.21 0 .359.036 5.216.036 5.641l-.013 1.393zm-14.352 11.725V92.093h7.242"
|
|
430
|
-
}), /*#__PURE__*/createElement("path", {
|
|
431
|
-
d: "M301.248 92.093l9.194 15.863-6.274 11.735h8.167l14.709-27.598h-8.206l-4.381 8.643-4.516-8.643s-8.679-.014-8.693 0z"
|
|
432
|
-
}))), _defs || (_defs = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
433
|
-
id: "brooklyn_svg__clip0"
|
|
434
|
-
}, /*#__PURE__*/createElement("path", {
|
|
435
|
-
fill: "#fff",
|
|
436
|
-
d: "M0 0h327.045v119.691H0z"
|
|
437
|
-
})))));
|
|
422
|
+
}, title) : null, _path$7 || (_path$7 = /*#__PURE__*/createElement("path", {
|
|
423
|
+
fillRule: "evenodd",
|
|
424
|
+
clipRule: "evenodd",
|
|
425
|
+
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"
|
|
426
|
+
})));
|
|
438
427
|
}
|
|
439
428
|
|
|
440
|
-
var
|
|
429
|
+
var _g, _defs;
|
|
441
430
|
|
|
442
431
|
var _excluded$8 = ["title", "titleId"];
|
|
443
432
|
|
|
@@ -447,20 +436,34 @@ function _objectWithoutProperties$8(source, excluded) { if (source == null) retu
|
|
|
447
436
|
|
|
448
437
|
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; }
|
|
449
438
|
|
|
450
|
-
function
|
|
439
|
+
function SvgBrooklyn(_ref) {
|
|
451
440
|
var title = _ref.title,
|
|
452
441
|
titleId = _ref.titleId,
|
|
453
442
|
props = _objectWithoutProperties$8(_ref, _excluded$8);
|
|
454
443
|
|
|
455
444
|
return /*#__PURE__*/createElement("svg", _extends$9({
|
|
456
|
-
|
|
445
|
+
width: 328,
|
|
446
|
+
height: 120,
|
|
447
|
+
fill: "none",
|
|
457
448
|
xmlns: "http://www.w3.org/2000/svg",
|
|
458
449
|
"aria-labelledby": titleId
|
|
459
450
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
460
451
|
id: titleId
|
|
461
|
-
}, title) : null,
|
|
462
|
-
|
|
463
|
-
|
|
452
|
+
}, title) : null, _g || (_g = /*#__PURE__*/createElement("g", {
|
|
453
|
+
clipPath: "url(#brooklyn_svg__clip0)",
|
|
454
|
+
fill: "#000"
|
|
455
|
+
}, /*#__PURE__*/createElement("path", {
|
|
456
|
+
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"
|
|
457
|
+
}), /*#__PURE__*/createElement("path", {
|
|
458
|
+
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"
|
|
459
|
+
}), /*#__PURE__*/createElement("path", {
|
|
460
|
+
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"
|
|
461
|
+
}))), _defs || (_defs = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
|
|
462
|
+
id: "brooklyn_svg__clip0"
|
|
463
|
+
}, /*#__PURE__*/createElement("path", {
|
|
464
|
+
fill: "#fff",
|
|
465
|
+
d: "M0 0h327.045v119.691H0z"
|
|
466
|
+
})))));
|
|
464
467
|
}
|
|
465
468
|
|
|
466
469
|
var _path$8;
|
|
@@ -473,7 +476,7 @@ function _objectWithoutProperties$9(source, excluded) { if (source == null) retu
|
|
|
473
476
|
|
|
474
477
|
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; }
|
|
475
478
|
|
|
476
|
-
function
|
|
479
|
+
function SvgCheck(_ref) {
|
|
477
480
|
var title = _ref.title,
|
|
478
481
|
titleId = _ref.titleId,
|
|
479
482
|
props = _objectWithoutProperties$9(_ref, _excluded$9);
|
|
@@ -485,9 +488,7 @@ function SvgClock(_ref) {
|
|
|
485
488
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
486
489
|
id: titleId
|
|
487
490
|
}, title) : null, _path$8 || (_path$8 = /*#__PURE__*/createElement("path", {
|
|
488
|
-
|
|
489
|
-
clipRule: "evenodd",
|
|
490
|
-
d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM11 7h1.5v5.25l4.5 2.67-.75 1.23L11 13V7z"
|
|
491
|
+
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"
|
|
491
492
|
})));
|
|
492
493
|
}
|
|
493
494
|
|
|
@@ -501,7 +502,7 @@ function _objectWithoutProperties$a(source, excluded) { if (source == null) retu
|
|
|
501
502
|
|
|
502
503
|
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; }
|
|
503
504
|
|
|
504
|
-
function
|
|
505
|
+
function SvgClock(_ref) {
|
|
505
506
|
var title = _ref.title,
|
|
506
507
|
titleId = _ref.titleId,
|
|
507
508
|
props = _objectWithoutProperties$a(_ref, _excluded$a);
|
|
@@ -513,11 +514,13 @@ function SvgClose(_ref) {
|
|
|
513
514
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
514
515
|
id: titleId
|
|
515
516
|
}, title) : null, _path$9 || (_path$9 = /*#__PURE__*/createElement("path", {
|
|
516
|
-
|
|
517
|
+
fillRule: "evenodd",
|
|
518
|
+
clipRule: "evenodd",
|
|
519
|
+
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"
|
|
517
520
|
})));
|
|
518
521
|
}
|
|
519
522
|
|
|
520
|
-
var _path$a
|
|
523
|
+
var _path$a;
|
|
521
524
|
|
|
522
525
|
var _excluded$b = ["title", "titleId"];
|
|
523
526
|
|
|
@@ -527,7 +530,7 @@ function _objectWithoutProperties$b(source, excluded) { if (source == null) retu
|
|
|
527
530
|
|
|
528
531
|
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; }
|
|
529
532
|
|
|
530
|
-
function
|
|
533
|
+
function SvgClose(_ref) {
|
|
531
534
|
var title = _ref.title,
|
|
532
535
|
titleId = _ref.titleId,
|
|
533
536
|
props = _objectWithoutProperties$b(_ref, _excluded$b);
|
|
@@ -539,19 +542,11 @@ function SvgFileTypeAudio(_ref) {
|
|
|
539
542
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
540
543
|
id: titleId
|
|
541
544
|
}, title) : null, _path$a || (_path$a = /*#__PURE__*/createElement("path", {
|
|
542
|
-
|
|
543
|
-
clipRule: "evenodd",
|
|
544
|
-
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
545
|
-
})), _path2$2 || (_path2$2 = /*#__PURE__*/createElement("path", {
|
|
546
|
-
fillRule: "evenodd",
|
|
547
|
-
clipRule: "evenodd",
|
|
548
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
549
|
-
})), _path3$2 || (_path3$2 = /*#__PURE__*/createElement("path", {
|
|
550
|
-
d: "M7.5 12.5v3h2L12 18v-8l-2.5 2.5h-2zm6.75 1.5A2.25 2.25 0 0013 11.985v4.025A2.237 2.237 0 0014.25 14zM13 9.615v1.03a3.503 3.503 0 010 6.71v1.03a4.498 4.498 0 000-8.77z"
|
|
545
|
+
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"
|
|
551
546
|
})));
|
|
552
547
|
}
|
|
553
548
|
|
|
554
|
-
var _path$b, _path2$
|
|
549
|
+
var _path$b, _path2$2, _path3$2;
|
|
555
550
|
|
|
556
551
|
var _excluded$c = ["title", "titleId"];
|
|
557
552
|
|
|
@@ -561,7 +556,7 @@ function _objectWithoutProperties$c(source, excluded) { if (source == null) retu
|
|
|
561
556
|
|
|
562
557
|
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; }
|
|
563
558
|
|
|
564
|
-
function
|
|
559
|
+
function SvgFileTypeAudio(_ref) {
|
|
565
560
|
var title = _ref.title,
|
|
566
561
|
titleId = _ref.titleId,
|
|
567
562
|
props = _objectWithoutProperties$c(_ref, _excluded$c);
|
|
@@ -575,17 +570,17 @@ function SvgFileTypeDoc(_ref) {
|
|
|
575
570
|
}, title) : null, _path$b || (_path$b = /*#__PURE__*/createElement("path", {
|
|
576
571
|
fillRule: "evenodd",
|
|
577
572
|
clipRule: "evenodd",
|
|
578
|
-
d: "M3
|
|
579
|
-
})), _path2$
|
|
573
|
+
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"
|
|
574
|
+
})), _path2$2 || (_path2$2 = /*#__PURE__*/createElement("path", {
|
|
580
575
|
fillRule: "evenodd",
|
|
581
576
|
clipRule: "evenodd",
|
|
582
|
-
d: "M14
|
|
583
|
-
})), _path3$
|
|
584
|
-
d: "M7 11.
|
|
577
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
578
|
+
})), _path3$2 || (_path3$2 = /*#__PURE__*/createElement("path", {
|
|
579
|
+
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"
|
|
585
580
|
})));
|
|
586
581
|
}
|
|
587
582
|
|
|
588
|
-
var _path$c, _path2$
|
|
583
|
+
var _path$c, _path2$3, _path3$3;
|
|
589
584
|
|
|
590
585
|
var _excluded$d = ["title", "titleId"];
|
|
591
586
|
|
|
@@ -595,7 +590,7 @@ function _objectWithoutProperties$d(source, excluded) { if (source == null) retu
|
|
|
595
590
|
|
|
596
591
|
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; }
|
|
597
592
|
|
|
598
|
-
function
|
|
593
|
+
function SvgFileTypeDoc(_ref) {
|
|
599
594
|
var title = _ref.title,
|
|
600
595
|
titleId = _ref.titleId,
|
|
601
596
|
props = _objectWithoutProperties$d(_ref, _excluded$d);
|
|
@@ -609,15 +604,17 @@ function SvgFileTypeGenericDoc(_ref) {
|
|
|
609
604
|
}, title) : null, _path$c || (_path$c = /*#__PURE__*/createElement("path", {
|
|
610
605
|
fillRule: "evenodd",
|
|
611
606
|
clipRule: "evenodd",
|
|
612
|
-
d: "M3
|
|
613
|
-
})), _path2$
|
|
607
|
+
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"
|
|
608
|
+
})), _path2$3 || (_path2$3 = /*#__PURE__*/createElement("path", {
|
|
614
609
|
fillRule: "evenodd",
|
|
615
610
|
clipRule: "evenodd",
|
|
616
|
-
d: "M14
|
|
611
|
+
d: "M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
612
|
+
})), _path3$3 || (_path3$3 = /*#__PURE__*/createElement("path", {
|
|
613
|
+
d: "M7 11.188h10v2H7zM7 15.188h10v2H7z"
|
|
617
614
|
})));
|
|
618
615
|
}
|
|
619
616
|
|
|
620
|
-
var _path$d, _path2$
|
|
617
|
+
var _path$d, _path2$4;
|
|
621
618
|
|
|
622
619
|
var _excluded$e = ["title", "titleId"];
|
|
623
620
|
|
|
@@ -627,7 +624,7 @@ function _objectWithoutProperties$e(source, excluded) { if (source == null) retu
|
|
|
627
624
|
|
|
628
625
|
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; }
|
|
629
626
|
|
|
630
|
-
function
|
|
627
|
+
function SvgFileTypeGenericDoc(_ref) {
|
|
631
628
|
var title = _ref.title,
|
|
632
629
|
titleId = _ref.titleId,
|
|
633
630
|
props = _objectWithoutProperties$e(_ref, _excluded$e);
|
|
@@ -642,24 +639,14 @@ function SvgFileTypeImage(_ref) {
|
|
|
642
639
|
fillRule: "evenodd",
|
|
643
640
|
clipRule: "evenodd",
|
|
644
641
|
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"
|
|
645
|
-
})), _path2$
|
|
646
|
-
fillRule: "evenodd",
|
|
647
|
-
clipRule: "evenodd",
|
|
648
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
649
|
-
})), _path3$4 || (_path3$4 = /*#__PURE__*/createElement("path", {
|
|
650
|
-
d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
|
|
651
|
-
})), _circle || (_circle = /*#__PURE__*/createElement("circle", {
|
|
652
|
-
cx: 9.375,
|
|
653
|
-
cy: 10.125,
|
|
654
|
-
r: 1.125
|
|
655
|
-
})), _path4 || (_path4 = /*#__PURE__*/createElement("path", {
|
|
642
|
+
})), _path2$4 || (_path2$4 = /*#__PURE__*/createElement("path", {
|
|
656
643
|
fillRule: "evenodd",
|
|
657
644
|
clipRule: "evenodd",
|
|
658
645
|
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
659
646
|
})));
|
|
660
647
|
}
|
|
661
648
|
|
|
662
|
-
var _path$e, _path2$
|
|
649
|
+
var _path$e, _path2$5, _path3$4, _circle, _path4;
|
|
663
650
|
|
|
664
651
|
var _excluded$f = ["title", "titleId"];
|
|
665
652
|
|
|
@@ -669,7 +656,7 @@ function _objectWithoutProperties$f(source, excluded) { if (source == null) retu
|
|
|
669
656
|
|
|
670
657
|
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; }
|
|
671
658
|
|
|
672
|
-
function
|
|
659
|
+
function SvgFileTypeImage(_ref) {
|
|
673
660
|
var title = _ref.title,
|
|
674
661
|
titleId = _ref.titleId,
|
|
675
662
|
props = _objectWithoutProperties$f(_ref, _excluded$f);
|
|
@@ -684,16 +671,24 @@ function SvgFileTypePdf(_ref) {
|
|
|
684
671
|
fillRule: "evenodd",
|
|
685
672
|
clipRule: "evenodd",
|
|
686
673
|
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
687
|
-
})), _path2$
|
|
674
|
+
})), _path2$5 || (_path2$5 = /*#__PURE__*/createElement("path", {
|
|
675
|
+
fillRule: "evenodd",
|
|
676
|
+
clipRule: "evenodd",
|
|
677
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
678
|
+
})), _path3$4 || (_path3$4 = /*#__PURE__*/createElement("path", {
|
|
679
|
+
d: "M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"
|
|
680
|
+
})), _circle || (_circle = /*#__PURE__*/createElement("circle", {
|
|
681
|
+
cx: 9.375,
|
|
682
|
+
cy: 10.125,
|
|
683
|
+
r: 1.125
|
|
684
|
+
})), _path4 || (_path4 = /*#__PURE__*/createElement("path", {
|
|
688
685
|
fillRule: "evenodd",
|
|
689
686
|
clipRule: "evenodd",
|
|
690
687
|
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
691
|
-
})), _path3$5 || (_path3$5 = /*#__PURE__*/createElement("path", {
|
|
692
|
-
d: "M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"
|
|
693
688
|
})));
|
|
694
689
|
}
|
|
695
690
|
|
|
696
|
-
var _path$f, _path2$
|
|
691
|
+
var _path$f, _path2$6, _path3$5;
|
|
697
692
|
|
|
698
693
|
var _excluded$g = ["title", "titleId"];
|
|
699
694
|
|
|
@@ -703,7 +698,7 @@ function _objectWithoutProperties$g(source, excluded) { if (source == null) retu
|
|
|
703
698
|
|
|
704
699
|
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; }
|
|
705
700
|
|
|
706
|
-
function
|
|
701
|
+
function SvgFileTypePdf(_ref) {
|
|
707
702
|
var title = _ref.title,
|
|
708
703
|
titleId = _ref.titleId,
|
|
709
704
|
props = _objectWithoutProperties$g(_ref, _excluded$g);
|
|
@@ -718,16 +713,16 @@ function SvgFileTypeSpreadsheet(_ref) {
|
|
|
718
713
|
fillRule: "evenodd",
|
|
719
714
|
clipRule: "evenodd",
|
|
720
715
|
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
721
|
-
})), _path2$
|
|
716
|
+
})), _path2$6 || (_path2$6 = /*#__PURE__*/createElement("path", {
|
|
722
717
|
fillRule: "evenodd",
|
|
723
718
|
clipRule: "evenodd",
|
|
724
719
|
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
725
|
-
})), _path3$
|
|
726
|
-
d: "
|
|
720
|
+
})), _path3$5 || (_path3$5 = /*#__PURE__*/createElement("path", {
|
|
721
|
+
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"
|
|
727
722
|
})));
|
|
728
723
|
}
|
|
729
724
|
|
|
730
|
-
var _path$g, _path2$
|
|
725
|
+
var _path$g, _path2$7, _path3$6;
|
|
731
726
|
|
|
732
727
|
var _excluded$h = ["title", "titleId"];
|
|
733
728
|
|
|
@@ -737,7 +732,7 @@ function _objectWithoutProperties$h(source, excluded) { if (source == null) retu
|
|
|
737
732
|
|
|
738
733
|
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; }
|
|
739
734
|
|
|
740
|
-
function
|
|
735
|
+
function SvgFileTypeSpreadsheet(_ref) {
|
|
741
736
|
var title = _ref.title,
|
|
742
737
|
titleId = _ref.titleId,
|
|
743
738
|
props = _objectWithoutProperties$h(_ref, _excluded$h);
|
|
@@ -752,14 +747,16 @@ function SvgFileTypeVideo(_ref) {
|
|
|
752
747
|
fillRule: "evenodd",
|
|
753
748
|
clipRule: "evenodd",
|
|
754
749
|
d: "M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"
|
|
755
|
-
})), _path2$
|
|
750
|
+
})), _path2$7 || (_path2$7 = /*#__PURE__*/createElement("path", {
|
|
756
751
|
fillRule: "evenodd",
|
|
757
752
|
clipRule: "evenodd",
|
|
758
|
-
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-
|
|
753
|
+
d: "M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"
|
|
754
|
+
})), _path3$6 || (_path3$6 = /*#__PURE__*/createElement("path", {
|
|
755
|
+
d: "M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"
|
|
759
756
|
})));
|
|
760
757
|
}
|
|
761
758
|
|
|
762
|
-
var _path$h;
|
|
759
|
+
var _path$h, _path2$8;
|
|
763
760
|
|
|
764
761
|
var _excluded$i = ["title", "titleId"];
|
|
765
762
|
|
|
@@ -769,13 +766,13 @@ function _objectWithoutProperties$i(source, excluded) { if (source == null) retu
|
|
|
769
766
|
|
|
770
767
|
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; }
|
|
771
768
|
|
|
772
|
-
function
|
|
769
|
+
function SvgFileTypeVideo(_ref) {
|
|
773
770
|
var title = _ref.title,
|
|
774
771
|
titleId = _ref.titleId,
|
|
775
772
|
props = _objectWithoutProperties$i(_ref, _excluded$i);
|
|
776
773
|
|
|
777
774
|
return /*#__PURE__*/createElement("svg", _extends$j({
|
|
778
|
-
viewBox: "0 0
|
|
775
|
+
viewBox: "0 0 24 24",
|
|
779
776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
780
777
|
"aria-labelledby": titleId
|
|
781
778
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
@@ -783,11 +780,15 @@ function SvgDownload(_ref) {
|
|
|
783
780
|
}, title) : null, _path$h || (_path$h = /*#__PURE__*/createElement("path", {
|
|
784
781
|
fillRule: "evenodd",
|
|
785
782
|
clipRule: "evenodd",
|
|
786
|
-
d: "
|
|
783
|
+
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"
|
|
784
|
+
})), _path2$8 || (_path2$8 = /*#__PURE__*/createElement("path", {
|
|
785
|
+
fillRule: "evenodd",
|
|
786
|
+
clipRule: "evenodd",
|
|
787
|
+
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"
|
|
787
788
|
})));
|
|
788
789
|
}
|
|
789
790
|
|
|
790
|
-
var _path$i
|
|
791
|
+
var _path$i;
|
|
791
792
|
|
|
792
793
|
var _excluded$j = ["title", "titleId"];
|
|
793
794
|
|
|
@@ -797,26 +798,25 @@ function _objectWithoutProperties$j(source, excluded) { if (source == null) retu
|
|
|
797
798
|
|
|
798
799
|
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; }
|
|
799
800
|
|
|
800
|
-
function
|
|
801
|
+
function SvgDownload(_ref) {
|
|
801
802
|
var title = _ref.title,
|
|
802
803
|
titleId = _ref.titleId,
|
|
803
804
|
props = _objectWithoutProperties$j(_ref, _excluded$j);
|
|
804
805
|
|
|
805
806
|
return /*#__PURE__*/createElement("svg", _extends$k({
|
|
806
|
-
viewBox: "0 0
|
|
807
|
+
viewBox: "0 0 14 18",
|
|
807
808
|
xmlns: "http://www.w3.org/2000/svg",
|
|
808
809
|
"aria-labelledby": titleId
|
|
809
810
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
810
811
|
id: titleId
|
|
811
812
|
}, title) : null, _path$i || (_path$i = /*#__PURE__*/createElement("path", {
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
d: "
|
|
815
|
-
fill: "#fff"
|
|
813
|
+
fillRule: "evenodd",
|
|
814
|
+
clipRule: "evenodd",
|
|
815
|
+
d: "M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"
|
|
816
816
|
})));
|
|
817
817
|
}
|
|
818
818
|
|
|
819
|
-
var _path$j;
|
|
819
|
+
var _path$j, _path2$9;
|
|
820
820
|
|
|
821
821
|
var _excluded$k = ["title", "titleId"];
|
|
822
822
|
|
|
@@ -826,7 +826,7 @@ function _objectWithoutProperties$k(source, excluded) { if (source == null) retu
|
|
|
826
826
|
|
|
827
827
|
function _objectWithoutPropertiesLoose$l(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
828
828
|
|
|
829
|
-
function
|
|
829
|
+
function SvgErrorFilled(_ref) {
|
|
830
830
|
var title = _ref.title,
|
|
831
831
|
titleId = _ref.titleId,
|
|
832
832
|
props = _objectWithoutProperties$k(_ref, _excluded$k);
|
|
@@ -838,9 +838,10 @@ function SvgErrorOutline(_ref) {
|
|
|
838
838
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
839
839
|
id: titleId
|
|
840
840
|
}, title) : null, _path$j || (_path$j = /*#__PURE__*/createElement("path", {
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
d: "
|
|
841
|
+
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"
|
|
842
|
+
})), _path2$9 || (_path2$9 = /*#__PURE__*/createElement("path", {
|
|
843
|
+
d: "M13.2 14.112h-2.4v-7.2h2.4v7.2zM13.2 18.912h-2.4v-2.4h2.4v2.4z",
|
|
844
|
+
fill: "#fff"
|
|
844
845
|
})));
|
|
845
846
|
}
|
|
846
847
|
|
|
@@ -854,23 +855,25 @@ function _objectWithoutProperties$l(source, excluded) { if (source == null) retu
|
|
|
854
855
|
|
|
855
856
|
function _objectWithoutPropertiesLoose$m(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
856
857
|
|
|
857
|
-
function
|
|
858
|
+
function SvgErrorOutline(_ref) {
|
|
858
859
|
var title = _ref.title,
|
|
859
860
|
titleId = _ref.titleId,
|
|
860
861
|
props = _objectWithoutProperties$l(_ref, _excluded$l);
|
|
861
862
|
|
|
862
863
|
return /*#__PURE__*/createElement("svg", _extends$m({
|
|
863
|
-
viewBox: "0 0
|
|
864
|
+
viewBox: "0 0 24 25",
|
|
864
865
|
xmlns: "http://www.w3.org/2000/svg",
|
|
865
866
|
"aria-labelledby": titleId
|
|
866
867
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
867
868
|
id: titleId
|
|
868
869
|
}, title) : null, _path$k || (_path$k = /*#__PURE__*/createElement("path", {
|
|
869
|
-
|
|
870
|
+
fillRule: "evenodd",
|
|
871
|
+
clipRule: "evenodd",
|
|
872
|
+
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"
|
|
870
873
|
})));
|
|
871
874
|
}
|
|
872
875
|
|
|
873
|
-
var _path$l
|
|
876
|
+
var _path$l;
|
|
874
877
|
|
|
875
878
|
var _excluded$m = ["title", "titleId"];
|
|
876
879
|
|
|
@@ -880,18 +883,44 @@ function _objectWithoutProperties$m(source, excluded) { if (source == null) retu
|
|
|
880
883
|
|
|
881
884
|
function _objectWithoutPropertiesLoose$n(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
882
885
|
|
|
883
|
-
function
|
|
886
|
+
function SvgHeadset(_ref) {
|
|
884
887
|
var title = _ref.title,
|
|
885
888
|
titleId = _ref.titleId,
|
|
886
889
|
props = _objectWithoutProperties$m(_ref, _excluded$m);
|
|
887
890
|
|
|
888
891
|
return /*#__PURE__*/createElement("svg", _extends$n({
|
|
892
|
+
viewBox: "0 0 18 19",
|
|
889
893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
890
|
-
viewBox: "0 0 327.045 119.691",
|
|
891
894
|
"aria-labelledby": titleId
|
|
892
895
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
893
896
|
id: titleId
|
|
894
897
|
}, title) : null, _path$l || (_path$l = /*#__PURE__*/createElement("path", {
|
|
898
|
+
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"
|
|
899
|
+
})));
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
var _path$m, _path2$a, _circle$1, _path3$7, _circle2, _path4$1, _path5;
|
|
903
|
+
|
|
904
|
+
var _excluded$n = ["title", "titleId"];
|
|
905
|
+
|
|
906
|
+
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); }
|
|
907
|
+
|
|
908
|
+
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; }
|
|
909
|
+
|
|
910
|
+
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; }
|
|
911
|
+
|
|
912
|
+
function SvgLogoBrooklynpl(_ref) {
|
|
913
|
+
var title = _ref.title,
|
|
914
|
+
titleId = _ref.titleId,
|
|
915
|
+
props = _objectWithoutProperties$n(_ref, _excluded$n);
|
|
916
|
+
|
|
917
|
+
return /*#__PURE__*/createElement("svg", _extends$o({
|
|
918
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
919
|
+
viewBox: "0 0 327.045 119.691",
|
|
920
|
+
"aria-labelledby": titleId
|
|
921
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
922
|
+
id: titleId
|
|
923
|
+
}, title) : null, _path$m || (_path$m = /*#__PURE__*/createElement("path", {
|
|
895
924
|
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"
|
|
896
925
|
})), _path2$a || (_path2$a = /*#__PURE__*/createElement("path", {
|
|
897
926
|
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"
|
|
@@ -912,28 +941,28 @@ function SvgLogoBrooklynpl(_ref) {
|
|
|
912
941
|
})));
|
|
913
942
|
}
|
|
914
943
|
|
|
915
|
-
var _path$
|
|
944
|
+
var _path$n, _path2$b, _path3$8, _path4$2, _path5$1, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17;
|
|
916
945
|
|
|
917
|
-
var _excluded$
|
|
946
|
+
var _excluded$o = ["title", "titleId"];
|
|
918
947
|
|
|
919
|
-
function _extends$
|
|
948
|
+
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); }
|
|
920
949
|
|
|
921
|
-
function _objectWithoutProperties$
|
|
950
|
+
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; }
|
|
922
951
|
|
|
923
|
-
function _objectWithoutPropertiesLoose$
|
|
952
|
+
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; }
|
|
924
953
|
|
|
925
954
|
function SvgLogoNypl(_ref) {
|
|
926
955
|
var title = _ref.title,
|
|
927
956
|
titleId = _ref.titleId,
|
|
928
|
-
props = _objectWithoutProperties$
|
|
957
|
+
props = _objectWithoutProperties$o(_ref, _excluded$o);
|
|
929
958
|
|
|
930
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
959
|
+
return /*#__PURE__*/createElement("svg", _extends$p({
|
|
931
960
|
viewBox: "0 0 317 178",
|
|
932
961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
933
962
|
"aria-labelledby": titleId
|
|
934
963
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
935
964
|
id: titleId
|
|
936
|
-
}, title) : null, _path$
|
|
965
|
+
}, title) : null, _path$n || (_path$n = /*#__PURE__*/createElement("path", {
|
|
937
966
|
d: "M159.458 2.388h2.395l17.461 25.224V2.388h2.264v29.175h-2.221L161.722 6.165v25.398h-2.221V2.387h-.043z"
|
|
938
967
|
})), _path2$b || (_path2$b = /*#__PURE__*/createElement("path", {
|
|
939
968
|
fillRule: "evenodd",
|
|
@@ -986,22 +1015,22 @@ function SvgLogoNypl(_ref) {
|
|
|
986
1015
|
})));
|
|
987
1016
|
}
|
|
988
1017
|
|
|
989
|
-
var _path$
|
|
1018
|
+
var _path$o, _defs$1;
|
|
990
1019
|
|
|
991
|
-
var _excluded$
|
|
1020
|
+
var _excluded$p = ["title", "titleId"];
|
|
992
1021
|
|
|
993
|
-
function _extends$
|
|
1022
|
+
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); }
|
|
994
1023
|
|
|
995
|
-
function _objectWithoutProperties$
|
|
1024
|
+
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; }
|
|
996
1025
|
|
|
997
|
-
function _objectWithoutPropertiesLoose$
|
|
1026
|
+
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; }
|
|
998
1027
|
|
|
999
1028
|
function SvgLogoNyplNegative(_ref) {
|
|
1000
1029
|
var title = _ref.title,
|
|
1001
1030
|
titleId = _ref.titleId,
|
|
1002
|
-
props = _objectWithoutProperties$
|
|
1031
|
+
props = _objectWithoutProperties$p(_ref, _excluded$p);
|
|
1003
1032
|
|
|
1004
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1033
|
+
return /*#__PURE__*/createElement("svg", _extends$q({
|
|
1005
1034
|
width: 457,
|
|
1006
1035
|
height: 269,
|
|
1007
1036
|
fill: "none",
|
|
@@ -1010,7 +1039,7 @@ function SvgLogoNyplNegative(_ref) {
|
|
|
1010
1039
|
"aria-labelledby": titleId
|
|
1011
1040
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1012
1041
|
id: titleId
|
|
1013
|
-
}, title) : null, _path$
|
|
1042
|
+
}, title) : null, _path$o || (_path$o = /*#__PURE__*/createElement("path", {
|
|
1014
1043
|
fill: "url(#logo_nypl_negative_svg__pattern0)",
|
|
1015
1044
|
d: "M0 0h457v268.295H0z"
|
|
1016
1045
|
})), _defs$1 || (_defs$1 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("pattern", {
|
|
@@ -1029,48 +1058,48 @@ function SvgLogoNyplNegative(_ref) {
|
|
|
1029
1058
|
}))));
|
|
1030
1059
|
}
|
|
1031
1060
|
|
|
1032
|
-
var _path$
|
|
1061
|
+
var _path$p;
|
|
1033
1062
|
|
|
1034
|
-
var _excluded$
|
|
1063
|
+
var _excluded$q = ["title", "titleId"];
|
|
1035
1064
|
|
|
1036
|
-
function _extends$
|
|
1065
|
+
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); }
|
|
1037
1066
|
|
|
1038
|
-
function _objectWithoutProperties$
|
|
1067
|
+
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; }
|
|
1039
1068
|
|
|
1040
|
-
function _objectWithoutPropertiesLoose$
|
|
1069
|
+
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; }
|
|
1041
1070
|
|
|
1042
1071
|
function SvgLogoQueenspl(_ref) {
|
|
1043
1072
|
var title = _ref.title,
|
|
1044
1073
|
titleId = _ref.titleId,
|
|
1045
|
-
props = _objectWithoutProperties$
|
|
1074
|
+
props = _objectWithoutProperties$q(_ref, _excluded$q);
|
|
1046
1075
|
|
|
1047
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1076
|
+
return /*#__PURE__*/createElement("svg", _extends$r({
|
|
1048
1077
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1049
1078
|
viewBox: "0 0 1114 601",
|
|
1050
1079
|
"aria-labelledby": titleId
|
|
1051
1080
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1052
1081
|
id: titleId
|
|
1053
|
-
}, title) : null, _path$
|
|
1082
|
+
}, title) : null, _path$p || (_path$p = /*#__PURE__*/createElement("path", {
|
|
1054
1083
|
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"
|
|
1055
1084
|
})));
|
|
1056
1085
|
}
|
|
1057
1086
|
|
|
1058
|
-
var _path$
|
|
1087
|
+
var _path$q;
|
|
1059
1088
|
|
|
1060
|
-
var _excluded$
|
|
1089
|
+
var _excluded$r = ["title", "titleId"];
|
|
1061
1090
|
|
|
1062
|
-
function _extends$
|
|
1091
|
+
function _extends$s() { _extends$s = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$s.apply(this, arguments); }
|
|
1063
1092
|
|
|
1064
|
-
function _objectWithoutProperties$
|
|
1093
|
+
function _objectWithoutProperties$r(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$s(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1065
1094
|
|
|
1066
|
-
function _objectWithoutPropertiesLoose$
|
|
1095
|
+
function _objectWithoutPropertiesLoose$s(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1067
1096
|
|
|
1068
1097
|
function SvgLpaNegative(_ref) {
|
|
1069
1098
|
var title = _ref.title,
|
|
1070
1099
|
titleId = _ref.titleId,
|
|
1071
|
-
props = _objectWithoutProperties$
|
|
1100
|
+
props = _objectWithoutProperties$r(_ref, _excluded$r);
|
|
1072
1101
|
|
|
1073
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1102
|
+
return /*#__PURE__*/createElement("svg", _extends$s({
|
|
1074
1103
|
width: 205,
|
|
1075
1104
|
height: 80,
|
|
1076
1105
|
fill: "none",
|
|
@@ -1078,28 +1107,28 @@ function SvgLpaNegative(_ref) {
|
|
|
1078
1107
|
"aria-labelledby": titleId
|
|
1079
1108
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1080
1109
|
id: titleId
|
|
1081
|
-
}, title) : null, _path$
|
|
1110
|
+
}, title) : null, _path$q || (_path$q = /*#__PURE__*/createElement("path", {
|
|
1082
1111
|
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",
|
|
1083
1112
|
fill: "#fff"
|
|
1084
1113
|
})));
|
|
1085
1114
|
}
|
|
1086
1115
|
|
|
1087
|
-
var _path$
|
|
1116
|
+
var _path$r, _path2$c;
|
|
1088
1117
|
|
|
1089
|
-
var _excluded$
|
|
1118
|
+
var _excluded$s = ["title", "titleId"];
|
|
1090
1119
|
|
|
1091
|
-
function _extends$
|
|
1120
|
+
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); }
|
|
1092
1121
|
|
|
1093
|
-
function _objectWithoutProperties$
|
|
1122
|
+
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; }
|
|
1094
1123
|
|
|
1095
|
-
function _objectWithoutPropertiesLoose$
|
|
1124
|
+
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; }
|
|
1096
1125
|
|
|
1097
1126
|
function SvgLpaPositive(_ref) {
|
|
1098
1127
|
var title = _ref.title,
|
|
1099
1128
|
titleId = _ref.titleId,
|
|
1100
|
-
props = _objectWithoutProperties$
|
|
1129
|
+
props = _objectWithoutProperties$s(_ref, _excluded$s);
|
|
1101
1130
|
|
|
1102
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1131
|
+
return /*#__PURE__*/createElement("svg", _extends$t({
|
|
1103
1132
|
width: 186,
|
|
1104
1133
|
height: 74,
|
|
1105
1134
|
fill: "none",
|
|
@@ -1107,7 +1136,7 @@ function SvgLpaPositive(_ref) {
|
|
|
1107
1136
|
"aria-labelledby": titleId
|
|
1108
1137
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1109
1138
|
id: titleId
|
|
1110
|
-
}, title) : null, _path$
|
|
1139
|
+
}, title) : null, _path$r || (_path$r = /*#__PURE__*/createElement("path", {
|
|
1111
1140
|
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",
|
|
1112
1141
|
fill: "#008375"
|
|
1113
1142
|
})), _path2$c || (_path2$c = /*#__PURE__*/createElement("path", {
|
|
@@ -1118,20 +1147,20 @@ function SvgLpaPositive(_ref) {
|
|
|
1118
1147
|
|
|
1119
1148
|
var _rect;
|
|
1120
1149
|
|
|
1121
|
-
var _excluded$
|
|
1150
|
+
var _excluded$t = ["title", "titleId"];
|
|
1122
1151
|
|
|
1123
|
-
function _extends$
|
|
1152
|
+
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); }
|
|
1124
1153
|
|
|
1125
|
-
function _objectWithoutProperties$
|
|
1154
|
+
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; }
|
|
1126
1155
|
|
|
1127
|
-
function _objectWithoutPropertiesLoose$
|
|
1156
|
+
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; }
|
|
1128
1157
|
|
|
1129
1158
|
function SvgMinus(_ref) {
|
|
1130
1159
|
var title = _ref.title,
|
|
1131
1160
|
titleId = _ref.titleId,
|
|
1132
|
-
props = _objectWithoutProperties$
|
|
1161
|
+
props = _objectWithoutProperties$t(_ref, _excluded$t);
|
|
1133
1162
|
|
|
1134
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1163
|
+
return /*#__PURE__*/createElement("svg", _extends$u({
|
|
1135
1164
|
viewBox: "0 -11 24 24",
|
|
1136
1165
|
width: 24,
|
|
1137
1166
|
height: 2,
|
|
@@ -1146,22 +1175,22 @@ function SvgMinus(_ref) {
|
|
|
1146
1175
|
})));
|
|
1147
1176
|
}
|
|
1148
1177
|
|
|
1149
|
-
var _path$
|
|
1178
|
+
var _path$s, _mask, _g$1;
|
|
1150
1179
|
|
|
1151
|
-
var _excluded$
|
|
1180
|
+
var _excluded$u = ["title", "titleId"];
|
|
1152
1181
|
|
|
1153
|
-
function _extends$
|
|
1182
|
+
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); }
|
|
1154
1183
|
|
|
1155
|
-
function _objectWithoutProperties$
|
|
1184
|
+
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; }
|
|
1156
1185
|
|
|
1157
|
-
function _objectWithoutPropertiesLoose$
|
|
1186
|
+
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; }
|
|
1158
1187
|
|
|
1159
1188
|
function SvgNyplCircleNegative(_ref) {
|
|
1160
1189
|
var title = _ref.title,
|
|
1161
1190
|
titleId = _ref.titleId,
|
|
1162
|
-
props = _objectWithoutProperties$
|
|
1191
|
+
props = _objectWithoutProperties$u(_ref, _excluded$u);
|
|
1163
1192
|
|
|
1164
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1193
|
+
return /*#__PURE__*/createElement("svg", _extends$v({
|
|
1165
1194
|
width: 125,
|
|
1166
1195
|
height: 126,
|
|
1167
1196
|
fill: "none",
|
|
@@ -1169,7 +1198,7 @@ function SvgNyplCircleNegative(_ref) {
|
|
|
1169
1198
|
"aria-labelledby": titleId
|
|
1170
1199
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1171
1200
|
id: titleId
|
|
1172
|
-
}, title) : null, _path$
|
|
1201
|
+
}, title) : null, _path$s || (_path$s = /*#__PURE__*/createElement("path", {
|
|
1173
1202
|
fillRule: "evenodd",
|
|
1174
1203
|
clipRule: "evenodd",
|
|
1175
1204
|
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",
|
|
@@ -1194,22 +1223,22 @@ function SvgNyplCircleNegative(_ref) {
|
|
|
1194
1223
|
}))));
|
|
1195
1224
|
}
|
|
1196
1225
|
|
|
1197
|
-
var _mask$1, _g$2, _path$
|
|
1226
|
+
var _mask$1, _g$2, _path$t;
|
|
1198
1227
|
|
|
1199
|
-
var _excluded$
|
|
1228
|
+
var _excluded$v = ["title", "titleId"];
|
|
1200
1229
|
|
|
1201
|
-
function _extends$
|
|
1230
|
+
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); }
|
|
1202
1231
|
|
|
1203
|
-
function _objectWithoutProperties$
|
|
1232
|
+
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; }
|
|
1204
1233
|
|
|
1205
|
-
function _objectWithoutPropertiesLoose$
|
|
1234
|
+
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; }
|
|
1206
1235
|
|
|
1207
1236
|
function SvgNyplCirclePositive(_ref) {
|
|
1208
1237
|
var title = _ref.title,
|
|
1209
1238
|
titleId = _ref.titleId,
|
|
1210
|
-
props = _objectWithoutProperties$
|
|
1239
|
+
props = _objectWithoutProperties$v(_ref, _excluded$v);
|
|
1211
1240
|
|
|
1212
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1241
|
+
return /*#__PURE__*/createElement("svg", _extends$w({
|
|
1213
1242
|
width: 48,
|
|
1214
1243
|
height: 49,
|
|
1215
1244
|
fill: "none",
|
|
@@ -1236,7 +1265,7 @@ function SvgNyplCirclePositive(_ref) {
|
|
|
1236
1265
|
clipRule: "evenodd",
|
|
1237
1266
|
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",
|
|
1238
1267
|
fill: "#000"
|
|
1239
|
-
}))), _path$
|
|
1268
|
+
}))), _path$t || (_path$t = /*#__PURE__*/createElement("path", {
|
|
1240
1269
|
fillRule: "evenodd",
|
|
1241
1270
|
clipRule: "evenodd",
|
|
1242
1271
|
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",
|
|
@@ -1244,22 +1273,22 @@ function SvgNyplCirclePositive(_ref) {
|
|
|
1244
1273
|
})));
|
|
1245
1274
|
}
|
|
1246
1275
|
|
|
1247
|
-
var _path$
|
|
1276
|
+
var _path$u, _defs$2;
|
|
1248
1277
|
|
|
1249
|
-
var _excluded$
|
|
1278
|
+
var _excluded$w = ["title", "titleId"];
|
|
1250
1279
|
|
|
1251
|
-
function _extends$
|
|
1280
|
+
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); }
|
|
1252
1281
|
|
|
1253
|
-
function _objectWithoutProperties$
|
|
1282
|
+
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; }
|
|
1254
1283
|
|
|
1255
|
-
function _objectWithoutPropertiesLoose$
|
|
1284
|
+
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; }
|
|
1256
1285
|
|
|
1257
1286
|
function SvgNyplFullLockUpNegative(_ref) {
|
|
1258
1287
|
var title = _ref.title,
|
|
1259
1288
|
titleId = _ref.titleId,
|
|
1260
|
-
props = _objectWithoutProperties$
|
|
1289
|
+
props = _objectWithoutProperties$w(_ref, _excluded$w);
|
|
1261
1290
|
|
|
1262
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1291
|
+
return /*#__PURE__*/createElement("svg", _extends$x({
|
|
1263
1292
|
width: 457,
|
|
1264
1293
|
height: 269,
|
|
1265
1294
|
fill: "none",
|
|
@@ -1268,7 +1297,7 @@ function SvgNyplFullLockUpNegative(_ref) {
|
|
|
1268
1297
|
"aria-labelledby": titleId
|
|
1269
1298
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1270
1299
|
id: titleId
|
|
1271
|
-
}, title) : null, _path$
|
|
1300
|
+
}, title) : null, _path$u || (_path$u = /*#__PURE__*/createElement("path", {
|
|
1272
1301
|
fill: "url(#nypl_full_lock_up_negative_svg__pattern0)",
|
|
1273
1302
|
d: "M0 .379h457v268.295H0z"
|
|
1274
1303
|
})), _defs$2 || (_defs$2 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("pattern", {
|
|
@@ -1287,22 +1316,22 @@ function SvgNyplFullLockUpNegative(_ref) {
|
|
|
1287
1316
|
}))));
|
|
1288
1317
|
}
|
|
1289
1318
|
|
|
1290
|
-
var _path$
|
|
1319
|
+
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;
|
|
1291
1320
|
|
|
1292
|
-
var _excluded$
|
|
1321
|
+
var _excluded$x = ["title", "titleId"];
|
|
1293
1322
|
|
|
1294
|
-
function _extends$
|
|
1323
|
+
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); }
|
|
1295
1324
|
|
|
1296
|
-
function _objectWithoutProperties$
|
|
1325
|
+
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; }
|
|
1297
1326
|
|
|
1298
|
-
function _objectWithoutPropertiesLoose$
|
|
1327
|
+
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; }
|
|
1299
1328
|
|
|
1300
1329
|
function SvgNyplFullLockUp(_ref) {
|
|
1301
1330
|
var title = _ref.title,
|
|
1302
1331
|
titleId = _ref.titleId,
|
|
1303
|
-
props = _objectWithoutProperties$
|
|
1332
|
+
props = _objectWithoutProperties$x(_ref, _excluded$x);
|
|
1304
1333
|
|
|
1305
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1334
|
+
return /*#__PURE__*/createElement("svg", _extends$y({
|
|
1306
1335
|
width: 457,
|
|
1307
1336
|
height: 258,
|
|
1308
1337
|
fill: "none",
|
|
@@ -1310,7 +1339,7 @@ function SvgNyplFullLockUp(_ref) {
|
|
|
1310
1339
|
"aria-labelledby": titleId
|
|
1311
1340
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1312
1341
|
id: titleId
|
|
1313
|
-
}, title) : null, _path$
|
|
1342
|
+
}, title) : null, _path$v || (_path$v = /*#__PURE__*/createElement("path", {
|
|
1314
1343
|
d: "M229.882 3.455h3.452l25.173 36.473V3.455h3.264V45.64h-3.201L233.146 8.917V45.64h-3.201V3.455h-.063z",
|
|
1315
1344
|
fill: "#000"
|
|
1316
1345
|
})), _path2$d || (_path2$d = /*#__PURE__*/createElement("path", {
|
|
@@ -1380,22 +1409,22 @@ function SvgNyplFullLockUp(_ref) {
|
|
|
1380
1409
|
})));
|
|
1381
1410
|
}
|
|
1382
1411
|
|
|
1383
|
-
var _path$
|
|
1412
|
+
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;
|
|
1384
1413
|
|
|
1385
|
-
var _excluded$
|
|
1414
|
+
var _excluded$y = ["title", "titleId"];
|
|
1386
1415
|
|
|
1387
|
-
function _extends$
|
|
1416
|
+
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); }
|
|
1388
1417
|
|
|
1389
|
-
function _objectWithoutProperties$
|
|
1418
|
+
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; }
|
|
1390
1419
|
|
|
1391
|
-
function _objectWithoutPropertiesLoose$
|
|
1420
|
+
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; }
|
|
1392
1421
|
|
|
1393
1422
|
function SvgNyplNoLionNegative(_ref) {
|
|
1394
1423
|
var title = _ref.title,
|
|
1395
1424
|
titleId = _ref.titleId,
|
|
1396
|
-
props = _objectWithoutProperties$
|
|
1425
|
+
props = _objectWithoutProperties$y(_ref, _excluded$y);
|
|
1397
1426
|
|
|
1398
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1427
|
+
return /*#__PURE__*/createElement("svg", _extends$z({
|
|
1399
1428
|
width: 364,
|
|
1400
1429
|
height: 300,
|
|
1401
1430
|
fill: "none",
|
|
@@ -1403,7 +1432,7 @@ function SvgNyplNoLionNegative(_ref) {
|
|
|
1403
1432
|
"aria-labelledby": titleId
|
|
1404
1433
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1405
1434
|
id: titleId
|
|
1406
|
-
}, title) : null, _path$
|
|
1435
|
+
}, title) : null, _path$w || (_path$w = /*#__PURE__*/createElement("path", {
|
|
1407
1436
|
d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
|
|
1408
1437
|
fill: "#fff"
|
|
1409
1438
|
})), _path2$e || (_path2$e = /*#__PURE__*/createElement("path", {
|
|
@@ -1465,22 +1494,22 @@ function SvgNyplNoLionNegative(_ref) {
|
|
|
1465
1494
|
})));
|
|
1466
1495
|
}
|
|
1467
1496
|
|
|
1468
|
-
var _path$
|
|
1497
|
+
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;
|
|
1469
1498
|
|
|
1470
|
-
var _excluded$
|
|
1499
|
+
var _excluded$z = ["title", "titleId"];
|
|
1471
1500
|
|
|
1472
|
-
function _extends$
|
|
1501
|
+
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); }
|
|
1473
1502
|
|
|
1474
|
-
function _objectWithoutProperties$
|
|
1503
|
+
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; }
|
|
1475
1504
|
|
|
1476
|
-
function _objectWithoutPropertiesLoose$
|
|
1505
|
+
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; }
|
|
1477
1506
|
|
|
1478
1507
|
function SvgNyplNoLionPositive(_ref) {
|
|
1479
1508
|
var title = _ref.title,
|
|
1480
1509
|
titleId = _ref.titleId,
|
|
1481
|
-
props = _objectWithoutProperties$
|
|
1510
|
+
props = _objectWithoutProperties$z(_ref, _excluded$z);
|
|
1482
1511
|
|
|
1483
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1512
|
+
return /*#__PURE__*/createElement("svg", _extends$A({
|
|
1484
1513
|
width: 364,
|
|
1485
1514
|
height: 300,
|
|
1486
1515
|
fill: "none",
|
|
@@ -1488,7 +1517,7 @@ function SvgNyplNoLionPositive(_ref) {
|
|
|
1488
1517
|
"aria-labelledby": titleId
|
|
1489
1518
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1490
1519
|
id: titleId
|
|
1491
|
-
}, title) : null, _path$
|
|
1520
|
+
}, title) : null, _path$x || (_path$x = /*#__PURE__*/createElement("path", {
|
|
1492
1521
|
d: "M2.2 6.174h5.5l40.1 58.1v-58.1H53v67.2h-5.1l-40.5-58.5v58.5H2.3v-67.2h-.1z",
|
|
1493
1522
|
fill: "#000"
|
|
1494
1523
|
})), _path2$f || (_path2$f = /*#__PURE__*/createElement("path", {
|
|
@@ -1552,20 +1581,20 @@ function SvgNyplNoLionPositive(_ref) {
|
|
|
1552
1581
|
|
|
1553
1582
|
var _rect$1, _rect2;
|
|
1554
1583
|
|
|
1555
|
-
var _excluded$
|
|
1584
|
+
var _excluded$A = ["title", "titleId"];
|
|
1556
1585
|
|
|
1557
|
-
function _extends$
|
|
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); }
|
|
1558
1587
|
|
|
1559
|
-
function _objectWithoutProperties$
|
|
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; }
|
|
1560
1589
|
|
|
1561
|
-
function _objectWithoutPropertiesLoose$
|
|
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; }
|
|
1562
1591
|
|
|
1563
1592
|
function SvgPlus(_ref) {
|
|
1564
1593
|
var title = _ref.title,
|
|
1565
1594
|
titleId = _ref.titleId,
|
|
1566
|
-
props = _objectWithoutProperties$
|
|
1595
|
+
props = _objectWithoutProperties$A(_ref, _excluded$A);
|
|
1567
1596
|
|
|
1568
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1597
|
+
return /*#__PURE__*/createElement("svg", _extends$B({
|
|
1569
1598
|
viewBox: "0 0 23 23",
|
|
1570
1599
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1571
1600
|
"aria-labelledby": titleId
|
|
@@ -1588,20 +1617,20 @@ function SvgPlus(_ref) {
|
|
|
1588
1617
|
|
|
1589
1618
|
var _g$3, _defs$3;
|
|
1590
1619
|
|
|
1591
|
-
var _excluded$
|
|
1620
|
+
var _excluded$B = ["title", "titleId"];
|
|
1592
1621
|
|
|
1593
|
-
function _extends$
|
|
1622
|
+
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); }
|
|
1594
1623
|
|
|
1595
|
-
function _objectWithoutProperties$
|
|
1624
|
+
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; }
|
|
1596
1625
|
|
|
1597
|
-
function _objectWithoutPropertiesLoose$
|
|
1626
|
+
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; }
|
|
1598
1627
|
|
|
1599
1628
|
function SvgQueensLong(_ref) {
|
|
1600
1629
|
var title = _ref.title,
|
|
1601
1630
|
titleId = _ref.titleId,
|
|
1602
|
-
props = _objectWithoutProperties$
|
|
1631
|
+
props = _objectWithoutProperties$B(_ref, _excluded$B);
|
|
1603
1632
|
|
|
1604
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1633
|
+
return /*#__PURE__*/createElement("svg", _extends$C({
|
|
1605
1634
|
width: 355,
|
|
1606
1635
|
height: 48,
|
|
1607
1636
|
fill: "none",
|
|
@@ -1650,20 +1679,20 @@ function SvgQueensLong(_ref) {
|
|
|
1650
1679
|
|
|
1651
1680
|
var _g$4, _defs$4;
|
|
1652
1681
|
|
|
1653
|
-
var _excluded$
|
|
1682
|
+
var _excluded$C = ["title", "titleId"];
|
|
1654
1683
|
|
|
1655
|
-
function _extends$
|
|
1684
|
+
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); }
|
|
1656
1685
|
|
|
1657
|
-
function _objectWithoutProperties$
|
|
1686
|
+
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; }
|
|
1658
1687
|
|
|
1659
|
-
function _objectWithoutPropertiesLoose$
|
|
1688
|
+
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; }
|
|
1660
1689
|
|
|
1661
1690
|
function SvgQueensStacked(_ref) {
|
|
1662
1691
|
var title = _ref.title,
|
|
1663
1692
|
titleId = _ref.titleId,
|
|
1664
|
-
props = _objectWithoutProperties$
|
|
1693
|
+
props = _objectWithoutProperties$C(_ref, _excluded$C);
|
|
1665
1694
|
|
|
1666
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1695
|
+
return /*#__PURE__*/createElement("svg", _extends$D({
|
|
1667
1696
|
width: 320,
|
|
1668
1697
|
height: 174,
|
|
1669
1698
|
fill: "none",
|
|
@@ -1685,22 +1714,22 @@ function SvgQueensStacked(_ref) {
|
|
|
1685
1714
|
})))));
|
|
1686
1715
|
}
|
|
1687
1716
|
|
|
1688
|
-
var _path$
|
|
1717
|
+
var _path$y, _path2$g, _path3$c, _path4$6, _path5$5;
|
|
1689
1718
|
|
|
1690
|
-
var _excluded$
|
|
1719
|
+
var _excluded$D = ["title", "titleId"];
|
|
1691
1720
|
|
|
1692
|
-
function _extends$
|
|
1721
|
+
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); }
|
|
1693
1722
|
|
|
1694
|
-
function _objectWithoutProperties$
|
|
1723
|
+
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; }
|
|
1695
1724
|
|
|
1696
|
-
function _objectWithoutPropertiesLoose$
|
|
1725
|
+
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; }
|
|
1697
1726
|
|
|
1698
1727
|
function SvgSchomburgCircle(_ref) {
|
|
1699
1728
|
var title = _ref.title,
|
|
1700
1729
|
titleId = _ref.titleId,
|
|
1701
|
-
props = _objectWithoutProperties$
|
|
1730
|
+
props = _objectWithoutProperties$D(_ref, _excluded$D);
|
|
1702
1731
|
|
|
1703
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1732
|
+
return /*#__PURE__*/createElement("svg", _extends$E({
|
|
1704
1733
|
width: 67,
|
|
1705
1734
|
height: 67,
|
|
1706
1735
|
fill: "none",
|
|
@@ -1708,7 +1737,7 @@ function SvgSchomburgCircle(_ref) {
|
|
|
1708
1737
|
"aria-labelledby": titleId
|
|
1709
1738
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1710
1739
|
id: titleId
|
|
1711
|
-
}, title) : null, _path$
|
|
1740
|
+
}, title) : null, _path$y || (_path$y = /*#__PURE__*/createElement("path", {
|
|
1712
1741
|
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",
|
|
1713
1742
|
fill: "#C54B38"
|
|
1714
1743
|
})), _path2$g || (_path2$g = /*#__PURE__*/createElement("path", {
|
|
@@ -1726,22 +1755,22 @@ function SvgSchomburgCircle(_ref) {
|
|
|
1726
1755
|
})));
|
|
1727
1756
|
}
|
|
1728
1757
|
|
|
1729
|
-
var _path$
|
|
1758
|
+
var _path$z, _path2$h, _path3$d, _path4$7, _path5$6, _path6$4, _path7$4;
|
|
1730
1759
|
|
|
1731
|
-
var _excluded$
|
|
1760
|
+
var _excluded$E = ["title", "titleId"];
|
|
1732
1761
|
|
|
1733
|
-
function _extends$
|
|
1762
|
+
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); }
|
|
1734
1763
|
|
|
1735
|
-
function _objectWithoutProperties$
|
|
1764
|
+
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; }
|
|
1736
1765
|
|
|
1737
|
-
function _objectWithoutPropertiesLoose$
|
|
1766
|
+
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; }
|
|
1738
1767
|
|
|
1739
1768
|
function SvgSchomburgPositive(_ref) {
|
|
1740
1769
|
var title = _ref.title,
|
|
1741
1770
|
titleId = _ref.titleId,
|
|
1742
|
-
props = _objectWithoutProperties$
|
|
1771
|
+
props = _objectWithoutProperties$E(_ref, _excluded$E);
|
|
1743
1772
|
|
|
1744
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1773
|
+
return /*#__PURE__*/createElement("svg", _extends$F({
|
|
1745
1774
|
width: 185,
|
|
1746
1775
|
height: 79,
|
|
1747
1776
|
fill: "none",
|
|
@@ -1749,7 +1778,7 @@ function SvgSchomburgPositive(_ref) {
|
|
|
1749
1778
|
"aria-labelledby": titleId
|
|
1750
1779
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1751
1780
|
id: titleId
|
|
1752
|
-
}, title) : null, _path$
|
|
1781
|
+
}, title) : null, _path$z || (_path$z = /*#__PURE__*/createElement("path", {
|
|
1753
1782
|
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",
|
|
1754
1783
|
fill: "#010101"
|
|
1755
1784
|
})), _path2$h || (_path2$h = /*#__PURE__*/createElement("path", {
|
|
@@ -1773,28 +1802,28 @@ function SvgSchomburgPositive(_ref) {
|
|
|
1773
1802
|
})));
|
|
1774
1803
|
}
|
|
1775
1804
|
|
|
1776
|
-
var _path$
|
|
1805
|
+
var _path$A;
|
|
1777
1806
|
|
|
1778
|
-
var _excluded$
|
|
1807
|
+
var _excluded$F = ["title", "titleId"];
|
|
1779
1808
|
|
|
1780
|
-
function _extends$
|
|
1809
|
+
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); }
|
|
1781
1810
|
|
|
1782
|
-
function _objectWithoutProperties$
|
|
1811
|
+
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; }
|
|
1783
1812
|
|
|
1784
|
-
function _objectWithoutPropertiesLoose$
|
|
1813
|
+
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; }
|
|
1785
1814
|
|
|
1786
1815
|
function SvgSearch(_ref) {
|
|
1787
1816
|
var title = _ref.title,
|
|
1788
1817
|
titleId = _ref.titleId,
|
|
1789
|
-
props = _objectWithoutProperties$
|
|
1818
|
+
props = _objectWithoutProperties$F(_ref, _excluded$F);
|
|
1790
1819
|
|
|
1791
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1820
|
+
return /*#__PURE__*/createElement("svg", _extends$G({
|
|
1792
1821
|
viewBox: "0 0 24 24",
|
|
1793
1822
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1794
1823
|
"aria-labelledby": titleId
|
|
1795
1824
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1796
1825
|
id: titleId
|
|
1797
|
-
}, title) : null, _path$
|
|
1826
|
+
}, title) : null, _path$A || (_path$A = /*#__PURE__*/createElement("path", {
|
|
1798
1827
|
fillRule: "evenodd",
|
|
1799
1828
|
clipRule: "evenodd",
|
|
1800
1829
|
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"
|
|
@@ -1803,20 +1832,20 @@ function SvgSearch(_ref) {
|
|
|
1803
1832
|
|
|
1804
1833
|
var _g$5, _defs$5;
|
|
1805
1834
|
|
|
1806
|
-
var _excluded$
|
|
1835
|
+
var _excluded$G = ["title", "titleId"];
|
|
1807
1836
|
|
|
1808
|
-
function _extends$
|
|
1837
|
+
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); }
|
|
1809
1838
|
|
|
1810
|
-
function _objectWithoutProperties$
|
|
1839
|
+
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; }
|
|
1811
1840
|
|
|
1812
|
-
function _objectWithoutPropertiesLoose$
|
|
1841
|
+
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; }
|
|
1813
1842
|
|
|
1814
1843
|
function SvgSimplyeBlack(_ref) {
|
|
1815
1844
|
var title = _ref.title,
|
|
1816
1845
|
titleId = _ref.titleId,
|
|
1817
|
-
props = _objectWithoutProperties$
|
|
1846
|
+
props = _objectWithoutProperties$G(_ref, _excluded$G);
|
|
1818
1847
|
|
|
1819
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1848
|
+
return /*#__PURE__*/createElement("svg", _extends$H({
|
|
1820
1849
|
width: 512,
|
|
1821
1850
|
height: 148,
|
|
1822
1851
|
fill: "none",
|
|
@@ -1844,20 +1873,20 @@ function SvgSimplyeBlack(_ref) {
|
|
|
1844
1873
|
|
|
1845
1874
|
var _g$6, _defs$6;
|
|
1846
1875
|
|
|
1847
|
-
var _excluded$
|
|
1876
|
+
var _excluded$H = ["title", "titleId"];
|
|
1848
1877
|
|
|
1849
|
-
function _extends$
|
|
1878
|
+
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); }
|
|
1850
1879
|
|
|
1851
|
-
function _objectWithoutProperties$
|
|
1880
|
+
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; }
|
|
1852
1881
|
|
|
1853
|
-
function _objectWithoutPropertiesLoose$
|
|
1882
|
+
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; }
|
|
1854
1883
|
|
|
1855
1884
|
function SvgSimplyeColor(_ref) {
|
|
1856
1885
|
var title = _ref.title,
|
|
1857
1886
|
titleId = _ref.titleId,
|
|
1858
|
-
props = _objectWithoutProperties$
|
|
1887
|
+
props = _objectWithoutProperties$H(_ref, _excluded$H);
|
|
1859
1888
|
|
|
1860
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1889
|
+
return /*#__PURE__*/createElement("svg", _extends$I({
|
|
1861
1890
|
width: 682,
|
|
1862
1891
|
height: 196,
|
|
1863
1892
|
fill: "none",
|
|
@@ -1888,22 +1917,22 @@ function SvgSimplyeColor(_ref) {
|
|
|
1888
1917
|
})))));
|
|
1889
1918
|
}
|
|
1890
1919
|
|
|
1891
|
-
var _path$
|
|
1920
|
+
var _path$B;
|
|
1892
1921
|
|
|
1893
|
-
var _excluded$
|
|
1922
|
+
var _excluded$I = ["title", "titleId"];
|
|
1894
1923
|
|
|
1895
|
-
function _extends$
|
|
1924
|
+
function _extends$J() { _extends$J = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$J.apply(this, arguments); }
|
|
1896
1925
|
|
|
1897
|
-
function _objectWithoutProperties$
|
|
1926
|
+
function _objectWithoutProperties$I(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$J(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1898
1927
|
|
|
1899
|
-
function _objectWithoutPropertiesLoose$
|
|
1928
|
+
function _objectWithoutPropertiesLoose$J(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1900
1929
|
|
|
1901
1930
|
function SvgSnflNegative(_ref) {
|
|
1902
1931
|
var title = _ref.title,
|
|
1903
1932
|
titleId = _ref.titleId,
|
|
1904
|
-
props = _objectWithoutProperties$
|
|
1933
|
+
props = _objectWithoutProperties$I(_ref, _excluded$I);
|
|
1905
1934
|
|
|
1906
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1935
|
+
return /*#__PURE__*/createElement("svg", _extends$J({
|
|
1907
1936
|
width: 73,
|
|
1908
1937
|
height: 99,
|
|
1909
1938
|
fill: "none",
|
|
@@ -1911,28 +1940,28 @@ function SvgSnflNegative(_ref) {
|
|
|
1911
1940
|
"aria-labelledby": titleId
|
|
1912
1941
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1913
1942
|
id: titleId
|
|
1914
|
-
}, title) : null, _path$
|
|
1943
|
+
}, title) : null, _path$B || (_path$B = /*#__PURE__*/createElement("path", {
|
|
1915
1944
|
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",
|
|
1916
1945
|
fill: "#fff"
|
|
1917
1946
|
})));
|
|
1918
1947
|
}
|
|
1919
1948
|
|
|
1920
|
-
var _path$
|
|
1949
|
+
var _path$C;
|
|
1921
1950
|
|
|
1922
|
-
var _excluded$
|
|
1951
|
+
var _excluded$J = ["title", "titleId"];
|
|
1923
1952
|
|
|
1924
|
-
function _extends$
|
|
1953
|
+
function _extends$K() { _extends$K = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$K.apply(this, arguments); }
|
|
1925
1954
|
|
|
1926
|
-
function _objectWithoutProperties$
|
|
1955
|
+
function _objectWithoutProperties$J(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$K(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1927
1956
|
|
|
1928
|
-
function _objectWithoutPropertiesLoose$
|
|
1957
|
+
function _objectWithoutPropertiesLoose$K(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1929
1958
|
|
|
1930
1959
|
function SvgSnflPositive(_ref) {
|
|
1931
1960
|
var title = _ref.title,
|
|
1932
1961
|
titleId = _ref.titleId,
|
|
1933
|
-
props = _objectWithoutProperties$
|
|
1962
|
+
props = _objectWithoutProperties$J(_ref, _excluded$J);
|
|
1934
1963
|
|
|
1935
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1964
|
+
return /*#__PURE__*/createElement("svg", _extends$K({
|
|
1936
1965
|
width: 84,
|
|
1937
1966
|
height: 111,
|
|
1938
1967
|
fill: "none",
|
|
@@ -1940,63 +1969,63 @@ function SvgSnflPositive(_ref) {
|
|
|
1940
1969
|
"aria-labelledby": titleId
|
|
1941
1970
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1942
1971
|
id: titleId
|
|
1943
|
-
}, title) : null, _path$
|
|
1972
|
+
}, title) : null, _path$C || (_path$C = /*#__PURE__*/createElement("path", {
|
|
1944
1973
|
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",
|
|
1945
1974
|
fill: "#000"
|
|
1946
1975
|
})));
|
|
1947
1976
|
}
|
|
1948
1977
|
|
|
1949
|
-
var _path$
|
|
1978
|
+
var _path$D;
|
|
1950
1979
|
|
|
1951
|
-
var _excluded$
|
|
1980
|
+
var _excluded$K = ["title", "titleId"];
|
|
1952
1981
|
|
|
1953
|
-
function _extends$
|
|
1982
|
+
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); }
|
|
1954
1983
|
|
|
1955
|
-
function _objectWithoutProperties$
|
|
1984
|
+
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; }
|
|
1956
1985
|
|
|
1957
|
-
function _objectWithoutPropertiesLoose$
|
|
1986
|
+
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; }
|
|
1958
1987
|
|
|
1959
1988
|
function SvgSpeakerNotes(_ref) {
|
|
1960
1989
|
var title = _ref.title,
|
|
1961
1990
|
titleId = _ref.titleId,
|
|
1962
|
-
props = _objectWithoutProperties$
|
|
1991
|
+
props = _objectWithoutProperties$K(_ref, _excluded$K);
|
|
1963
1992
|
|
|
1964
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1993
|
+
return /*#__PURE__*/createElement("svg", _extends$L({
|
|
1965
1994
|
viewBox: "0 0 24 24",
|
|
1966
1995
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1967
1996
|
"aria-labelledby": titleId
|
|
1968
1997
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1969
1998
|
id: titleId
|
|
1970
|
-
}, title) : null, _path$
|
|
1999
|
+
}, title) : null, _path$D || (_path$D = /*#__PURE__*/createElement("path", {
|
|
1971
2000
|
fillRule: "evenodd",
|
|
1972
2001
|
clipRule: "evenodd",
|
|
1973
2002
|
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"
|
|
1974
2003
|
})));
|
|
1975
2004
|
}
|
|
1976
2005
|
|
|
1977
|
-
var _path$
|
|
2006
|
+
var _path$E, _path2$i;
|
|
1978
2007
|
|
|
1979
|
-
var _excluded$
|
|
2008
|
+
var _excluded$L = ["title", "titleId"];
|
|
1980
2009
|
|
|
1981
|
-
function _extends$
|
|
2010
|
+
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); }
|
|
1982
2011
|
|
|
1983
|
-
function _objectWithoutProperties$
|
|
2012
|
+
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; }
|
|
1984
2013
|
|
|
1985
|
-
function _objectWithoutPropertiesLoose$
|
|
2014
|
+
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; }
|
|
1986
2015
|
|
|
1987
2016
|
function SvgUtilityAccountFilled(_ref) {
|
|
1988
2017
|
var title = _ref.title,
|
|
1989
2018
|
titleId = _ref.titleId,
|
|
1990
|
-
props = _objectWithoutProperties$
|
|
2019
|
+
props = _objectWithoutProperties$L(_ref, _excluded$L);
|
|
1991
2020
|
|
|
1992
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
2021
|
+
return /*#__PURE__*/createElement("svg", _extends$M({
|
|
1993
2022
|
viewBox: "0 0 24 24",
|
|
1994
2023
|
fill: "none",
|
|
1995
2024
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1996
2025
|
"aria-labelledby": titleId
|
|
1997
2026
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1998
2027
|
id: titleId
|
|
1999
|
-
}, title) : null, _path$
|
|
2028
|
+
}, title) : null, _path$E || (_path$E = /*#__PURE__*/createElement("path", {
|
|
2000
2029
|
clipRule: "evenodd",
|
|
2001
2030
|
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"
|
|
2002
2031
|
})), _path2$i || (_path2$i = /*#__PURE__*/createElement("path", {
|
|
@@ -2005,29 +2034,29 @@ function SvgUtilityAccountFilled(_ref) {
|
|
|
2005
2034
|
})));
|
|
2006
2035
|
}
|
|
2007
2036
|
|
|
2008
|
-
var _path$
|
|
2037
|
+
var _path$F, _path2$j;
|
|
2009
2038
|
|
|
2010
|
-
var _excluded$
|
|
2039
|
+
var _excluded$M = ["title", "titleId"];
|
|
2011
2040
|
|
|
2012
|
-
function _extends$
|
|
2041
|
+
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); }
|
|
2013
2042
|
|
|
2014
|
-
function _objectWithoutProperties$
|
|
2043
|
+
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; }
|
|
2015
2044
|
|
|
2016
|
-
function _objectWithoutPropertiesLoose$
|
|
2045
|
+
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; }
|
|
2017
2046
|
|
|
2018
2047
|
function SvgUtilityAccountUnfilled(_ref) {
|
|
2019
2048
|
var title = _ref.title,
|
|
2020
2049
|
titleId = _ref.titleId,
|
|
2021
|
-
props = _objectWithoutProperties$
|
|
2050
|
+
props = _objectWithoutProperties$M(_ref, _excluded$M);
|
|
2022
2051
|
|
|
2023
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
2052
|
+
return /*#__PURE__*/createElement("svg", _extends$N({
|
|
2024
2053
|
viewBox: "0 0 24 24",
|
|
2025
2054
|
fill: "none",
|
|
2026
2055
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2027
2056
|
"aria-labelledby": titleId
|
|
2028
2057
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
2029
2058
|
id: titleId
|
|
2030
|
-
}, title) : null, _path$
|
|
2059
|
+
}, title) : null, _path$F || (_path$F = /*#__PURE__*/createElement("path", {
|
|
2031
2060
|
fillRule: "evenodd",
|
|
2032
2061
|
clipRule: "evenodd",
|
|
2033
2062
|
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",
|
|
@@ -2042,28 +2071,28 @@ function SvgUtilityAccountUnfilled(_ref) {
|
|
|
2042
2071
|
})));
|
|
2043
2072
|
}
|
|
2044
2073
|
|
|
2045
|
-
var _path$
|
|
2074
|
+
var _path$G;
|
|
2046
2075
|
|
|
2047
|
-
var _excluded$
|
|
2076
|
+
var _excluded$N = ["title", "titleId"];
|
|
2048
2077
|
|
|
2049
|
-
function _extends$
|
|
2078
|
+
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); }
|
|
2050
2079
|
|
|
2051
|
-
function _objectWithoutProperties$
|
|
2080
|
+
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; }
|
|
2052
2081
|
|
|
2053
|
-
function _objectWithoutPropertiesLoose$
|
|
2082
|
+
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; }
|
|
2054
2083
|
|
|
2055
2084
|
function SvgUtilityHamburger(_ref) {
|
|
2056
2085
|
var title = _ref.title,
|
|
2057
2086
|
titleId = _ref.titleId,
|
|
2058
|
-
props = _objectWithoutProperties$
|
|
2087
|
+
props = _objectWithoutProperties$N(_ref, _excluded$N);
|
|
2059
2088
|
|
|
2060
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
2089
|
+
return /*#__PURE__*/createElement("svg", _extends$O({
|
|
2061
2090
|
viewBox: "0 0 24 24",
|
|
2062
2091
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2063
2092
|
"aria-labelledby": titleId
|
|
2064
2093
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
2065
2094
|
id: titleId
|
|
2066
|
-
}, title) : null, _path$
|
|
2095
|
+
}, title) : null, _path$G || (_path$G = /*#__PURE__*/createElement("path", {
|
|
2067
2096
|
fillRule: "evenodd",
|
|
2068
2097
|
clipRule: "evenodd",
|
|
2069
2098
|
stroke: "#000",
|
|
@@ -2081,6 +2110,7 @@ var iconSvgs = {
|
|
|
2081
2110
|
action_help_default: SvgActionHelpDefault,
|
|
2082
2111
|
action_help_outline: SvgActionHelpOutline,
|
|
2083
2112
|
action_launch: SvgActionLaunch,
|
|
2113
|
+
alert_notification_important: SvgAlertNotificationImportant,
|
|
2084
2114
|
arrow: SvgArrow,
|
|
2085
2115
|
brooklyn: SvgBrooklyn,
|
|
2086
2116
|
check: SvgCheck,
|
|
@@ -2282,6 +2312,7 @@ function Accordion(props) {
|
|
|
2282
2312
|
var ColorVariants;
|
|
2283
2313
|
|
|
2284
2314
|
(function (ColorVariants) {
|
|
2315
|
+
ColorVariants["Blogs"] = "blogs";
|
|
2285
2316
|
ColorVariants["BooksAndMore"] = "booksAndMore";
|
|
2286
2317
|
ColorVariants["Locations"] = "locations";
|
|
2287
2318
|
ColorVariants["Research"] = "research";
|
|
@@ -2565,6 +2596,8 @@ var ImageSizes;
|
|
|
2565
2596
|
ImageSizes["Large"] = "large";
|
|
2566
2597
|
ImageSizes["Medium"] = "medium";
|
|
2567
2598
|
ImageSizes["Small"] = "small";
|
|
2599
|
+
ImageSizes["ExtraSmall"] = "xsmall";
|
|
2600
|
+
ImageSizes["ExtraExtraSmall"] = "xxsmall";
|
|
2568
2601
|
})(ImageSizes || (ImageSizes = {}));
|
|
2569
2602
|
|
|
2570
2603
|
var ImageTypes;
|
|
@@ -2670,14 +2703,15 @@ function CardImage(props) {
|
|
|
2670
2703
|
imageSize: imageSize,
|
|
2671
2704
|
layout: layout
|
|
2672
2705
|
});
|
|
2673
|
-
return createElement(
|
|
2706
|
+
return createElement(Box, {
|
|
2707
|
+
__css: styles
|
|
2708
|
+
}, createElement(Image, {
|
|
2674
2709
|
alt: alt,
|
|
2675
2710
|
component: component,
|
|
2676
2711
|
imageAspectRatio: imageAspectRatio,
|
|
2677
2712
|
imageSize: imageSize,
|
|
2678
|
-
src: src
|
|
2679
|
-
|
|
2680
|
-
});
|
|
2713
|
+
src: src
|
|
2714
|
+
}));
|
|
2681
2715
|
} // CardHeading child-component
|
|
2682
2716
|
|
|
2683
2717
|
|
|
@@ -2921,7 +2955,7 @@ function HelperErrorText(props) {
|
|
|
2921
2955
|
}, children);
|
|
2922
2956
|
}
|
|
2923
2957
|
|
|
2924
|
-
var _excluded$
|
|
2958
|
+
var _excluded$O = ["isIndeterminate", "isChecked"];
|
|
2925
2959
|
var onChangeDefault = function onChangeDefault() {
|
|
2926
2960
|
return;
|
|
2927
2961
|
};
|
|
@@ -2930,7 +2964,7 @@ function CheckboxIcon(props) {
|
|
|
2930
2964
|
// We don't need the `isIndeterminate` or `isChecked` props but it
|
|
2931
2965
|
// causes rendering issues on the SVG element, so we remove them
|
|
2932
2966
|
// before passing all the props to the `Icon` component.
|
|
2933
|
-
var rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2967
|
+
var rest = _objectWithoutPropertiesLoose(props, _excluded$O);
|
|
2934
2968
|
|
|
2935
2969
|
return createElement(Icon$2, Object.assign({
|
|
2936
2970
|
viewBox: "0 0 24 24"
|
|
@@ -3025,6 +3059,7 @@ var Checkbox = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
3025
3059
|
*
|
|
3026
3060
|
* Chakra Number Value | Chakra Name value | DS Variable
|
|
3027
3061
|
* ------------------- | ----------------- | -----------------
|
|
3062
|
+
* 0.5 | xxxs | --nypl-space-xxxs
|
|
3028
3063
|
* 1 | xxs | --nypl-space-xxs
|
|
3029
3064
|
* 2 | xs | --nypl-space-xs
|
|
3030
3065
|
* 4 | s | --nypl-space-s
|
|
@@ -3037,6 +3072,8 @@ var Checkbox = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
3037
3072
|
var spacing = {
|
|
3038
3073
|
px: "1px",
|
|
3039
3074
|
0: "0",
|
|
3075
|
+
// --nypl-space-xxxs = 2px
|
|
3076
|
+
xxxs: "0.125rem",
|
|
3040
3077
|
0.5: "0.125rem",
|
|
3041
3078
|
// --nypl-space-xxs = 4px
|
|
3042
3079
|
xxs: "0.25rem",
|
|
@@ -4129,11 +4166,20 @@ var Accordion$1 = {
|
|
|
4129
4166
|
};
|
|
4130
4167
|
|
|
4131
4168
|
// Variant styling
|
|
4169
|
+
var blogs = {
|
|
4170
|
+
bg: "section.blogs.secondary",
|
|
4171
|
+
color: "ui.black",
|
|
4172
|
+
a: {
|
|
4173
|
+
_hover: {
|
|
4174
|
+
color: "ui.gray.xdark"
|
|
4175
|
+
}
|
|
4176
|
+
}
|
|
4177
|
+
};
|
|
4132
4178
|
var booksAndMore = {
|
|
4133
4179
|
bg: "section.books-and-more.secondary"
|
|
4134
4180
|
};
|
|
4135
4181
|
var locations = {
|
|
4136
|
-
bg: "section.locations.
|
|
4182
|
+
bg: "section.locations.primary"
|
|
4137
4183
|
};
|
|
4138
4184
|
var research = {
|
|
4139
4185
|
bg: "section.research.secondary"
|
|
@@ -4217,6 +4263,7 @@ var Breadcrumb = {
|
|
|
4217
4263
|
},
|
|
4218
4264
|
// Available variants:
|
|
4219
4265
|
variants: {
|
|
4266
|
+
blogs: blogs,
|
|
4220
4267
|
booksAndMore: booksAndMore,
|
|
4221
4268
|
locations: locations,
|
|
4222
4269
|
research: research,
|
|
@@ -4358,6 +4405,18 @@ var Button$1 = {
|
|
|
4358
4405
|
};
|
|
4359
4406
|
|
|
4360
4407
|
var imageSizes = {
|
|
4408
|
+
xxsmall: {
|
|
4409
|
+
flex: {
|
|
4410
|
+
base: "0 0 100%",
|
|
4411
|
+
md: "0 0 64px"
|
|
4412
|
+
},
|
|
4413
|
+
width: "100%"
|
|
4414
|
+
},
|
|
4415
|
+
xsmall: {
|
|
4416
|
+
flex: {
|
|
4417
|
+
md: "0 0 96px"
|
|
4418
|
+
}
|
|
4419
|
+
},
|
|
4361
4420
|
small: {
|
|
4362
4421
|
flex: {
|
|
4363
4422
|
md: "0 0 165px"
|
|
@@ -4523,11 +4582,6 @@ var CardImage$1 = {
|
|
|
4523
4582
|
// These sizes are only for the "row" layout.
|
|
4524
4583
|
var size = imageSizes[imageSize] || {};
|
|
4525
4584
|
var layoutStyles = layout === "row" ? _extends({
|
|
4526
|
-
display: "flex",
|
|
4527
|
-
flexFlow: {
|
|
4528
|
-
base: "column nowrap",
|
|
4529
|
-
md: "row"
|
|
4530
|
-
},
|
|
4531
4585
|
flex: {
|
|
4532
4586
|
md: "0 0 225px"
|
|
4533
4587
|
},
|
|
@@ -4540,9 +4594,14 @@ var CardImage$1 = {
|
|
|
4540
4594
|
margin: {
|
|
4541
4595
|
base: imageAtEnd ? "var(--nypl-space-m) 0 0" : null,
|
|
4542
4596
|
md: imageAtEnd ? "0 0 0 var(--nypl-space-m)" : "0 var(--nypl-space-m) 0 0"
|
|
4597
|
+
},
|
|
4598
|
+
width: {
|
|
4599
|
+
base: "100%",
|
|
4600
|
+
md: null
|
|
4543
4601
|
}
|
|
4544
4602
|
}, size) : {
|
|
4545
|
-
marginBottom: "xs"
|
|
4603
|
+
marginBottom: "xs",
|
|
4604
|
+
width: "100%"
|
|
4546
4605
|
};
|
|
4547
4606
|
var imageAtEndStyles = imageAtEnd ? {
|
|
4548
4607
|
marginBottom: "0",
|
|
@@ -4632,7 +4691,7 @@ var checkboxRadioHelperStyle = /*#__PURE__*/_extends({}, helperTextMargin, {
|
|
|
4632
4691
|
var labelLegendText = {
|
|
4633
4692
|
alignItems: "baseline",
|
|
4634
4693
|
width: "100%",
|
|
4635
|
-
marginBottom: "
|
|
4694
|
+
marginBottom: "xs",
|
|
4636
4695
|
fontSize: "14px",
|
|
4637
4696
|
fontWeight: "medium",
|
|
4638
4697
|
display: "flex",
|
|
@@ -4769,6 +4828,12 @@ var imageSizes$1 = {
|
|
|
4769
4828
|
"default": {
|
|
4770
4829
|
maxWidth: "100%"
|
|
4771
4830
|
},
|
|
4831
|
+
xxsmall: /*#__PURE__*/_extends({}, sideMarginsAuto, {
|
|
4832
|
+
maxWidth: "64px"
|
|
4833
|
+
}),
|
|
4834
|
+
xsmall: /*#__PURE__*/_extends({}, sideMarginsAuto, {
|
|
4835
|
+
maxWidth: "96px"
|
|
4836
|
+
}),
|
|
4772
4837
|
small: /*#__PURE__*/_extends({}, sideMarginsAuto, {
|
|
4773
4838
|
maxWidth: "165px"
|
|
4774
4839
|
}),
|
|
@@ -5306,10 +5371,10 @@ var svgBase = {
|
|
|
5306
5371
|
var align = {
|
|
5307
5372
|
none: {},
|
|
5308
5373
|
left: {
|
|
5309
|
-
marginRight: "
|
|
5374
|
+
marginRight: "xxs"
|
|
5310
5375
|
},
|
|
5311
5376
|
right: {
|
|
5312
|
-
marginLeft: "
|
|
5377
|
+
marginLeft: "xxs"
|
|
5313
5378
|
}
|
|
5314
5379
|
};
|
|
5315
5380
|
var iconRotation = {
|
|
@@ -5587,14 +5652,16 @@ var NotificationContent = {
|
|
|
5587
5652
|
parts: ["content"],
|
|
5588
5653
|
baseStyle: function baseStyle(_ref2) {
|
|
5589
5654
|
var alignText = _ref2.alignText,
|
|
5655
|
+
icon = _ref2.icon,
|
|
5590
5656
|
notificationType = _ref2.notificationType;
|
|
5591
5657
|
return {
|
|
5592
5658
|
display: "flex",
|
|
5593
5659
|
justifyContent: "center",
|
|
5594
5660
|
content: {
|
|
5595
|
-
|
|
5661
|
+
color: notificationType === NotificationTypes.Warning ? "brand.primary" : "currentColor",
|
|
5662
|
+
marginTop: icon ? "xxxs" : "0",
|
|
5596
5663
|
paddingLeft: alignText ? "calc(var(--nypl-space-m) + var(--nypl-space-s))" : null,
|
|
5597
|
-
|
|
5664
|
+
width: "100%"
|
|
5598
5665
|
}
|
|
5599
5666
|
};
|
|
5600
5667
|
}
|
|
@@ -5603,6 +5670,7 @@ var NotificationHeading = {
|
|
|
5603
5670
|
parts: ["heading"],
|
|
5604
5671
|
baseStyle: function baseStyle(_ref3) {
|
|
5605
5672
|
var centered = _ref3.centered,
|
|
5673
|
+
icon = _ref3.icon,
|
|
5606
5674
|
notificationType = _ref3.notificationType;
|
|
5607
5675
|
var color = "ui.black";
|
|
5608
5676
|
|
|
@@ -5618,6 +5686,7 @@ var NotificationHeading = {
|
|
|
5618
5686
|
justifyContent: centered ? "center" : null,
|
|
5619
5687
|
heading: {
|
|
5620
5688
|
marginBottom: "0",
|
|
5689
|
+
marginTop: icon ? "xxxs" : "0",
|
|
5621
5690
|
color: color
|
|
5622
5691
|
}
|
|
5623
5692
|
};
|
|
@@ -6412,6 +6481,76 @@ var TextInput$1 = {
|
|
|
6412
6481
|
}
|
|
6413
6482
|
};
|
|
6414
6483
|
|
|
6484
|
+
var baseStyle$3 = {
|
|
6485
|
+
label: {
|
|
6486
|
+
display: "flex",
|
|
6487
|
+
alignItems: "center",
|
|
6488
|
+
width: "fit-content"
|
|
6489
|
+
},
|
|
6490
|
+
helper: /*#__PURE__*/_extends({}, helperTextMargin, {
|
|
6491
|
+
marginLeft: "xs"
|
|
6492
|
+
})
|
|
6493
|
+
};
|
|
6494
|
+
var Switch = {
|
|
6495
|
+
baseStyle: {
|
|
6496
|
+
opacity: 0.4,
|
|
6497
|
+
track: {
|
|
6498
|
+
p: "4px",
|
|
6499
|
+
border: "1px solid",
|
|
6500
|
+
borderColor: "ui.gray.medium",
|
|
6501
|
+
_checked: {
|
|
6502
|
+
borderColor: "ui.link.primary",
|
|
6503
|
+
bg: "ui.link.primary",
|
|
6504
|
+
opacity: 1
|
|
6505
|
+
},
|
|
6506
|
+
_invalid: {
|
|
6507
|
+
borderColor: "ui.error.primary",
|
|
6508
|
+
bg: "inherit",
|
|
6509
|
+
"> span": {
|
|
6510
|
+
bg: "ui.error.primary"
|
|
6511
|
+
}
|
|
6512
|
+
},
|
|
6513
|
+
_disabled: {
|
|
6514
|
+
borderColor: "ui.gray.medium",
|
|
6515
|
+
bg: "ui.gray.medium",
|
|
6516
|
+
_checked: {
|
|
6517
|
+
opacity: 0.4
|
|
6518
|
+
}
|
|
6519
|
+
},
|
|
6520
|
+
_focus: {
|
|
6521
|
+
outline: "2px solid",
|
|
6522
|
+
outlineColor: "ui.focus",
|
|
6523
|
+
outlineOffset: "2px",
|
|
6524
|
+
zIndex: "9999"
|
|
6525
|
+
}
|
|
6526
|
+
},
|
|
6527
|
+
label: {
|
|
6528
|
+
fontSize: -1,
|
|
6529
|
+
marginLeft: "xs"
|
|
6530
|
+
},
|
|
6531
|
+
thumb: {
|
|
6532
|
+
_disabled: {
|
|
6533
|
+
bg: "ui.error.primary"
|
|
6534
|
+
}
|
|
6535
|
+
}
|
|
6536
|
+
},
|
|
6537
|
+
defaultProps: {
|
|
6538
|
+
colorScheme: "white"
|
|
6539
|
+
}
|
|
6540
|
+
};
|
|
6541
|
+
var Toggle = {
|
|
6542
|
+
parts: ["helper"],
|
|
6543
|
+
baseStyle: baseStyle$3,
|
|
6544
|
+
// Default values
|
|
6545
|
+
defaultProps: {
|
|
6546
|
+
size: "lg"
|
|
6547
|
+
}
|
|
6548
|
+
};
|
|
6549
|
+
var Toggle$1 = {
|
|
6550
|
+
Toggle: Toggle,
|
|
6551
|
+
Switch: Switch
|
|
6552
|
+
};
|
|
6553
|
+
|
|
6415
6554
|
var fourByThree = {
|
|
6416
6555
|
inside: {
|
|
6417
6556
|
paddingBottom: "75%"
|
|
@@ -6524,7 +6663,8 @@ var theme = /*#__PURE__*/extendTheme( /*#__PURE__*/_extends({
|
|
|
6524
6663
|
Tabs: CustomTabs
|
|
6525
6664
|
}, TemplateStyles, {
|
|
6526
6665
|
Text: Text,
|
|
6527
|
-
TextInput: TextInput$1
|
|
6666
|
+
TextInput: TextInput$1
|
|
6667
|
+
}, Toggle$1, {
|
|
6528
6668
|
VideoPlayer: VideoPlayer
|
|
6529
6669
|
}),
|
|
6530
6670
|
// Use `cssVarPrefix` to set the prefix used on the CSS vars produced by
|
|
@@ -6751,6 +6891,7 @@ var LinkTypes;
|
|
|
6751
6891
|
LinkTypes["Backwards"] = "backwards";
|
|
6752
6892
|
LinkTypes["Button"] = "button";
|
|
6753
6893
|
LinkTypes["Default"] = "default";
|
|
6894
|
+
LinkTypes["External"] = "external";
|
|
6754
6895
|
LinkTypes["Forwards"] = "forwards";
|
|
6755
6896
|
})(LinkTypes || (LinkTypes = {}));
|
|
6756
6897
|
|
|
@@ -6759,7 +6900,7 @@ var LinkTypes;
|
|
|
6759
6900
|
* on the `Backwards` or `Forwards` `LinkTypes` type.
|
|
6760
6901
|
*/
|
|
6761
6902
|
|
|
6762
|
-
function getWithDirectionIcon(children, type) {
|
|
6903
|
+
function getWithDirectionIcon(children, type, linkId) {
|
|
6763
6904
|
var iconRotation;
|
|
6764
6905
|
var iconAlign;
|
|
6765
6906
|
var icon = null; // An icon needs a position in order for it to be created and
|
|
@@ -6773,14 +6914,27 @@ function getWithDirectionIcon(children, type) {
|
|
|
6773
6914
|
iconAlign = IconAlign.Right;
|
|
6774
6915
|
}
|
|
6775
6916
|
|
|
6917
|
+
var iconId = linkId + "-icon";
|
|
6776
6918
|
icon = createElement(Icon, {
|
|
6777
|
-
name: IconNames.Arrow,
|
|
6778
6919
|
align: iconAlign,
|
|
6920
|
+
className: "more-link",
|
|
6779
6921
|
iconRotation: iconRotation,
|
|
6780
|
-
|
|
6922
|
+
id: iconId,
|
|
6923
|
+
name: IconNames.Arrow
|
|
6781
6924
|
});
|
|
6782
6925
|
return createElement(Fragment, null, type === LinkTypes.Backwards && icon, children, type === LinkTypes.Forwards && icon);
|
|
6783
6926
|
}
|
|
6927
|
+
|
|
6928
|
+
function getExternalIcon(children, linkId) {
|
|
6929
|
+
var iconId = linkId + "-icon";
|
|
6930
|
+
var icon = createElement(Icon, {
|
|
6931
|
+
align: IconAlign.Right,
|
|
6932
|
+
className: "more-link",
|
|
6933
|
+
id: iconId,
|
|
6934
|
+
name: IconNames.ActionLaunch
|
|
6935
|
+
});
|
|
6936
|
+
return createElement(Fragment, null, children, icon);
|
|
6937
|
+
}
|
|
6784
6938
|
/**
|
|
6785
6939
|
* A component that uses an `href` prop or a child anchor element, to create
|
|
6786
6940
|
* an anchor element with added styling and conventions.
|
|
@@ -6812,7 +6966,7 @@ var Link$1 = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
6812
6966
|
throw new Error("Link needs prop 'href'");
|
|
6813
6967
|
}
|
|
6814
6968
|
|
|
6815
|
-
if (type === LinkTypes.Action || type === LinkTypes.Forwards || type === LinkTypes.Backwards) {
|
|
6969
|
+
if (type === LinkTypes.Action || type === LinkTypes.Forwards || type === LinkTypes.Backwards || type === LinkTypes.External) {
|
|
6816
6970
|
variant = "moreLink";
|
|
6817
6971
|
} else if (type === LinkTypes.Button) {
|
|
6818
6972
|
variant = "button";
|
|
@@ -6820,10 +6974,13 @@ var Link$1 = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
6820
6974
|
|
|
6821
6975
|
var style = useStyleConfig("Link", {
|
|
6822
6976
|
variant: variant
|
|
6823
|
-
}); // Render with specific direction arrows
|
|
6824
|
-
//
|
|
6977
|
+
}); // Render with specific direction arrows if the type is
|
|
6978
|
+
// Forwards or Backwards. Or render with the launch icon
|
|
6979
|
+
// if the type is External. Otherwise, do not add an icon.
|
|
6825
6980
|
|
|
6826
|
-
var newChildren = type === LinkTypes.Forwards || type === LinkTypes.Backwards
|
|
6981
|
+
var newChildren = (type === LinkTypes.Forwards || type === LinkTypes.Backwards) && getWithDirectionIcon(children, type, id) || type === LinkTypes.External && getExternalIcon(children, id) || children;
|
|
6982
|
+
var rel = type === LinkTypes.External ? "nofollow" : null;
|
|
6983
|
+
var target = type === LinkTypes.External ? "_blank" : null;
|
|
6827
6984
|
|
|
6828
6985
|
if (!href) {
|
|
6829
6986
|
// React Types error makes this fail:
|
|
@@ -6838,13 +6995,17 @@ var Link$1 = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
6838
6995
|
return cloneElement(childrenToClone, _extends({
|
|
6839
6996
|
className: className
|
|
6840
6997
|
}, linkProps, childProps, {
|
|
6841
|
-
ref: ref
|
|
6998
|
+
ref: ref,
|
|
6999
|
+
rel: rel,
|
|
7000
|
+
target: target
|
|
6842
7001
|
}), [childrenToClone.props.children]);
|
|
6843
7002
|
} else {
|
|
6844
7003
|
return createElement(Box, Object.assign({
|
|
6845
7004
|
as: "a",
|
|
6846
7005
|
className: className,
|
|
6847
|
-
ref: ref
|
|
7006
|
+
ref: ref,
|
|
7007
|
+
rel: rel,
|
|
7008
|
+
target: target
|
|
6848
7009
|
}, linkProps, {
|
|
6849
7010
|
__css: _extends({}, style, additionalStyles)
|
|
6850
7011
|
}), newChildren);
|
|
@@ -7034,6 +7195,7 @@ function NotificationHeading$1(props) {
|
|
|
7034
7195
|
notificationType = props.notificationType;
|
|
7035
7196
|
var styles = useMultiStyleConfig("NotificationHeading", {
|
|
7036
7197
|
centered: centered,
|
|
7198
|
+
icon: icon,
|
|
7037
7199
|
notificationType: notificationType
|
|
7038
7200
|
});
|
|
7039
7201
|
return React__default.createElement(Box, {
|
|
@@ -7055,6 +7217,7 @@ function NotificationContent$1(props) {
|
|
|
7055
7217
|
notificationType = props.notificationType;
|
|
7056
7218
|
var styles = useMultiStyleConfig("NotificationContent", {
|
|
7057
7219
|
alignText: alignText,
|
|
7220
|
+
icon: icon,
|
|
7058
7221
|
notificationType: notificationType
|
|
7059
7222
|
});
|
|
7060
7223
|
return React__default.createElement(Box, {
|
|
@@ -7082,7 +7245,9 @@ function Notification$1(props) {
|
|
|
7082
7245
|
notificationContent = props.notificationContent,
|
|
7083
7246
|
notificationHeading = props.notificationHeading,
|
|
7084
7247
|
_props$notificationTy = props.notificationType,
|
|
7085
|
-
notificationType = _props$notificationTy === void 0 ? NotificationTypes.Standard : _props$notificationTy
|
|
7248
|
+
notificationType = _props$notificationTy === void 0 ? NotificationTypes.Standard : _props$notificationTy,
|
|
7249
|
+
_props$showIcon = props.showIcon,
|
|
7250
|
+
showIcon = _props$showIcon === void 0 ? true : _props$showIcon;
|
|
7086
7251
|
|
|
7087
7252
|
var _useState = useState(true),
|
|
7088
7253
|
isOpen = _useState[0],
|
|
@@ -7095,7 +7260,8 @@ function Notification$1(props) {
|
|
|
7095
7260
|
var styles = useMultiStyleConfig("Notification", {
|
|
7096
7261
|
centered: centered,
|
|
7097
7262
|
noMargin: noMargin,
|
|
7098
|
-
notificationType: notificationType
|
|
7263
|
+
notificationType: notificationType,
|
|
7264
|
+
showIcon: showIcon
|
|
7099
7265
|
});
|
|
7100
7266
|
|
|
7101
7267
|
var iconElement = function iconElement() {
|
|
@@ -7105,7 +7271,12 @@ function Notification$1(props) {
|
|
|
7105
7271
|
decorative: false,
|
|
7106
7272
|
size: IconSizes.Large,
|
|
7107
7273
|
additionalStyles: styles.icon
|
|
7108
|
-
}; // If
|
|
7274
|
+
}; // If the icon should not display, return null.
|
|
7275
|
+
|
|
7276
|
+
if (!showIcon) {
|
|
7277
|
+
return null;
|
|
7278
|
+
} // If a custom icon is passed, add specific `Notification` styles.
|
|
7279
|
+
|
|
7109
7280
|
|
|
7110
7281
|
if (icon) return React__default.cloneElement(icon, _extends({
|
|
7111
7282
|
id: id + "-custom-notification-icon"
|
|
@@ -7113,13 +7284,16 @@ function Notification$1(props) {
|
|
|
7113
7284
|
var iconProps = (_iconProps = {}, _iconProps[NotificationTypes.Announcement] = {
|
|
7114
7285
|
name: IconNames.SpeakerNotes,
|
|
7115
7286
|
color: IconColors.SectionResearchSecondary
|
|
7287
|
+
}, _iconProps[NotificationTypes.Standard] = {
|
|
7288
|
+
name: IconNames.AlertNotificationImportant,
|
|
7289
|
+
color: IconColors.UiBlack
|
|
7116
7290
|
}, _iconProps[NotificationTypes.Warning] = {
|
|
7117
7291
|
name: IconNames.ErrorFilled,
|
|
7118
7292
|
color: IconColors.BrandPrimary
|
|
7119
7293
|
}, _iconProps);
|
|
7120
|
-
return
|
|
7294
|
+
return React__default.createElement(Icon, Object.assign({
|
|
7121
7295
|
id: id + "-notification-icon"
|
|
7122
|
-
}, baseIconProps, iconProps[notificationType]))
|
|
7296
|
+
}, baseIconProps, iconProps[notificationType]));
|
|
7123
7297
|
};
|
|
7124
7298
|
|
|
7125
7299
|
var dismissibleButton = dismissible && React__default.createElement(Button, {
|
|
@@ -7139,7 +7313,7 @@ function Notification$1(props) {
|
|
|
7139
7313
|
notificationType: notificationType
|
|
7140
7314
|
}, notificationHeading); // Specific alignment styles for the content.
|
|
7141
7315
|
|
|
7142
|
-
var alignText = childHeading && (!!icon ||
|
|
7316
|
+
var alignText = childHeading && showIcon && (!!icon || !centered);
|
|
7143
7317
|
var childContent = React__default.createElement(NotificationContent$1, {
|
|
7144
7318
|
alignText: alignText,
|
|
7145
7319
|
icon: !childHeading ? iconElem : null,
|
|
@@ -7351,6 +7525,88 @@ var Pagination$1 = function Pagination(props) {
|
|
|
7351
7525
|
}, previousLiLink, getPaginationNumbers(currentPage), nextLiLink));
|
|
7352
7526
|
};
|
|
7353
7527
|
|
|
7528
|
+
/**
|
|
7529
|
+
* A component that displays a progress status for any task that takes a long
|
|
7530
|
+
* time to complete or consists of multiple steps. Examples include downloading,
|
|
7531
|
+
* uploading, or processing.
|
|
7532
|
+
*/
|
|
7533
|
+
|
|
7534
|
+
var ProgressIndicator$1 = function ProgressIndicator(props) {
|
|
7535
|
+
var _props$darkMode = props.darkMode,
|
|
7536
|
+
darkMode = _props$darkMode === void 0 ? false : _props$darkMode,
|
|
7537
|
+
_props$id = props.id,
|
|
7538
|
+
id = _props$id === void 0 ? generateUUID() : _props$id,
|
|
7539
|
+
_props$indicatorType = props.indicatorType,
|
|
7540
|
+
indicatorType = _props$indicatorType === void 0 ? ProgressIndicatorTypes.Linear : _props$indicatorType,
|
|
7541
|
+
_props$isIndeterminat = props.isIndeterminate,
|
|
7542
|
+
isIndeterminate = _props$isIndeterminat === void 0 ? false : _props$isIndeterminat,
|
|
7543
|
+
labelText = props.labelText,
|
|
7544
|
+
_props$showLabel = props.showLabel,
|
|
7545
|
+
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
7546
|
+
_props$size = props.size,
|
|
7547
|
+
size = _props$size === void 0 ? ProgressIndicatorSizes.Default : _props$size,
|
|
7548
|
+
_props$value = props.value,
|
|
7549
|
+
value = _props$value === void 0 ? 0 : _props$value;
|
|
7550
|
+
var styles = useMultiStyleConfig("ProgressIndicator", {
|
|
7551
|
+
darkMode: darkMode,
|
|
7552
|
+
size: size
|
|
7553
|
+
});
|
|
7554
|
+
var finalValue = value;
|
|
7555
|
+
|
|
7556
|
+
if (finalValue < 0 || finalValue > 100) {
|
|
7557
|
+
console.warn("ProgressIndicator: pass in a `value` between 0 and 100. Defaulting to 0.");
|
|
7558
|
+
finalValue = 0;
|
|
7559
|
+
}
|
|
7560
|
+
|
|
7561
|
+
var progressProps = {
|
|
7562
|
+
id: id,
|
|
7563
|
+
// If the label is visually shown, associate it with the progress indicator.
|
|
7564
|
+
// Otherwise, the `aria-label` will be added.
|
|
7565
|
+
"aria-label": showLabel ? null : labelText,
|
|
7566
|
+
"aria-labelledby": showLabel ? id + "-label" : null,
|
|
7567
|
+
// If `isIndeterminate` is true, then it overrides the `value` prop.
|
|
7568
|
+
isIndeterminate: isIndeterminate || null,
|
|
7569
|
+
value: isIndeterminate ? null : finalValue
|
|
7570
|
+
};
|
|
7571
|
+
|
|
7572
|
+
var progressComponent = function progressComponent(indicatorType) {
|
|
7573
|
+
// Only display the percentage text for the default size, not in the
|
|
7574
|
+
// indeterminate state, and when `showLabel` is true.
|
|
7575
|
+
if (indicatorType === ProgressIndicatorTypes.Circular) {
|
|
7576
|
+
// For the small size, since the label won't be visible, we need to add
|
|
7577
|
+
// it to the parent component's `aria-label` attribute.
|
|
7578
|
+
if (size === ProgressIndicatorSizes.Small) {
|
|
7579
|
+
progressProps["aria-label"] = labelText;
|
|
7580
|
+
}
|
|
7581
|
+
|
|
7582
|
+
return React__default.createElement(Box, {
|
|
7583
|
+
__css: styles.circularContainer
|
|
7584
|
+
}, React__default.createElement(CircularProgress, Object.assign({}, progressProps, {
|
|
7585
|
+
sx: styles.circular
|
|
7586
|
+
}), showLabel && !isIndeterminate && size !== ProgressIndicatorSizes.Small && React__default.createElement(CircularProgressLabel, null, finalValue, "%")), showLabel && size !== ProgressIndicatorSizes.Small && React__default.createElement(Label, {
|
|
7587
|
+
id: id + "-label",
|
|
7588
|
+
htmlFor: id
|
|
7589
|
+
}, labelText));
|
|
7590
|
+
} // The Linear progress indicator is the default.
|
|
7591
|
+
|
|
7592
|
+
|
|
7593
|
+
return React__default.createElement(React__default.Fragment, null, showLabel && React__default.createElement(Label, {
|
|
7594
|
+
id: id + "-label",
|
|
7595
|
+
htmlFor: id
|
|
7596
|
+
}, labelText), React__default.createElement(Box, {
|
|
7597
|
+
__css: styles.linearContainer
|
|
7598
|
+
}, React__default.createElement(Progress, Object.assign({}, progressProps, {
|
|
7599
|
+
sx: styles.linear
|
|
7600
|
+
})), showLabel && !isIndeterminate && React__default.createElement(Box, {
|
|
7601
|
+
__css: styles.linearPercentage
|
|
7602
|
+
}, finalValue, "%")));
|
|
7603
|
+
};
|
|
7604
|
+
|
|
7605
|
+
return React__default.createElement(Box, {
|
|
7606
|
+
__css: styles
|
|
7607
|
+
}, progressComponent(indicatorType));
|
|
7608
|
+
};
|
|
7609
|
+
|
|
7354
7610
|
var Radio$1 = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
7355
7611
|
var className = props.className,
|
|
7356
7612
|
helperText = props.helperText,
|
|
@@ -7536,6 +7792,7 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
|
|
|
7536
7792
|
labelText = props.labelText,
|
|
7537
7793
|
name = props.name,
|
|
7538
7794
|
onChange = props.onChange,
|
|
7795
|
+
placeholder = props.placeholder,
|
|
7539
7796
|
_props$showHelperInva = props.showHelperInvalidText,
|
|
7540
7797
|
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
7541
7798
|
_props$showLabel = props.showLabel,
|
|
@@ -7544,7 +7801,8 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
|
|
|
7544
7801
|
showOptReqLabel = _props$showOptReqLabe === void 0 ? true : _props$showOptReqLabe,
|
|
7545
7802
|
_props$type = props.type,
|
|
7546
7803
|
type = _props$type === void 0 ? SelectTypes.Default : _props$type,
|
|
7547
|
-
value = props.value
|
|
7804
|
+
_props$value = props.value,
|
|
7805
|
+
value = _props$value === void 0 ? "" : _props$value;
|
|
7548
7806
|
var ariaAttributes = {};
|
|
7549
7807
|
var optReqFlag = isRequired ? "Required" : "Optional";
|
|
7550
7808
|
var styles = useMultiStyleConfig("CustomSelect", {
|
|
@@ -7554,7 +7812,7 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
|
|
|
7554
7812
|
var footnote = isInvalid ? finalInvalidText : helperText; // To control the `Select` component, both `onChange` and `value`
|
|
7555
7813
|
// must be passed.
|
|
7556
7814
|
|
|
7557
|
-
var controlledProps = onChange
|
|
7815
|
+
var controlledProps = onChange ? {
|
|
7558
7816
|
onChange: onChange,
|
|
7559
7817
|
value: value
|
|
7560
7818
|
} : {};
|
|
@@ -7587,6 +7845,7 @@ var Select$1 = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
|
|
|
7587
7845
|
isDisabled: isDisabled,
|
|
7588
7846
|
isInvalid: isInvalid,
|
|
7589
7847
|
name: name,
|
|
7848
|
+
placeholder: placeholder,
|
|
7590
7849
|
ref: ref
|
|
7591
7850
|
}, controlledProps, ariaAttributes, {
|
|
7592
7851
|
icon: React__default.createElement(Icon, {
|
|
@@ -7643,7 +7902,8 @@ function SearchBar$1(props) {
|
|
|
7643
7902
|
var helperErrorTextID = generateUUID();
|
|
7644
7903
|
var ariaDescribedby = helperErrorTextID;
|
|
7645
7904
|
var footnote = isInvalid ? invalidText : helperErrorText;
|
|
7646
|
-
var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText;
|
|
7905
|
+
var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText;
|
|
7906
|
+
var textInputPlaceholder = (textInputProps == null ? void 0 : textInputProps.placeholder) + " " + (isRequired ? "(Required)" : ""); // Render the `Select` component.
|
|
7647
7907
|
|
|
7648
7908
|
var selectElem = selectProps && createElement(Select$1, Object.assign({
|
|
7649
7909
|
id: generateUUID(),
|
|
@@ -7660,7 +7920,7 @@ function SearchBar$1(props) {
|
|
|
7660
7920
|
var textInputNative = textInputProps && createElement(TextInput, Object.assign({
|
|
7661
7921
|
id: generateUUID(),
|
|
7662
7922
|
labelText: textInputProps == null ? void 0 : textInputProps.labelText,
|
|
7663
|
-
placeholder:
|
|
7923
|
+
placeholder: textInputPlaceholder,
|
|
7664
7924
|
onChange: textInputProps == null ? void 0 : textInputProps.onChange,
|
|
7665
7925
|
name: textInputProps == null ? void 0 : textInputProps.name,
|
|
7666
7926
|
type: TextInputTypes.text,
|
|
@@ -7804,6 +8064,229 @@ function SkeletonLoader$1(props) {
|
|
|
7804
8064
|
})))));
|
|
7805
8065
|
}
|
|
7806
8066
|
|
|
8067
|
+
/**
|
|
8068
|
+
* The `Slider` component renders a singular value slider or a range slider
|
|
8069
|
+
* with a min and max value. The value(s) can be updated through the slider
|
|
8070
|
+
* thumb(s) or through the text input(s) elements.
|
|
8071
|
+
*/
|
|
8072
|
+
|
|
8073
|
+
function Slider(props) {
|
|
8074
|
+
var className = props.className,
|
|
8075
|
+
_props$defaultValue = props.defaultValue,
|
|
8076
|
+
defaultValue = _props$defaultValue === void 0 ? 0 : _props$defaultValue,
|
|
8077
|
+
helperText = props.helperText,
|
|
8078
|
+
_props$id = props.id,
|
|
8079
|
+
id = _props$id === void 0 ? generateUUID() : _props$id,
|
|
8080
|
+
invalidText = props.invalidText,
|
|
8081
|
+
_props$isDisabled = props.isDisabled,
|
|
8082
|
+
isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
|
|
8083
|
+
_props$isInvalid = props.isInvalid,
|
|
8084
|
+
isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
|
|
8085
|
+
_props$isRangeSlider = props.isRangeSlider,
|
|
8086
|
+
isRangeSlider = _props$isRangeSlider === void 0 ? false : _props$isRangeSlider,
|
|
8087
|
+
_props$isRequired = props.isRequired,
|
|
8088
|
+
isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
|
|
8089
|
+
labelText = props.labelText,
|
|
8090
|
+
_props$max = props.max,
|
|
8091
|
+
max = _props$max === void 0 ? 100 : _props$max,
|
|
8092
|
+
_props$min = props.min,
|
|
8093
|
+
min = _props$min === void 0 ? 0 : _props$min,
|
|
8094
|
+
name = props.name,
|
|
8095
|
+
_onChange = props.onChange,
|
|
8096
|
+
_props$optReqFlag = props.optReqFlag,
|
|
8097
|
+
optReqFlag = _props$optReqFlag === void 0 ? true : _props$optReqFlag,
|
|
8098
|
+
_props$showBoxes = props.showBoxes,
|
|
8099
|
+
showBoxes = _props$showBoxes === void 0 ? true : _props$showBoxes,
|
|
8100
|
+
_props$showHelperInva = props.showHelperInvalidText,
|
|
8101
|
+
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
8102
|
+
_props$showLabel = props.showLabel,
|
|
8103
|
+
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
8104
|
+
_props$showValues = props.showValues,
|
|
8105
|
+
showValues = _props$showValues === void 0 ? true : _props$showValues,
|
|
8106
|
+
_props$step = props.step,
|
|
8107
|
+
step = _props$step === void 0 ? 1 : _props$step; // For the RangeSlider, if the defaultValue is not an array, then we set
|
|
8108
|
+
// the defaultValue to an array with the min and max values.
|
|
8109
|
+
|
|
8110
|
+
var rangeSliderDefault = typeof defaultValue === "number" ? [min, max] : defaultValue; // We need to set the default value correctly for both types of sliders.
|
|
8111
|
+
|
|
8112
|
+
var finalDevaultValue = isRangeSlider ? rangeSliderDefault : defaultValue;
|
|
8113
|
+
|
|
8114
|
+
var _React$useState = useState(finalDevaultValue),
|
|
8115
|
+
currentValue = _React$useState[0],
|
|
8116
|
+
setCurrentValue = _React$useState[1];
|
|
8117
|
+
|
|
8118
|
+
var finalIsInvalid = isInvalid; // In the Range Slider, if the first value is bigger than the second value,
|
|
8119
|
+
// then set the invalid state.
|
|
8120
|
+
|
|
8121
|
+
if (isRangeSlider && currentValue[0] > currentValue[1]) {
|
|
8122
|
+
finalIsInvalid = true;
|
|
8123
|
+
}
|
|
8124
|
+
|
|
8125
|
+
var optReqText = isRequired ? "Required" : "Optional";
|
|
8126
|
+
var footnote = finalIsInvalid ? invalidText : helperText;
|
|
8127
|
+
var styles = useMultiStyleConfig("CustomSlider", {
|
|
8128
|
+
isDisabled: isDisabled,
|
|
8129
|
+
isInvalid: finalIsInvalid,
|
|
8130
|
+
isRangeSlider: isRangeSlider,
|
|
8131
|
+
showBoxes: showBoxes
|
|
8132
|
+
}); // Props that the `Slider` and `RangeSlider` Chakra
|
|
8133
|
+
// components both use.
|
|
8134
|
+
|
|
8135
|
+
var sliderSharedProps = {
|
|
8136
|
+
// Don't focus on the thumbs for every small change.
|
|
8137
|
+
focusThumbOnChange: false,
|
|
8138
|
+
id: id,
|
|
8139
|
+
isDisabled: isDisabled,
|
|
8140
|
+
max: max,
|
|
8141
|
+
min: min,
|
|
8142
|
+
name: name,
|
|
8143
|
+
onChange: function onChange(val) {
|
|
8144
|
+
return setCurrentValue(val);
|
|
8145
|
+
},
|
|
8146
|
+
// Call the passed in `onChange` function prop to get the
|
|
8147
|
+
// *final* value once a user stops dragging the slider.
|
|
8148
|
+
onChangeEnd: function onChangeEnd(val) {
|
|
8149
|
+
return _onChange && _onChange(val);
|
|
8150
|
+
},
|
|
8151
|
+
step: step
|
|
8152
|
+
}; // Props that the two `TextInput` components use.
|
|
8153
|
+
|
|
8154
|
+
var textInputSharedProps = {
|
|
8155
|
+
attributes: {
|
|
8156
|
+
max: max,
|
|
8157
|
+
min: min
|
|
8158
|
+
},
|
|
8159
|
+
isDisabled: isDisabled,
|
|
8160
|
+
isInvalid: finalIsInvalid,
|
|
8161
|
+
isRequired: isRequired,
|
|
8162
|
+
// Never show the label or helper text for the `TextInput` component.
|
|
8163
|
+
showHelperInvalidText: false,
|
|
8164
|
+
showLabel: false,
|
|
8165
|
+
step: step,
|
|
8166
|
+
type: TextInputTypes.number
|
|
8167
|
+
};
|
|
8168
|
+
/**
|
|
8169
|
+
* This returns either the "start" or "end" `TextInput` component. Note that
|
|
8170
|
+
* the "end" `TextInput` component is always rendered but the "start" is
|
|
8171
|
+
* only used for the `isRangeSlider` case.
|
|
8172
|
+
*/
|
|
8173
|
+
|
|
8174
|
+
var getTextInput = function getTextInput(type) {
|
|
8175
|
+
var inputProps = {
|
|
8176
|
+
start: _extends({
|
|
8177
|
+
// We only want the value for this box in the `isRangeSlider` case.
|
|
8178
|
+
value: isRangeSlider ? currentValue[0].toString() : "",
|
|
8179
|
+
onChange: function onChange(val) {
|
|
8180
|
+
// If the value is empty, set it to 0.
|
|
8181
|
+
var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // Only update the first value in the range.
|
|
8182
|
+
|
|
8183
|
+
var newValue = [nextValue, currentValue[1]];
|
|
8184
|
+
setCurrentValue(newValue); // If the text input was updated directly,
|
|
8185
|
+
// send the data back to the user.
|
|
8186
|
+
|
|
8187
|
+
_onChange && _onChange(newValue);
|
|
8188
|
+
}
|
|
8189
|
+
}, textInputSharedProps),
|
|
8190
|
+
end: _extends({
|
|
8191
|
+
// This text input *always* shows. In the default case, we only
|
|
8192
|
+
// keep track of one value. For the `isRangeSlider` case, we keep
|
|
8193
|
+
// track of an array but only want the second value.
|
|
8194
|
+
value: isRangeSlider ? currentValue[1].toString() : currentValue.toString(),
|
|
8195
|
+
onChange: function onChange(val) {
|
|
8196
|
+
// If the value is empty, set it to 0.
|
|
8197
|
+
var nextValue = parseInt(val.target.value, 10) ? parseInt(val.target.value, 10) : 0; // If the value entered is bigger than the max value,
|
|
8198
|
+
// then set it to the max value.
|
|
8199
|
+
|
|
8200
|
+
if (nextValue > max) {
|
|
8201
|
+
nextValue = max;
|
|
8202
|
+
} // Only update the second value in the `isRangeSlider` case,
|
|
8203
|
+
// or the single value in the default case.
|
|
8204
|
+
|
|
8205
|
+
|
|
8206
|
+
var newValue = isRangeSlider ? [currentValue[0], nextValue] : nextValue;
|
|
8207
|
+
setCurrentValue(newValue); // If the text input was updated directly,
|
|
8208
|
+
// send the data back to the user.
|
|
8209
|
+
|
|
8210
|
+
_onChange && _onChange(newValue);
|
|
8211
|
+
}
|
|
8212
|
+
}, textInputSharedProps)
|
|
8213
|
+
};
|
|
8214
|
+
var updatedLabel = !isRangeSlider ? labelText : labelText + " - " + type + " value";
|
|
8215
|
+
return createElement(TextInput, Object.assign({
|
|
8216
|
+
id: id + "-textInput-" + type,
|
|
8217
|
+
labelText: updatedLabel,
|
|
8218
|
+
additionalStyles: _extends({}, styles.textInput, {
|
|
8219
|
+
// Specific margins for each text input to
|
|
8220
|
+
// push the elements inside.
|
|
8221
|
+
marginRight: type === "start" ? "s" : null,
|
|
8222
|
+
marginLeft: type === "end" ? "s" : null
|
|
8223
|
+
})
|
|
8224
|
+
}, inputProps[type]));
|
|
8225
|
+
};
|
|
8226
|
+
/**
|
|
8227
|
+
* Returns a Chakra `Slider` or `RangeSlider` component based on the
|
|
8228
|
+
* `isRangeSlider` prop from the DS `Slider` component.
|
|
8229
|
+
*/
|
|
8230
|
+
|
|
8231
|
+
|
|
8232
|
+
var getSliderType = function getSliderType() {
|
|
8233
|
+
return isRangeSlider ? createElement(RangeSlider // Both slider thumbs need values and should be in an array.
|
|
8234
|
+
, Object.assign({
|
|
8235
|
+
"aria-label": !showLabel ? [labelText + " - start value", labelText + " - end value"] : null,
|
|
8236
|
+
"aria-labelledby": showLabel ? [id + "-label", id + "-label"] : null,
|
|
8237
|
+
value: currentValue,
|
|
8238
|
+
// Make the thumbs larger.
|
|
8239
|
+
size: "lg"
|
|
8240
|
+
}, sliderSharedProps), createElement(RangeSliderTrack, {
|
|
8241
|
+
sx: styles.track
|
|
8242
|
+
}, createElement(RangeSliderFilledTrack, {
|
|
8243
|
+
sx: styles.filledTrack
|
|
8244
|
+
})), createElement(RangeSliderThumb, {
|
|
8245
|
+
index: 0,
|
|
8246
|
+
sx: styles.thumb
|
|
8247
|
+
}), createElement(RangeSliderThumb, {
|
|
8248
|
+
index: 1,
|
|
8249
|
+
sx: styles.thumb
|
|
8250
|
+
})) : createElement(Slider$1, Object.assign({
|
|
8251
|
+
"aria-label": !showLabel ? labelText : null,
|
|
8252
|
+
"aria-labelledby": id + "-label",
|
|
8253
|
+
value: currentValue,
|
|
8254
|
+
// Make the thumb larger.
|
|
8255
|
+
size: "lg"
|
|
8256
|
+
}, sliderSharedProps), createElement(SliderTrack, {
|
|
8257
|
+
sx: styles.track
|
|
8258
|
+
}, createElement(SliderFilledTrack, {
|
|
8259
|
+
sx: styles.filledTrack
|
|
8260
|
+
})), createElement(SliderThumb, {
|
|
8261
|
+
sx: styles.thumb
|
|
8262
|
+
}));
|
|
8263
|
+
};
|
|
8264
|
+
|
|
8265
|
+
return createElement(Box, {
|
|
8266
|
+
className: className,
|
|
8267
|
+
__css: styles
|
|
8268
|
+
}, showLabel && createElement(Label, {
|
|
8269
|
+
id: id + "-label",
|
|
8270
|
+
// We can't target the slider thumbs since those are divs and we
|
|
8271
|
+
// should link the label somewhere. So either target the first
|
|
8272
|
+
// input box in a `RangeSlider` or the only input box in a `Slider`.
|
|
8273
|
+
// When the input fields are not visible, remove this attribute.
|
|
8274
|
+
htmlFor: showBoxes ? id + "-textInput-" + (isRangeSlider ? "start" : "end") : null,
|
|
8275
|
+
optReqFlag: optReqFlag && optReqText
|
|
8276
|
+
}, labelText), createElement(Box, {
|
|
8277
|
+
__css: styles.container
|
|
8278
|
+
}, showBoxes && isRangeSlider && getTextInput("start"), showValues && createElement(Box, {
|
|
8279
|
+
__css: styles.leftValue
|
|
8280
|
+
}, min), getSliderType(), showValues && createElement(Box, {
|
|
8281
|
+
__css: styles.rightValue
|
|
8282
|
+
}, max), showBoxes && getTextInput("end")), footnote && showHelperInvalidText && createElement(Box, {
|
|
8283
|
+
__css: styles.helper
|
|
8284
|
+
}, createElement(HelperErrorText, {
|
|
8285
|
+
id: id + "-helperText",
|
|
8286
|
+
isInvalid: finalIsInvalid
|
|
8287
|
+
}, footnote)));
|
|
8288
|
+
}
|
|
8289
|
+
|
|
7807
8290
|
var StatusBadgeTypes;
|
|
7808
8291
|
|
|
7809
8292
|
(function (StatusBadgeTypes) {
|
|
@@ -8322,6 +8805,72 @@ function Text$1(props) {
|
|
|
8322
8805
|
}, children);
|
|
8323
8806
|
}
|
|
8324
8807
|
|
|
8808
|
+
var ToggleSizes;
|
|
8809
|
+
|
|
8810
|
+
(function (ToggleSizes) {
|
|
8811
|
+
ToggleSizes["Large"] = "large";
|
|
8812
|
+
ToggleSizes["Small"] = "small";
|
|
8813
|
+
})(ToggleSizes || (ToggleSizes = {}));
|
|
8814
|
+
|
|
8815
|
+
var onChangeDefault$2 = function onChangeDefault() {
|
|
8816
|
+
return;
|
|
8817
|
+
};
|
|
8818
|
+
/**
|
|
8819
|
+
* Component that renders Chakra's `Switch` component along with NYPL defaults.
|
|
8820
|
+
*/
|
|
8821
|
+
|
|
8822
|
+
var Toggle$2 = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
8823
|
+
var _props$additionalStyl = props.additionalStyles,
|
|
8824
|
+
additionalStyles = _props$additionalStyl === void 0 ? {} : _props$additionalStyl,
|
|
8825
|
+
_props$defaultChecked = props.defaultChecked,
|
|
8826
|
+
defaultChecked = _props$defaultChecked === void 0 ? false : _props$defaultChecked,
|
|
8827
|
+
helperText = props.helperText,
|
|
8828
|
+
_props$id = props.id,
|
|
8829
|
+
id = _props$id === void 0 ? generateUUID() : _props$id,
|
|
8830
|
+
invalidText = props.invalidText,
|
|
8831
|
+
isChecked = props.isChecked,
|
|
8832
|
+
_props$isDisabled = props.isDisabled,
|
|
8833
|
+
isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
|
|
8834
|
+
_props$isInvalid = props.isInvalid,
|
|
8835
|
+
isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
|
|
8836
|
+
_props$isRequired = props.isRequired,
|
|
8837
|
+
isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
|
|
8838
|
+
labelText = props.labelText,
|
|
8839
|
+
name = props.name,
|
|
8840
|
+
_props$onChange = props.onChange,
|
|
8841
|
+
onChange = _props$onChange === void 0 ? onChangeDefault$2 : _props$onChange,
|
|
8842
|
+
_props$size = props.size,
|
|
8843
|
+
size = _props$size === void 0 ? ToggleSizes.Large : _props$size;
|
|
8844
|
+
var footnote = isInvalid ? invalidText : helperText;
|
|
8845
|
+
var ariaAttributes = {};
|
|
8846
|
+
var styles = useMultiStyleConfig("Toggle", {});
|
|
8847
|
+
var switchStyles = useStyleConfig("Switch");
|
|
8848
|
+
ariaAttributes["aria-label"] = labelText && footnote ? labelText + " - " + footnote : labelText;
|
|
8849
|
+
return createElement(Fragment, null, createElement(Box, {
|
|
8850
|
+
__css: _extends({}, styles, additionalStyles)
|
|
8851
|
+
}, createElement(Switch$1, Object.assign({
|
|
8852
|
+
id: id,
|
|
8853
|
+
name: name || "default",
|
|
8854
|
+
isDisabled: isDisabled,
|
|
8855
|
+
isInvalid: isInvalid,
|
|
8856
|
+
isRequired: isRequired,
|
|
8857
|
+
ref: ref,
|
|
8858
|
+
size: size === ToggleSizes.Large ? "lg" : "sm"
|
|
8859
|
+
}, isChecked !== undefined ? {
|
|
8860
|
+
isChecked: isChecked,
|
|
8861
|
+
onChange: onChange
|
|
8862
|
+
} : {
|
|
8863
|
+
defaultChecked: defaultChecked
|
|
8864
|
+
}, ariaAttributes, {
|
|
8865
|
+
__css: switchStyles
|
|
8866
|
+
}), labelText)), footnote && createElement(Box, {
|
|
8867
|
+
__css: styles.helper
|
|
8868
|
+
}, createElement(HelperErrorText, {
|
|
8869
|
+
isInvalid: isInvalid,
|
|
8870
|
+
id: id + "-helperText"
|
|
8871
|
+
}, footnote)));
|
|
8872
|
+
});
|
|
8873
|
+
|
|
8325
8874
|
/**
|
|
8326
8875
|
* A custom hook that returns the Chakra-based NYPL theme object. This must be
|
|
8327
8876
|
* used inside a component that is wrapped in the `DSProvider` component, so
|
|
@@ -8435,6 +8984,7 @@ function VideoPlayer$1(props) {
|
|
|
8435
8984
|
var aspectRatio = props.aspectRatio,
|
|
8436
8985
|
className = props.className,
|
|
8437
8986
|
descriptionText = props.descriptionText,
|
|
8987
|
+
embedCode = props.embedCode,
|
|
8438
8988
|
headingText = props.headingText,
|
|
8439
8989
|
helperText = props.helperText,
|
|
8440
8990
|
_props$id = props.id,
|
|
@@ -8446,22 +8996,32 @@ function VideoPlayer$1(props) {
|
|
|
8446
8996
|
videoType = props.videoType;
|
|
8447
8997
|
var iframeTitleFinal = videoType === VideoPlayerTypes.Vimeo ? iframeTitle || "Vimeo video player" : iframeTitle || "YouTube video player";
|
|
8448
8998
|
var videoSrc = videoType === 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";
|
|
8999
|
+
var iFrameTitleEmbedCode = iframeTitle ? "" + iframeTitle : "Video player";
|
|
9000
|
+
var embedCodeFinal = embedCode && embedCode.includes("<iframe") && !embedCode.includes("title=") ? embedCode.replace("<iframe ", "<iframe title=\"" + iFrameTitleEmbedCode + "\" ") : embedCode;
|
|
8449
9001
|
var errorMessage = "<strong>Error:</strong> This video player has not been configured properly. Please contact the site administrator.";
|
|
8450
9002
|
var isInvalid = false;
|
|
8451
9003
|
|
|
8452
|
-
if (!videoType && !videoId) {
|
|
8453
|
-
console.warn("VideoPlayer requires the `videoType` and `videoId` props");
|
|
9004
|
+
if (!embedCodeFinal && !videoType && !videoId) {
|
|
9005
|
+
console.warn("VideoPlayer requires either the `embedCode` prop or both the `videoType` and `videoId` props.");
|
|
9006
|
+
isInvalid = true;
|
|
9007
|
+
} else if (!embedCodeFinal && !videoType) {
|
|
9008
|
+
console.warn("VideoPlayer also requires the `videoType` prop. You have only set the `videoId` prop.");
|
|
9009
|
+
isInvalid = true;
|
|
9010
|
+
} else if (!embedCodeFinal && !videoId) {
|
|
9011
|
+
console.warn("VideoPlayer also requires the `videoId` prop. You have only set the `videoType` prop.");
|
|
8454
9012
|
isInvalid = true;
|
|
8455
|
-
} else if (
|
|
8456
|
-
console.warn("VideoPlayer
|
|
9013
|
+
} else if (embedCodeFinal && (videoType || videoId)) {
|
|
9014
|
+
console.warn("VideoPlayer can accept the `embedCode` prop or the `videoType` and `videoId` props. You have set both.");
|
|
8457
9015
|
isInvalid = true;
|
|
8458
|
-
}
|
|
8459
|
-
|
|
9016
|
+
}
|
|
9017
|
+
|
|
9018
|
+
if (videoId && (videoId.includes("://") || videoId.includes("http") || videoId.includes(".") || videoId.includes("youtube") || videoId.includes("vimeo"))) {
|
|
9019
|
+
console.warn("The VideoPlayer `videoId` prop is not configured properly.");
|
|
8460
9020
|
isInvalid = true;
|
|
8461
9021
|
}
|
|
8462
9022
|
|
|
8463
|
-
if (
|
|
8464
|
-
console.warn("VideoPlayer `
|
|
9023
|
+
if (embedCodeFinal && (!embedCodeFinal.includes("vimeo.com") && !embedCodeFinal.includes("youtube.com") || !embedCodeFinal.includes("<iframe") || !embedCodeFinal.includes("</iframe"))) {
|
|
9024
|
+
console.warn("The VideoPlayer `embedCode` prop is not configured properly.");
|
|
8465
9025
|
isInvalid = true;
|
|
8466
9026
|
}
|
|
8467
9027
|
|
|
@@ -8469,7 +9029,11 @@ function VideoPlayer$1(props) {
|
|
|
8469
9029
|
var styles = useMultiStyleConfig("VideoPlayer", {
|
|
8470
9030
|
variant: variant
|
|
8471
9031
|
});
|
|
8472
|
-
var
|
|
9032
|
+
var embedElement = embedCodeFinal ? createElement("span", {
|
|
9033
|
+
dangerouslySetInnerHTML: {
|
|
9034
|
+
__html: embedCodeFinal
|
|
9035
|
+
}
|
|
9036
|
+
}) : createElement(Box, {
|
|
8473
9037
|
as: "iframe",
|
|
8474
9038
|
src: videoSrc,
|
|
8475
9039
|
title: iframeTitleFinal,
|
|
@@ -8494,8 +9058,8 @@ function VideoPlayer$1(props) {
|
|
|
8494
9058
|
id: id + "-componentWrapper"
|
|
8495
9059
|
}, createElement(Box, {
|
|
8496
9060
|
__css: styles.inside
|
|
8497
|
-
},
|
|
9061
|
+
}, embedElement)));
|
|
8498
9062
|
}
|
|
8499
9063
|
|
|
8500
|
-
export { Accordion, Breadcrumbs, Button, ButtonTypes, Card, CardActions, CardContent, CardEdition, CardHeading, CardLayouts, Checkbox, CheckboxGroup, CheckboxGroupLayoutTypes, ColorVariants, DSProvider, DatePicker, DatePickerTypes, Fieldset, Form, FormField, FormRow, GridGaps as FormSpacing, GridGaps, Heading, HeadingDisplaySizes, HeadingLevels, HelperErrorText, Hero$1 as Hero, HeroTypes, HorizontalRule$1 as HorizontalRule, Icon, IconAlign, IconColors, IconNames, IconRotationTypes, IconSizes, IconTypes, Image, ImageRatios, ImageSizes, ImageTypes, Input, InputTypes, Label, Link$1 as Link, LinkTypes, List$1 as List, ListTypes, LogoNames, Modal, Notification$1 as Notification, NotificationTypes, Pagination$1 as Pagination, Radio$1 as Radio, RadioGroup$1 as RadioGroup, RadioGroupLayoutTypes, SearchBar$1 as SearchBar, Select$1 as Select, SimpleGrid, SkeletonLoader$1 as SkeletonLoader, SkeletonLoaderImageRatios, SkeletonLoaderLayouts, StatusBadge$1 as StatusBadge, StatusBadgeTypes, Tabs, Template$1 as Template, TemplateAppContainer, TemplateBreakout$1 as TemplateBreakout, TemplateContent$1 as TemplateContent, TemplateContentPrimary$1 as TemplateContentPrimary, TemplateContentSidebar$1 as TemplateContentSidebar, TemplateContentTop$1 as TemplateContentTop, TemplateFooter, TemplateHeader$1 as TemplateHeader, Text$1 as Text, TextDisplaySizes, TextInput, TextInputTypes, VideoPlayer$1 as VideoPlayer, VideoPlayerAspectRatios, VideoPlayerTypes, useNYPLTheme };
|
|
9064
|
+
export { Accordion, Breadcrumbs, Button, ButtonTypes, Card, CardActions, CardContent, CardEdition, CardHeading, CardLayouts, Checkbox, CheckboxGroup, CheckboxGroupLayoutTypes, ColorVariants, DSProvider, DatePicker, DatePickerTypes, Fieldset, Form, FormField, FormRow, GridGaps as FormSpacing, GridGaps, Heading, HeadingDisplaySizes, HeadingLevels, HelperErrorText, Hero$1 as Hero, HeroTypes, HorizontalRule$1 as HorizontalRule, Icon, IconAlign, IconColors, IconNames, IconRotationTypes, IconSizes, IconTypes, Image, ImageRatios, ImageSizes, ImageTypes, Input, InputTypes, Label, Link$1 as Link, LinkTypes, List$1 as List, ListTypes, LogoNames, Modal, Notification$1 as Notification, NotificationTypes, Pagination$1 as Pagination, ProgressIndicator$1 as ProgressIndicator, ProgressIndicatorSizes, ProgressIndicatorTypes, Radio$1 as Radio, RadioGroup$1 as RadioGroup, RadioGroupLayoutTypes, SearchBar$1 as SearchBar, Select$1 as Select, SimpleGrid, SkeletonLoader$1 as SkeletonLoader, SkeletonLoaderImageRatios, SkeletonLoaderLayouts, Slider, StatusBadge$1 as StatusBadge, StatusBadgeTypes, Tabs, Template$1 as Template, TemplateAppContainer, TemplateBreakout$1 as TemplateBreakout, TemplateContent$1 as TemplateContent, TemplateContentPrimary$1 as TemplateContentPrimary, TemplateContentSidebar$1 as TemplateContentSidebar, TemplateContentTop$1 as TemplateContentTop, TemplateFooter, TemplateHeader$1 as TemplateHeader, Text$1 as Text, TextDisplaySizes, TextInput, TextInputTypes, Toggle$2 as Toggle, ToggleSizes, VideoPlayer$1 as VideoPlayer, VideoPlayerAspectRatios, VideoPlayerTypes, useNYPLTheme };
|
|
8501
9065
|
//# sourceMappingURL=design-system-react-components.esm.js.map
|