@scottish-government/designsystem-react 0.5.1 → 0.7.0
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/.svgrrc +2 -1
- package/.svgrrc_documents +15 -0
- package/@types/common/FileIcon.d.ts +7 -0
- package/@types/components/Accordion.d.ts +2 -2
- package/@types/components/ConfirmationMessage.d.ts +1 -1
- package/@types/components/FileDownload.d.ts +11 -0
- package/@types/components/NotificationPanel.d.ts +1 -1
- package/@types/components/SummaryCard.d.ts +1 -1
- package/@types/components/Tabs.d.ts +1 -1
- package/@types/sgds.d.ts +2 -1
- package/CHANGELOG.md +81 -0
- package/README.md +4 -0
- package/dist/common/AbstractNotificationBanner.jsx +63 -0
- package/dist/common/ConditionalWrapper.jsx +8 -0
- package/dist/common/FileIcon.jsx +51 -0
- package/dist/common/HintText.jsx +9 -0
- package/dist/common/Icon.jsx +57 -0
- package/dist/common/ScreenReaderText.jsx +9 -0
- package/dist/common/WrapperTag.jsx +11 -0
- package/dist/common/file-icon.jsx +51 -0
- package/dist/common/icon.jsx +1 -1
- package/dist/components/Accordion/Accordion.jsx +102 -0
- package/dist/components/AspectBox/AspectBox.jsx +79 -0
- package/dist/components/BackToTop/BackToTop.jsx +27 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.jsx +28 -0
- package/dist/components/Button/Button.jsx +30 -0
- package/dist/components/Checkbox/Checkbox.jsx +62 -0
- package/dist/components/ConfirmationMessage/ConfirmationMessage.jsx +24 -0
- package/dist/components/ContentsNav/ContentsNav.jsx +33 -0
- package/dist/components/CookieBanner/CookieBanner.jsx +21 -0
- package/dist/components/DatePicker/DatePicker.jsx +54 -0
- package/dist/components/Details/Details.jsx +17 -0
- package/dist/components/ErrorMessage/ErrorMessage.jsx +12 -0
- package/dist/components/ErrorSummary/ErrorSummary.jsx +27 -0
- package/dist/components/FileDownload/FileDownload.jsx +50 -0
- package/dist/components/HideThisPage/HideThisPage.jsx +71 -0
- package/dist/components/InsetText/InsetText.jsx +14 -0
- package/dist/components/NotificationBanner/NotificationBanner.jsx +26 -0
- package/dist/components/NotificationPanel/NotificationPanel.jsx +21 -0
- package/dist/components/PageHeader/PageHeader.jsx +15 -0
- package/dist/components/PageMetadata/PageMetadata.jsx +26 -0
- package/dist/components/Pagination/Pagination.jsx +97 -0
- package/dist/components/PhaseBanner/PhaseBanner.jsx +23 -0
- package/dist/components/Question/Question.jsx +22 -0
- package/dist/components/RadioButton/RadioButton.jsx +43 -0
- package/dist/components/Select/Select.jsx +52 -0
- package/dist/components/SequentialNavigation/SequentialNavigation.jsx +31 -0
- package/dist/components/SideNavigation/SideNavigation.jsx +52 -0
- package/dist/components/SiteHeader/SiteHeader.jsx +68 -0
- package/dist/components/SiteNavigation/SiteNavigation.jsx +22 -0
- package/dist/components/SiteSearch/SiteSearch.jsx +55 -0
- package/dist/components/SkipLinks/SkipLinks.jsx +21 -0
- package/dist/components/SummaryCard/SummaryCard.jsx +67 -0
- package/dist/components/SummaryList/SummaryList.jsx +75 -0
- package/dist/components/Table/Table.jsx +24 -0
- package/dist/components/Tabs/Tabs.jsx +99 -0
- package/dist/components/Tag/Tag.jsx +13 -0
- package/dist/components/TaskList/TaskList.jsx +95 -0
- package/dist/components/TextInput/TextInput.jsx +58 -0
- package/dist/components/Textarea/Textarea.jsx +54 -0
- package/dist/components/WarningText/WarningText.jsx +16 -0
- package/dist/components/file-download/file-download.jsx +50 -0
- package/dist/images/documents/audio.jsx +47 -0
- package/dist/images/documents/csv.jsx +57 -0
- package/dist/images/documents/excel.jsx +57 -0
- package/dist/images/documents/file.jsx +48 -0
- package/dist/images/documents/generic.jsx +47 -0
- package/dist/images/documents/geodata.jsx +44 -0
- package/dist/images/documents/ical.jsx +48 -0
- package/dist/images/documents/ico.jsx +48 -0
- package/dist/images/documents/image.jsx +43 -0
- package/dist/images/documents/index.js +50 -0
- package/dist/images/documents/odf.jsx +46 -0
- package/dist/images/documents/odg.jsx +46 -0
- package/dist/images/documents/odp.jsx +45 -0
- package/dist/images/documents/ods.jsx +55 -0
- package/dist/images/documents/odt.jsx +46 -0
- package/dist/images/documents/pdf.jsx +48 -0
- package/dist/images/documents/ppt.jsx +47 -0
- package/dist/images/documents/rtf.jsx +48 -0
- package/dist/images/documents/text.jsx +48 -0
- package/dist/images/documents/video.jsx +47 -0
- package/dist/images/documents/word.jsx +48 -0
- package/dist/images/documents/xml.jsx +48 -0
- package/dist/images/documents/zip.jsx +48 -0
- package/dist/images/icons/arrow_upward.jsx +41 -0
- package/dist/images/icons/calendar_today.jsx +41 -0
- package/dist/images/icons/cancel.jsx +40 -0
- package/dist/images/icons/check_circle.jsx +41 -0
- package/dist/images/icons/chevron_left.jsx +41 -0
- package/dist/images/icons/chevron_right.jsx +41 -0
- package/dist/images/icons/close.jsx +41 -0
- package/dist/images/icons/description.jsx +41 -0
- package/dist/images/icons/double_chevron_left.jsx +40 -0
- package/dist/images/icons/double_chevron_right.jsx +40 -0
- package/dist/images/icons/error.jsx +41 -0
- package/dist/images/icons/expand_less.jsx +41 -0
- package/dist/images/icons/expand_more.jsx +41 -0
- package/dist/images/icons/index.js +40 -0
- package/dist/images/icons/list.jsx +44 -0
- package/dist/images/icons/menu.jsx +41 -0
- package/dist/images/icons/priority_high.jsx +42 -0
- package/dist/images/icons/search.jsx +41 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/src/common/{abstract-notification-banner.test.tsx → AbstractNotificationBanner.test.tsx} +11 -11
- package/src/common/{abstract-notification-banner.tsx → AbstractNotificationBanner.tsx} +2 -2
- package/src/common/{conditional-wrapper.test.tsx → ConditionalWrapper.test.tsx} +1 -1
- package/src/common/FileIcon.test.tsx +50 -0
- package/src/common/FileIcon.tsx +25 -0
- package/src/common/{hint-text.test.tsx → HintText.test.tsx} +12 -12
- package/src/common/{icon.test.tsx → Icon.test.tsx} +16 -16
- package/src/common/{icon.tsx → Icon.tsx} +1 -1
- package/src/common/{screen-reader-text.test.tsx → ScreenReaderText.test.tsx} +5 -5
- package/src/common/{wrapper-tag.test.tsx → WrapperTag.test.tsx} +5 -5
- package/src/components/{accordion/accordion.test.tsx → Accordion/Accordion.test.tsx} +35 -35
- package/src/components/{accordion/accordion.tsx → Accordion/Accordion.tsx} +5 -5
- package/src/components/{aspect-box/aspect-box.test.tsx → AspectBox/AspectBox.test.tsx} +2 -2
- package/src/components/{back-to-top/back-to-top.test.tsx → BackToTop/BackToTop.test.tsx} +1 -1
- package/src/components/{back-to-top/back-to-top.tsx → BackToTop/BackToTop.tsx} +1 -1
- package/src/components/{breadcrumbs/breadcrumbs.test.tsx → Breadcrumbs/Breadcrumbs.test.tsx} +7 -7
- package/src/components/{button/button.test.tsx → Button/Button.test.tsx} +1 -1
- package/src/components/{button/button.tsx → Button/Button.tsx} +3 -3
- package/src/components/{checkbox/checkbox.test.tsx → Checkbox/Checkbox.test.tsx} +16 -16
- package/src/components/{checkbox/checkbox.tsx → Checkbox/Checkbox.tsx} +1 -1
- package/src/components/{confirmation-message/confirmation-message.test.tsx → ConfirmationMessage/ConfirmationMessage.test.tsx} +12 -14
- package/src/components/{confirmation-message/confirmation-message.tsx → ConfirmationMessage/ConfirmationMessage.tsx} +4 -4
- package/src/components/{contents-nav/contents-nav.test.tsx → ContentsNav/ContentsNav.test.tsx} +21 -28
- package/src/components/{contents-nav/contents-nav.tsx → ContentsNav/ContentsNav.tsx} +1 -1
- package/src/components/{cookie-banner/cookie-banner.test.tsx → CookieBanner/CookieBanner.test.tsx} +3 -3
- package/src/components/{cookie-banner/cookie-banner.tsx → CookieBanner/CookieBanner.tsx} +1 -1
- package/src/components/{date-picker/date-picker.test.tsx → DatePicker/DatePicker.test.tsx} +76 -66
- package/src/components/{date-picker/date-picker.tsx → DatePicker/DatePicker.tsx} +2 -2
- package/src/components/{details/details.test.tsx → Details/Details.test.tsx} +10 -10
- package/src/components/{error-message/error-message.test.tsx → ErrorMessage/ErrorMessage.test.tsx} +10 -10
- package/src/components/{error-summary/error-summary.test.tsx → ErrorSummary/ErrorSummary.test.tsx} +13 -14
- package/src/components/{error-summary/error-summary.tsx → ErrorSummary/ErrorSummary.tsx} +1 -1
- package/src/components/FileDownload/FileDownload.test.tsx +167 -0
- package/src/components/FileDownload/FileDownload.tsx +67 -0
- package/src/components/{hide-this-page/hide-this-page.test.tsx → HideThisPage/HideThisPage.test.tsx} +4 -4
- package/src/components/{hide-this-page/hide-this-page.tsx → HideThisPage/HideThisPage.tsx} +3 -3
- package/src/components/{inset-text/inset-text.test.tsx → InsetText/InsetText.test.tsx} +1 -1
- package/src/components/{notification-banner/notification-banner.test.tsx → NotificationBanner/NotificationBanner.test.tsx} +4 -4
- package/src/components/{notification-banner/notification-banner.tsx → NotificationBanner/NotificationBanner.tsx} +1 -1
- package/src/components/{notification-panel/notification-panel.test.tsx → NotificationPanel/NotificationPanel.test.tsx} +24 -23
- package/src/components/{notification-panel/notification-panel.tsx → NotificationPanel/NotificationPanel.tsx} +3 -3
- package/src/components/{page-header/page-header.test.tsx → PageHeader/PageHeader.test.tsx} +9 -9
- package/src/components/{page-metadata/page-metadata.test.tsx → PageMetadata/PageMetadata.test.tsx} +9 -9
- package/src/components/{pagination/pagination.test.tsx → Pagination/Pagination.test.tsx} +56 -56
- package/src/components/{pagination/pagination.tsx → Pagination/Pagination.tsx} +1 -1
- package/src/components/{phase-banner/phase-banner.test.tsx → PhaseBanner/PhaseBanner.test.tsx} +9 -9
- package/src/components/{phase-banner/phase-banner.tsx → PhaseBanner/PhaseBanner.tsx} +1 -1
- package/src/components/{question/question.test.tsx → Question/Question.test.tsx} +10 -10
- package/src/components/{question/question.tsx → Question/Question.tsx} +3 -3
- package/src/components/{radio-button/radio-button.test.tsx → RadioButton/RadioButton.test.tsx} +23 -23
- package/src/components/{radio-button/radio-button.tsx → RadioButton/RadioButton.tsx} +1 -1
- package/src/components/{select/select.test.tsx → Select/Select.test.tsx} +67 -64
- package/src/components/{select/select.tsx → Select/Select.tsx} +2 -2
- package/src/components/{sequential-navigation/sequential-navigation.test.tsx → SequentialNavigation/SequentialNavigation.test.tsx} +18 -18
- package/src/components/{side-navigation/side-navigation.test.tsx → SideNavigation/SideNavigation.test.tsx} +8 -8
- package/src/components/{site-header/site-header.test.tsx → SiteHeader/SiteHeader.test.tsx} +25 -25
- package/src/components/{site-header/site-header.tsx → SiteHeader/SiteHeader.tsx} +4 -4
- package/src/components/{site-navigation/site-navigation.test.tsx → SiteNavigation/SiteNavigation.test.tsx} +8 -8
- package/src/components/{site-search/site-search.test.tsx → SiteSearch/SiteSearch.test.tsx} +16 -16
- package/src/components/{site-search/site-search.tsx → SiteSearch/SiteSearch.tsx} +1 -1
- package/src/components/{skip-links/skip-links.test.tsx → SkipLinks/SkipLinks.test.tsx} +15 -15
- package/src/components/{summary-card/summary-card.test.tsx → SummaryCard/SummaryCard.test.tsx} +28 -28
- package/src/components/{summary-card/summary-card.tsx → SummaryCard/SummaryCard.tsx} +4 -4
- package/src/components/{summary-list/summary-list.test.tsx → SummaryList/SummaryList.test.tsx} +55 -56
- package/src/components/{summary-list/summary-list.tsx → SummaryList/SummaryList.tsx} +2 -2
- package/src/components/{table/table.test.tsx → Table/Table.test.tsx} +4 -4
- package/src/components/{tabs/tabs.test.tsx → Tabs/Tabs.test.tsx} +22 -42
- package/src/components/{tabs/tabs.tsx → Tabs/Tabs.tsx} +3 -3
- package/src/components/{tag/tag.test.tsx → Tag/Tag.test.tsx} +10 -10
- package/src/components/{task-list/task-list.test.tsx → TaskList/TaskList.test.tsx} +109 -108
- package/src/components/{task-list/task-list.tsx → TaskList/TaskList.tsx} +4 -4
- package/src/components/{text-input/text-input.test.tsx → TextInput/TextInput.test.tsx} +92 -87
- package/src/components/{text-input/text-input.tsx → TextInput/TextInput.tsx} +4 -4
- package/src/components/{textarea/textarea.test.tsx → Textarea/Textarea.test.tsx} +71 -67
- package/src/components/{textarea/textarea.tsx → Textarea/Textarea.tsx} +3 -3
- package/src/components/{warning-text/warning-text.test.tsx → WarningText/WarningText.test.tsx} +1 -1
- package/src/images/documents/audio.tsx +34 -0
- package/src/images/documents/csv.tsx +39 -0
- package/src/images/documents/excel.tsx +39 -0
- package/src/images/documents/file.tsx +30 -0
- package/src/images/documents/generic.tsx +26 -0
- package/src/images/documents/geodata.tsx +29 -0
- package/src/images/documents/ical.tsx +30 -0
- package/src/images/documents/ico.tsx +30 -0
- package/src/images/documents/image.tsx +25 -0
- package/src/images/documents/index.ts +22 -0
- package/src/images/documents/odf.tsx +28 -0
- package/src/images/documents/odg.tsx +28 -0
- package/src/images/documents/odp.tsx +33 -0
- package/src/images/documents/ods.tsx +37 -0
- package/src/images/documents/odt.tsx +28 -0
- package/src/images/documents/pdf.tsx +30 -0
- package/src/images/documents/ppt.tsx +28 -0
- package/src/images/documents/rtf.tsx +30 -0
- package/src/images/documents/text.tsx +30 -0
- package/src/images/documents/video.tsx +34 -0
- package/src/images/documents/word.tsx +30 -0
- package/src/images/documents/xml.tsx +30 -0
- package/src/images/documents/zip.tsx +30 -0
- package/src/images/icons/index.ts +17 -0
- package/vite.config.ts +1 -1
- package/src/icons/index.ts +0 -17
- /package/src/common/{conditional-wrapper.tsx → ConditionalWrapper.tsx} +0 -0
- /package/src/common/{hint-text.tsx → HintText.tsx} +0 -0
- /package/src/common/{screen-reader-text.tsx → ScreenReaderText.tsx} +0 -0
- /package/src/common/{wrapper-tag.tsx → WrapperTag.tsx} +0 -0
- /package/src/components/{aspect-box/aspect-box.tsx → AspectBox/AspectBox.tsx} +0 -0
- /package/src/components/{breadcrumbs/breadcrumbs.tsx → Breadcrumbs/Breadcrumbs.tsx} +0 -0
- /package/src/components/{details/details.tsx → Details/Details.tsx} +0 -0
- /package/src/components/{error-message/error-message.tsx → ErrorMessage/ErrorMessage.tsx} +0 -0
- /package/src/components/{inset-text/inset-text.tsx → InsetText/InsetText.tsx} +0 -0
- /package/src/components/{page-header/page-header.tsx → PageHeader/PageHeader.tsx} +0 -0
- /package/src/components/{page-metadata/page-metadata.tsx → PageMetadata/PageMetadata.tsx} +0 -0
- /package/src/components/{sequential-navigation/sequential-navigation.tsx → SequentialNavigation/SequentialNavigation.tsx} +0 -0
- /package/src/components/{side-navigation/side-navigation.tsx → SideNavigation/SideNavigation.tsx} +0 -0
- /package/src/components/{site-navigation/site-navigation.tsx → SiteNavigation/SiteNavigation.tsx} +0 -0
- /package/src/components/{skip-links/skip-links.tsx → SkipLinks/SkipLinks.tsx} +0 -0
- /package/src/components/{table/table.tsx → Table/Table.tsx} +0 -0
- /package/src/components/{tag/tag.tsx → Tag/Tag.tsx} +0 -0
- /package/src/components/{warning-text/warning-text.tsx → WarningText/WarningText.tsx} +0 -0
- /package/src/{icons/ArrowUpward.tsx → images/icons/arrow_upward.tsx} +0 -0
- /package/src/{icons/CalendarToday.tsx → images/icons/calendar_today.tsx} +0 -0
- /package/src/{icons/Cancel.tsx → images/icons/cancel.tsx} +0 -0
- /package/src/{icons/CheckCircle.tsx → images/icons/check_circle.tsx} +0 -0
- /package/src/{icons/ChevronLeft.tsx → images/icons/chevron_left.tsx} +0 -0
- /package/src/{icons/ChevronRight.tsx → images/icons/chevron_right.tsx} +0 -0
- /package/src/{icons/Close.tsx → images/icons/close.tsx} +0 -0
- /package/src/{icons/Description.tsx → images/icons/description.tsx} +0 -0
- /package/src/{icons/DoubleChevronLeft.tsx → images/icons/double_chevron_left.tsx} +0 -0
- /package/src/{icons/DoubleChevronRight.tsx → images/icons/double_chevron_right.tsx} +0 -0
- /package/src/{icons/Error.tsx → images/icons/error.tsx} +0 -0
- /package/src/{icons/ExpandLess.tsx → images/icons/expand_less.tsx} +0 -0
- /package/src/{icons/ExpandMore.tsx → images/icons/expand_more.tsx} +0 -0
- /package/src/{icons/List.tsx → images/icons/list.tsx} +0 -0
- /package/src/{icons/Menu.tsx → images/icons/menu.tsx} +0 -0
- /package/src/{icons/PriorityHigh.tsx → images/icons/priority_high.tsx} +0 -0
- /package/src/{icons/Search.tsx → images/icons/search.tsx} +0 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgExcel = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="m1 119v-118h58.5858l19.4142 19.4142v98.5858z" fill="#fff" stroke="#428542" strokeWidth={2}/>
|
|
39
|
+
<g fill="#428542">
|
|
40
|
+
<path d="m80 20-20-20v20z"/>
|
|
41
|
+
<path d="m10 65h12.5v5h-12.5z"/>
|
|
42
|
+
<path d="m25.833 64.9999h12.5v5h-12.5z"/>
|
|
43
|
+
<path d="m41.667 64.9999h12.5v5h-12.5z"/>
|
|
44
|
+
<path d="m57.5 64.9999h12.5v5h-12.5z"/>
|
|
45
|
+
<path d="m10 74.9999h12.5v5h-12.5z"/>
|
|
46
|
+
<path d="m25.833 74.9999h12.5v5h-12.5z"/>
|
|
47
|
+
<path d="m41.667 74.9999h12.5v5h-12.5z"/>
|
|
48
|
+
<path d="m57.5 74.9999h12.5v5h-12.5z"/>
|
|
49
|
+
<path d="m10 84.9999h12.5v5h-12.5z"/>
|
|
50
|
+
<path d="m25.833 84.9999h12.5v5h-12.5z"/>
|
|
51
|
+
<path d="m41.667 84.9999h12.5v5h-12.5z"/>
|
|
52
|
+
<path d="m57.5 84.9999h12.5v5h-12.5z"/>
|
|
53
|
+
<path d="m10 28h60v27h-60z"/>
|
|
54
|
+
</g>
|
|
55
|
+
<path d="m28.5669 46.0005v1.9995h-6.6223v-1.9995zm-5.7849-10.4419v12.4414h-2.5635v-12.4414zm4.9219 5.0671v1.9483h-5.7593v-1.9483zm.8544-5.0671v2.0081h-6.6137v-2.0081zm3.3326 3.1958 1.5295 2.8113 1.5723-2.8113h2.6233l-2.6148 4.5203 2.7344 4.7253h-2.6318l-1.6663-2.9736-1.6663 2.9736h-2.6318l2.7344-4.7253-2.6148-4.5203zm10.57 7.4939c.302 0 .5697-.057.8033-.1709.2335-.1196.4158-.2848.5468-.4956.1368-.2165.208-.47.2137-.7605h2.3156c-.0057.6494-.1794 1.2276-.5212 1.7346-.3418.5013-.8004.8972-1.3757 1.1878-.5754.2848-1.2191.4272-1.9312.4272-.7178 0-1.3444-.1196-1.8799-.3589-.5298-.2392-.9712-.5696-1.3244-.9912-.3532-.4272-.6181-.9229-.7947-1.4868-.1766-.5697-.2649-1.1792-.2649-1.8286v-.2478c0-.6551.0883-1.2647.2649-1.8286.1766-.5697.4415-1.0653.7947-1.4869.3532-.4272.7946-.7605 1.3244-.9997.5298-.2393 1.1507-.3589 1.8628-.3589.7577 0 1.4213.1453 1.991.4358.5753.2905 1.0254.7064 1.3501 1.2475.3304.5355.4984 1.1707.5041 1.9056h-2.3156c-.0057-.3077-.0712-.5868-.1966-.8374-.1196-.2507-.2962-.4501-.5298-.5982-.2278-.1538-.5098-.2307-.8459-.2307-.3589 0-.6523.0769-.8801.2307-.2279.1481-.4045.3532-.5298.6153-.1253.2563-.2136.5497-.2649.8801-.0456.3247-.0684.6665-.0684 1.0254v.2478c0 .3589.0228.7035.0684 1.0339s.131.6238.2563.8801c.1311.2564.3105.4586.5384.6067.2278.1481.5241.2222.8886.2222zm9.5618 1.9226c-.7178 0-1.3615-.1139-1.9311-.3418-.5697-.2336-1.0539-.5554-1.4527-.9656-.3931-.4101-.695-.8858-.9057-1.427-.2108-.5469-.3162-1.1279-.3162-1.7431v-.3418c0-.7007.0997-1.3416.2991-1.9226.1993-.5811.4842-1.0852.8545-1.5125.3759-.4272.8317-.7548 1.3671-.9827.5355-.2335 1.1394-.3503 1.8116-.3503.6551 0 1.2361.1082 1.7431.3247s.9314.5241 1.2732.9229c.3475.3987.6096.8772.7862 1.4355.1766.5526.2649 1.1678.2649 1.8457v1.0254h-7.3487v-1.6406h4.9304v-.188c0-.3418-.0626-.6466-.188-.9143-.1196-.2735-.3019-.4899-.5468-.6494-.245-.1595-.5583-.2393-.94-.2393-.3247 0-.6038.0712-.8374.2136-.2335.1424-.4244.3418-.5725.5982-.1424.2563-.2506.5582-.3247.9057-.0683.3418-.1025.7178-.1025 1.128v.3418c0 .3702.0512.712.1538 1.0254.1082.3133.2592.5839.4529.8117.1993.2279.4386.4045.7177.5298.2849.1253.6067.188.9656.188.4443 0 .8574-.0855 1.239-.2564.3874-.1766.7206-.4414.9998-.7946l1.1963 1.2988c-.1937.2791-.4586.5469-.7947.8032-.3304.2564-.7292.4671-1.1963.6323-.4671.1595-.9998.2393-1.5979.2393zm7.793-13.2959v13.125h-2.4695v-13.125z" fill="#fff"/>
|
|
56
|
+
</svg>);
|
|
57
|
+
exports.default = SvgExcel;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgFile = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z" fill="#fff" stroke="#5e5e5e" strokeWidth={2}/>
|
|
39
|
+
<g fill="#5e5e5e">
|
|
40
|
+
<path d="m80 19.9998-20-20.00004414v20.00004414z"/>
|
|
41
|
+
<path d="m10 59.9998h59.9997v5h-59.9997z"/>
|
|
42
|
+
<path d="m10 69.9998h59.9997v5h-59.9997z"/>
|
|
43
|
+
<path d="m10 79.9998h30v5h-30z"/>
|
|
44
|
+
<path d="m10 27.9998h60v27h-60z"/>
|
|
45
|
+
</g>
|
|
46
|
+
<path d="m29.5154 35.5583v12.4415h-2.5635v-12.4415zm4.956 5.315v1.9995h-5.6567v-1.9995zm.5982-5.315v2.0081h-6.2549v-2.0081zm3.9306 3.1959v9.2456h-2.4694v-9.2456zm-2.6232-2.4097c0-.3589.1253-.6551.3759-.8887.2507-.2336.5868-.3503 1.0083-.3503.4159 0 .7491.1167.9998.3503.2563.2336.3845.5298.3845.8887s-.1282.6551-.3845.8887c-.2507.2335-.5839.3503-.9998.3503-.4215 0-.7576-.1168-1.0083-.3503-.2506-.2336-.3759-.5298-.3759-.8887zm7.2546-1.4697v13.125h-2.4695v-13.125zm6.2891 13.2959c-.7178 0-1.3615-.114-1.9312-.3418-.5697-.2336-1.0539-.5555-1.4526-.9656-.3931-.4102-.695-.8858-.9058-1.427-.2108-.5469-.3162-1.128-.3162-1.7432v-.3418c0-.7007.0997-1.3415.2991-1.9226.1994-.581.4842-1.0852.8545-1.5124.376-.4273.8317-.7548 1.3672-.9827.5355-.2336 1.1393-.3503 1.8115-.3503.6551 0 1.2362.1082 1.7432.3247.507.2164.9314.524 1.2732.9228.3475.3988.6095.8773.7861 1.4356.1766.5525.2649 1.1678.2649 1.8457v1.0254h-7.3486v-1.6407h4.9304v-.188c0-.3418-.0627-.6465-.188-.9143-.1196-.2734-.3019-.4899-.5469-.6494-.2449-.1595-.5582-.2392-.9399-.2392-.3247 0-.6039.0712-.8374.2136-.2336.1424-.4244.3418-.5725.5981-.1424.2564-.2507.5583-.3247.9058-.0684.3418-.1026.7178-.1026 1.1279v.3418c0 .3703.0513.7121.1538 1.0254.1083.3133.2592.5839.4529.8118.1994.2278.4387.4044.7178.5298.2848.1253.6067.1879.9656.1879.4443 0 .8573-.0854 1.239-.2563.3873-.1766.7206-.4415.9997-.7947l1.1963 1.2988c-.1937.2792-.4586.5469-.7947.8033-.3304.2563-.7291.4671-1.1962.6323-.4672.1595-.9998.2393-1.5979.2393z" fill="#fff"/>
|
|
47
|
+
</svg>);
|
|
48
|
+
exports.default = SvgFile;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgGeneric = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z" fill="#fff" stroke="#5e5e5e" strokeWidth={2}/>
|
|
39
|
+
<g fill="#5e5e5e">
|
|
40
|
+
<path d="m80 19.9998-20-20.00004414v20.00004414z"/>
|
|
41
|
+
<path d="m10 27.9998h59.9997v5h-59.9997z"/>
|
|
42
|
+
<path d="m10 37.9998h59.9997v5h-59.9997z"/>
|
|
43
|
+
<path d="m10 47.9998h59.9997v5h-59.9997z"/>
|
|
44
|
+
<path d="m10 57.9998h30v5h-30z"/>
|
|
45
|
+
</g>
|
|
46
|
+
</svg>);
|
|
47
|
+
exports.default = SvgGeneric;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgGeodata = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="m.999512 119v-118h58.585788l19.4142 19.4142v98.5858z" fill="#fff" stroke="#428542" strokeWidth={2}/>
|
|
39
|
+
<path d="m79.9995 20-20-20v20z" fill="#428542"/>
|
|
40
|
+
<path d="m9.99951 78h60v27h-60z" fill="#428542"/>
|
|
41
|
+
<path d="m22.7784 90.8907v3.8739c-.1521.1836-.3871.3827-.7049.5976-.3178.2104-.7273.3916-1.2287.5438-.5013.1522-1.1077.2283-1.8194.2283-.6311 0-1.2063-.103-1.7255-.3089-.5192-.2103-.9668-.5169-1.3427-.9198-.3715-.4028-.658-.8951-.8594-1.477-.2014-.5864-.3021-1.2555-.3021-2.0075v-.6109c0-.752.0962-1.4211.2887-2.0075.1969-.5863.4766-1.0809.8392-1.4837.3625-.4029.7945-.7095 1.2958-.9198.5013-.2104 1.0585-.3156 1.6717-.3156.8504 0 1.5487.1388 2.0947.4163.5461.273.9624.6535 1.2488 1.1413.291.4834.47 1.0384.5371 1.6651h-1.9537c-.0492-.3312-.1432-.6199-.282-.8661-.1387-.2462-.3379-.4387-.5975-.5774-.2552-.1388-.5864-.2081-.9937-.2081-.3357 0-.6356.0693-.8996.2081-.2596.1343-.479.3334-.658.5975s-.3155.5908-.4095.9803c-.094.3894-.141.8414-.141 1.3562v.6243c0 .5103.0492.9624.1477 1.3562.0984.3894.2439.7184.4364.987.1969.2641.4386.4632.7251.5975.2864.1343.6199.2014 1.0003.2014.3178 0 .5819-.0268.7923-.0805.2148-.0537.3871-.1186.5169-.1947.1343-.0806.2373-.1567.3089-.2283v-1.7322h-1.8396v-1.4368zm4.8475 5.2436c-.564 0-1.0698-.0895-1.5174-.2686-.4476-.1835-.828-.4364-1.1413-.7586-.3089-.3223-.5461-.696-.7117-1.1213-.1656-.4296-.2484-.8862-.2484-1.3696v-.2685c0-.5506.0783-1.0541.235-1.5107.1566-.4565.3804-.8526.6714-1.1883.2954-.3357.6534-.5931 1.0742-.7721.4207-.1835.8952-.2753 1.4233-.2753.5147 0 .9713.0851 1.3696.2551.3984.1701.7319.4118 1.0004.7251.273.3134.4789.6893.6177 1.128.1387.4341.2081.9175.2081 1.4502v.8056h-5.7739v-1.289h3.8739v-.1477c0-.2686-.0492-.5081-.1477-.7184-.094-.2149-.2372-.3849-.4297-.5103-.1925-.1253-.4386-.188-.7385-.188-.2552 0-.4745.056-.658.1679s-.3334.2685-.4498.47c-.1119.2014-.197.4386-.2551.7116-.0538.2686-.0806.564-.0806.8863v.2685c0 .2909.0403.5595.1208.8057.0851.2462.2037.4588.3559.6378.1566.179.3446.3178.5639.4163.2238.0984.4767.1477.7587.1477.3491 0 .6736-.0672.9735-.2015.3044-.1387.5662-.3468.7855-.6243l.94 1.0205c-.1522.2193-.3603.4296-.6244.6311-.2596.2014-.5729.367-.94.4968-.367.1253-.7855.188-1.2554.188zm3.7731-3.6926v-.141c0-.5327.0761-1.0228.2283-1.4704.1522-.452.3738-.8437.6647-1.1749s.649-.5886 1.0742-.7721c.4252-.188.9131-.282 1.4636-.282.5506 0 1.0407.094 1.4704.282.4297.1835.79.4409 1.0809.7721.2954.3312.5192.7229.6714 1.1749.1522.4476.2283.9377.2283 1.4704v.141c0 .5281-.0761 1.0182-.2283 1.4703-.1522.4476-.376.8392-.6714 1.1749-.2909.3312-.649.5886-1.0742.7721s-.9131.2753-1.4636.2753c-.5506 0-1.0407-.0918-1.4704-.2753-.4252-.1835-.7855-.4409-1.0809-.7721-.2909-.3357-.5125-.7273-.6647-1.1749-.1522-.4521-.2283-.9422-.2283-1.4703zm1.9336-.141v.141c0 .3043.0269.5885.0806.8526s.1388.4968.2551.6983c.1209.1969.2775.3513.47.4632s.4275.1679.705.1679c.2685 0 .499-.056.6915-.1679s.3469-.2663.4632-.4632c.1164-.2015.2015-.4342.2552-.6983.0582-.2641.0873-.5483.0873-.8526v-.141c0-.2955-.0291-.573-.0873-.8326-.0537-.264-.141-.4968-.2619-.6982-.1163-.2059-.2708-.367-.4632-.4834-.1925-.1164-.4252-.1746-.6983-.1746-.273 0-.5057.0582-.6982.1746-.188.1164-.3424.2775-.4633.4834-.1163.2014-.2014.4342-.2551.6982-.0537.2596-.0806.5371-.0806.8326zm10.4267 2.1148v-8.728h1.947v10.3125h-1.7523zm-4.5923-1.9604v-.141c0-.555.0627-1.0586.188-1.5106.1253-.4566.3088-.8482.5505-1.175.2417-.3267.5394-.5796.893-.7586.3536-.1791.7564-.2686 1.2085-.2686.4252 0 .7967.0895 1.1145.2686.3222.179.5953.4341.8191.7654.2282.3267.4117.7139.5505 1.1615.1387.4431.2395.9287.3021 1.4569v.3088c-.0626.5058-.1634.9757-.3021 1.4099-.1388.4342-.3223.8146-.5505 1.1414-.2238.3222-.4969.5729-.8191.7519-.3223.1791-.6983.2686-1.128.2686-.452 0-.8549-.0918-1.2085-.2753-.3491-.1835-.6445-.4409-.8862-.7721-.2372-.3312-.4185-.7206-.5438-1.1682s-.188-.9355-.188-1.4636zm1.9336-.141v.141c0 .2999.0224.5796.0671.8392.0493.2596.1276.4901.235.6915.1119.197.2551.3514.4297.4633.179.1074.3961.1611.6512.1611.3313 0 .6043-.0738.8191-.2215.2149-.1522.3782-.3603.4901-.6244.1164-.2641.1836-.5685.2015-.9131v-.8795c-.0135-.282-.0537-.5349-.1209-.7587-.0626-.2283-.1566-.423-.282-.5841-.1208-.1611-.273-.2865-.4565-.376-.179-.0895-.3917-.1342-.6378-.1342-.2507 0-.4655.0581-.6446.1745-.179.1119-.3245.2663-.4364.4633-.1074.1969-.188.4297-.2417.6982-.0492.2641-.0738.5505-.0738.8594zm10.0372 2.0477v-3.2361c0-.2327-.038-.4319-.1141-.5975-.0761-.1701-.1947-.3021-.3559-.3961-.1566-.094-.3603-.141-.6109-.141-.2149 0-.4006.038-.5573.1141-.1566.0716-.2775.1768-.3625.3156-.0851.1343-.1276.2931-.1276.4767h-1.9336c0-.3089.0716-.602.2149-.8796.1432-.2775.3513-.5214.6244-.7318.273-.2148.5975-.3827.9735-.5035.3804-.1209.8056-.1813 1.2756-.1813.564 0 1.0653.094 1.5039.282.4387.188.7833.47 1.0339.8459.2552.376.3827.846.3827 1.41v3.1085c0 .3983.0247.7251.0739.9802.0492.2507.1208.47.2148.658v.1141h-1.9537c-.094-.1969-.1656-.4431-.2148-.7385-.0448-.2999-.0672-.5998-.0672-.8997zm.2551-2.7862.0135 1.0943h-1.081c-.2551 0-.4766.0291-.6646.0873s-.3424.141-.4633.2484c-.1208.103-.2104.2238-.2685.3626-.0538.1387-.0806.2909-.0806.4565s.038.3156.1141.4498c.0761.1298.1858.2328.329.3089.1432.0716.3111.1074.5035.1074.291 0 .5439-.0582.7587-.1746.2149-.1163.3805-.2596.4968-.4297.1209-.17.1835-.3312.188-.4834l.5103.8191c-.0716.1836-.1701.3738-.2954.5707-.1209.197-.2753.3827-.4633.5573-.188.1701-.414.311-.6781.4229-.2641.1075-.5774.1612-.9399.1612-.461 0-.8795-.0918-1.2555-.2753-.3715-.188-.6669-.4453-.8863-.7721-.2148-.3312-.3222-.7072-.3222-1.1279 0-.3805.0716-.7184.2148-1.0138.1433-.2954.3536-.5438.6311-.7452.282-.2059.6334-.3604 1.0541-.4633.4207-.1074.9086-.1611 1.4636-.1611zm6.7408-2.84v1.3696h-4.2298v-1.3696zm-3.1824-1.7926h1.9336v6.8683c0 .2103.0268.3715.0806.4834.0581.1119.1432.1902.2551.235.1119.0402.2529.0604.423.0604.1208 0 .2282-.0045.3222-.0134.0985-.0135.1813-.0269.2484-.0403l.0067 1.4233c-.1656.0537-.3446.0962-.5371.1276-.1924.0313-.405.047-.6378.047-.4252 0-.7967-.0694-1.1145-.2082-.3133-.1432-.555-.3715-.7251-.6848s-.2551-.7251-.2551-1.2353zm8.2043 7.4188v-3.2361c0-.2327-.038-.4319-.1141-.5975-.0761-.1701-.1947-.3021-.3558-.3961-.1567-.094-.3603-.141-.611-.141-.2148 0-.4006.038-.5572.1141-.1567.0716-.2776.1768-.3626.3156-.085.1343-.1276.2931-.1276.4767h-1.9335c0-.3089.0716-.602.2148-.8796.1432-.2775.3514-.5214.6244-.7318.273-.2148.5975-.3827.9735-.5035.3804-.1209.8057-.1813 1.2756-.1813.564 0 1.0653.094 1.5039.282.4387.188.7833.47 1.034.8459.2551.376.3827.846.3827 1.41v3.1085c0 .3983.0246.7251.0738.9802.0492.2507.1209.47.2149.658v.1141h-1.9538c-.094-.1969-.1656-.4431-.2148-.7385-.0448-.2999-.0672-.5998-.0672-.8997zm.2552-2.7862.0134 1.0943h-1.0809c-.2552 0-.4767.0291-.6647.0873s-.3424.141-.4633.2484c-.1208.103-.2103.2238-.2685.3626-.0537.1387-.0806.2909-.0806.4565s.0381.3156.1141.4498c.0761.1298.1858.2328.329.3089.1433.0716.3111.1074.5036.1074.2909 0 .5438-.0582.7586-.1746.2149-.1163.3805-.2596.4969-.4297.1208-.17.1835-.3312.1879-.4834l.5103.8191c-.0716.1836-.1701.3738-.2954.5707-.1209.197-.2753.3827-.4633.5573-.188.1701-.414.311-.6781.4229-.264.1075-.5774.1612-.9399.1612-.461 0-.8795-.0918-1.2555-.2753-.3715-.188-.6669-.4453-.8862-.7721-.2149-.3312-.3223-.7072-.3223-1.1279 0-.3805.0716-.7184.2148-1.0138.1433-.2954.3536-.5438.6312-.7452.2819-.2059.6333-.3604 1.054-.4633.4208-.1074.9086-.1611 1.4637-.1611z" fill="#fff"/>
|
|
42
|
+
<path d="m40.0007 20.8333c-9.2143 0-16.6667 7.4004-16.6667 16.5504 0 12.4128 16.6667 30.7364 16.6667 30.7364s16.6666-18.3236 16.6666-30.7364c0-9.15-7.4524-16.5504-16.6666-16.5504zm0 22.4612c-3.2858 0-5.9524-2.648-5.9524-5.9108s2.6666-5.9109 5.9524-5.9109c3.2857 0 5.9523 2.6481 5.9523 5.9109s-2.6666 5.9108-5.9523 5.9108z" fill="#428542"/>
|
|
43
|
+
</svg>);
|
|
44
|
+
exports.default = SvgGeodata;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgIcal = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z" fill="#fff" stroke="#5e5e5e" strokeWidth={2}/>
|
|
39
|
+
<g fill="#5e5e5e">
|
|
40
|
+
<path d="m80 19.9998-20-20.00004414v20.00004414z"/>
|
|
41
|
+
<path d="m10 59.9998h59.9997v5h-59.9997z"/>
|
|
42
|
+
<path d="m10 69.9998h59.9997v5h-59.9997z"/>
|
|
43
|
+
<path d="m10 79.9998h30v5h-30z"/>
|
|
44
|
+
<path d="m10 27.9998h60v27h-60z"/>
|
|
45
|
+
</g>
|
|
46
|
+
<path d="m28.5156 38.7542v9.2456h-2.4695v-9.2456zm-2.6233-2.4097c0-.3589.1254-.6551.376-.8887.2507-.2336.5868-.3503 1.0083-.3503.4159 0 .7491.1167.9998.3503.2563.2336.3845.5298.3845.8887s-.1282.6551-.3845.8887c-.2507.2335-.5839.3503-.9998.3503-.4215 0-.7576-.1168-1.0083-.3503-.2506-.2336-.376-.5298-.376-.8887zm12.0227 7.5281h2.555c-.0513.8374-.282 1.5808-.6922 2.2302-.4044.6494-.9712 1.1564-1.7004 1.521-.7235.3646-1.5951.5469-2.6148.5469-.7975 0-1.5124-.1368-2.1447-.4102-.6324-.2791-1.1735-.6779-1.6236-1.1963-.4443-.5184-.7832-1.145-1.0168-1.8799-.2336-.7348-.3504-1.558-.3504-2.4695v-.863c0-.9115.1197-1.7346.3589-2.4695.245-.7405.5925-1.37 1.0425-1.8884.4557-.5184.9998-.9172 1.6321-1.1963s1.3387-.4187 2.1191-.4187c1.0368 0 1.9113.188 2.6233.564.7178.3759 1.2732.8943 1.6663 1.5551.3988.6609.638 1.4128.7178 2.2559h-2.5635c-.0285-.5013-.1282-.9257-.2991-1.2732-.1709-.3532-.4301-.6181-.7776-.7947-.3418-.1823-.7975-.2734-1.3672-.2734-.4272 0-.8003.0798-1.1193.2393-.3191.1595-.5868.4016-.8033.7263-.2164.3247-.3788.7348-.487 1.2304-.1026.49-.1538 1.0653-.1538 1.7261v.8801c0 .6438.0484 1.2106.1452 1.7005.0969.4842.245.8944.4444 1.2305.205.3304.4671.581.7861.7519.3247.1652.7149.2478 1.1706.2478.5355 0 .977-.0854 1.3245-.2563s.6124-.4244.7947-.7605c.188-.3361.2991-.7548.3332-1.2561zm9.0747 2.0422v-4.1187c0-.2962-.0484-.5497-.1452-.7605-.0969-.2164-.2478-.3845-.4529-.5041-.1994-.1196-.4586-.1794-.7776-.1794-.2734 0-.5098.0484-.7092.1452-.1994.0912-.3532.225-.4614.4016-.1083.1709-.1624.3732-.1624.6067h-2.4609c0-.3931.0911-.7662.2734-1.1194s.4472-.6636.7947-.9314c.3475-.2734.7605-.487 1.239-.6408.4842-.1538 1.0254-.2307 1.6235-.2307.7178 0 1.3558.1196 1.9141.3588.5583.2393.9969.5982 1.3159 1.0767.3247.4785.4871 1.0767.4871 1.7944v3.9563c0 .507.0313.9229.094 1.2476.0626.319.1538.5981.2734.8374v.1453h-2.4866c-.1196-.2507-.2107-.564-.2734-.94-.057-.3817-.0855-.7633-.0855-1.145zm.3248-3.5461.017 1.3928h-1.3757c-.3247 0-.6067.037-.8459.1111-.2393.074-.4358.1794-.5896.3161-.1538.131-.2678.2849-.3418.4614-.0684.1766-.1026.3703-.1026.5811s.0484.4016.1453.5725c.0968.1652.2364.2962.4187.3931.1823.0911.3959.1367.6409.1367.3702 0 .6921-.0741.9655-.2222.2735-.1481.4843-.3304.6324-.5468.1538-.2165.2335-.4216.2392-.6153l.6494 1.0425c-.0911.2336-.2164.4757-.3759.7263-.1539.2507-.3504.4871-.5896.7092-.2393.2165-.527.396-.8631.5384-.3361.1367-.7348.2051-1.1963.2051-.5867 0-1.1194-.1168-1.5979-.3504-.4728-.2392-.8488-.5668-1.1279-.9827-.2734-.4215-.4102-.9-.4102-1.4355 0-.4842.0912-.9143.2735-1.2903s.45-.6921.8032-.9485c.3589-.262.8061-.4585 1.3416-.5896.5354-.1367 1.1564-.205 1.8628-.205zm6.6479-7.4939v13.125h-2.4695v-13.125z" fill="#fff"/>
|
|
47
|
+
</svg>);
|
|
48
|
+
exports.default = SvgIcal;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgIco = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z" fill="#fff" stroke="#5e5e5e" strokeWidth={2}/>
|
|
39
|
+
<g fill="#5e5e5e">
|
|
40
|
+
<path d="m80 19.9998-20-20.00004414v20.00004414z"/>
|
|
41
|
+
<path d="m10 59.9998h59.9997v5h-59.9997z"/>
|
|
42
|
+
<path d="m10 69.9998h59.9997v5h-59.9997z"/>
|
|
43
|
+
<path d="m10 79.9998h30v5h-30z"/>
|
|
44
|
+
<path d="m10 27.9998h60v27h-60z"/>
|
|
45
|
+
</g>
|
|
46
|
+
<path d="m29.5154 35.5583v12.4415h-2.555v-12.4415zm9.613 8.3143h2.5549c-.0512.8374-.2819 1.5808-.6921 2.2302-.4044.6494-.9713 1.1564-1.7004 1.521-.7235.3646-1.5951.5469-2.6148.5469-.7975 0-1.5124-.1368-2.1448-.4102-.6323-.2791-1.1735-.6779-1.6235-1.1963-.4443-.5184-.7833-1.145-1.0168-1.8799-.2336-.7348-.3504-1.558-.3504-2.4695v-.863c0-.9115.1197-1.7346.3589-2.4695.245-.7405.5925-1.37 1.0425-1.8884.4557-.5184.9998-.9172 1.6321-1.1963s1.3387-.4187 2.1191-.4187c1.0368 0 1.9112.188 2.6233.564.7178.3759 1.2732.8943 1.6663 1.5551.3987.6609.638 1.4128.7177 2.2559h-2.5634c-.0285-.5013-.1282-.9257-.2991-1.2732-.1709-.3532-.4301-.6181-.7776-.7947-.3418-.1823-.7975-.2734-1.3672-.2734-.4272 0-.8004.0798-1.1194.2393s-.5867.4016-.8032.7263-.3788.7348-.4871 1.2304c-.1025.49-.1538 1.0653-.1538 1.7261v.8801c0 .6438.0485 1.2106.1453 1.7005.0968.4842.245.8944.4443 1.2305.2051.3304.4672.581.7862.7519.3247.1652.7149.2478 1.1706.2478.5355 0 .977-.0854 1.3245-.2563s.6124-.4244.7947-.7605c.188-.3361.299-.7548.3332-1.2561zm14.458-2.3841v.5896c0 .9457-.1281 1.7945-.3845 2.5464-.2563.752-.6181 1.3928-1.0852 1.9226-.4671.5241-1.0254.9257-1.6748 1.2049-.6437.2791-1.3586.4187-2.1448.4187-.7804 0-1.4953-.1396-2.1448-.4187-.6437-.2792-1.2019-.6808-1.6748-1.2049-.4728-.5298-.8402-1.1706-1.1023-1.9226-.2563-.7519-.3845-1.6007-.3845-2.5464v-.5896c0-.9513.1282-1.8001.3845-2.5464.2564-.7519.6181-1.3928 1.0852-1.9226.4729-.5298 1.0311-.9342 1.6749-1.2133.6494-.2792 1.3643-.4187 2.1447-.4187.7862 0 1.5011.1395 2.1448.4187.6494.2791 1.2077.6835 1.6748 1.2133.4728.5298.8374 1.1707 1.0938 1.9226.262.7463.393 1.5951.393 2.5464zm-2.5891.5896v-.6067c0-.6608-.0598-1.2418-.1794-1.7431-.1197-.5013-.2963-.9229-.5298-1.2647-.2336-.3418-.5184-.5981-.8545-.769-.3361-.1766-.7206-.2649-1.1536-.2649-.4329 0-.8174.0883-1.1535.2649-.3304.1709-.6124.4272-.846.769-.2278.3418-.4016.7634-.5212 1.2647-.1197.5013-.1795 1.0823-.1795 1.7431v.6067c0 .6551.0598 1.2362.1795 1.7432.1196.5013.2962.9257.5298 1.2732.2335.3418.5184.601.8545.7776s.7206.2649 1.1535.2649c.433 0 .8175-.0883 1.1536-.2649s.6181-.4358.8459-.7776c.2279-.3475.4016-.7719.5213-1.2732.1196-.507.1794-1.0881.1794-1.7432z" fill="#fff"/>
|
|
47
|
+
</svg>);
|
|
48
|
+
exports.default = SvgIco;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgImage = (props) => (<svg fill="none" viewBox="0 0 80 120" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="m.999512 119v-118.000244h58.585788l19.4142 19.414244v98.586z" fill="#fff" stroke="#5e5e5e" strokeWidth={2}/>
|
|
39
|
+
<path d="m79.9995 19.9998-20-20.00004414v20.00004414z" fill="#5e5e5e"/>
|
|
40
|
+
<path d="m63.9773 27.9998h-47.4546c-2.6363 0-5.2727 2.6666-5.2727 5.3333v37.3333c0 2.9334 2.3727 5.3334 5.2727 5.3334h47.4546c2.6363 0 5.2727-2.6667 5.2727-5.3334v-37.3333c0-2.6667-2.6364-5.3333-5.2727-5.3333zm-42.1818 37.3333 9.2272-12 6.5909 8.0267 9.2273-12.0267 11.8636 16z" fill="#5e5e5e"/>
|
|
41
|
+
<circle cx={39.5833} cy={43.6246} fill="#fff" r={3.33333}/>
|
|
42
|
+
</svg>);
|
|
43
|
+
exports.default = SvgImage;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Zip = exports.Xml = exports.Word = exports.Video = exports.Text = exports.Rtf = exports.Ppt = exports.Pdf = exports.Odt = exports.Ods = exports.Odp = exports.Odg = exports.Odf = exports.Image = exports.Ico = exports.Ical = exports.Geodata = exports.Generic = exports.File = exports.Excel = exports.Csv = exports.Audio = void 0;
|
|
7
|
+
var audio_1 = require("./audio");
|
|
8
|
+
Object.defineProperty(exports, "Audio", { enumerable: true, get: function () { return __importDefault(audio_1).default; } });
|
|
9
|
+
var csv_1 = require("./csv");
|
|
10
|
+
Object.defineProperty(exports, "Csv", { enumerable: true, get: function () { return __importDefault(csv_1).default; } });
|
|
11
|
+
var excel_1 = require("./excel");
|
|
12
|
+
Object.defineProperty(exports, "Excel", { enumerable: true, get: function () { return __importDefault(excel_1).default; } });
|
|
13
|
+
var file_1 = require("./file");
|
|
14
|
+
Object.defineProperty(exports, "File", { enumerable: true, get: function () { return __importDefault(file_1).default; } });
|
|
15
|
+
var generic_1 = require("./generic");
|
|
16
|
+
Object.defineProperty(exports, "Generic", { enumerable: true, get: function () { return __importDefault(generic_1).default; } });
|
|
17
|
+
var geodata_1 = require("./geodata");
|
|
18
|
+
Object.defineProperty(exports, "Geodata", { enumerable: true, get: function () { return __importDefault(geodata_1).default; } });
|
|
19
|
+
var ical_1 = require("./ical");
|
|
20
|
+
Object.defineProperty(exports, "Ical", { enumerable: true, get: function () { return __importDefault(ical_1).default; } });
|
|
21
|
+
var ico_1 = require("./ico");
|
|
22
|
+
Object.defineProperty(exports, "Ico", { enumerable: true, get: function () { return __importDefault(ico_1).default; } });
|
|
23
|
+
var image_1 = require("./image");
|
|
24
|
+
Object.defineProperty(exports, "Image", { enumerable: true, get: function () { return __importDefault(image_1).default; } });
|
|
25
|
+
var odf_1 = require("./odf");
|
|
26
|
+
Object.defineProperty(exports, "Odf", { enumerable: true, get: function () { return __importDefault(odf_1).default; } });
|
|
27
|
+
var odg_1 = require("./odg");
|
|
28
|
+
Object.defineProperty(exports, "Odg", { enumerable: true, get: function () { return __importDefault(odg_1).default; } });
|
|
29
|
+
var odp_1 = require("./odp");
|
|
30
|
+
Object.defineProperty(exports, "Odp", { enumerable: true, get: function () { return __importDefault(odp_1).default; } });
|
|
31
|
+
var ods_1 = require("./ods");
|
|
32
|
+
Object.defineProperty(exports, "Ods", { enumerable: true, get: function () { return __importDefault(ods_1).default; } });
|
|
33
|
+
var odt_1 = require("./odt");
|
|
34
|
+
Object.defineProperty(exports, "Odt", { enumerable: true, get: function () { return __importDefault(odt_1).default; } });
|
|
35
|
+
var pdf_1 = require("./pdf");
|
|
36
|
+
Object.defineProperty(exports, "Pdf", { enumerable: true, get: function () { return __importDefault(pdf_1).default; } });
|
|
37
|
+
var ppt_1 = require("./ppt");
|
|
38
|
+
Object.defineProperty(exports, "Ppt", { enumerable: true, get: function () { return __importDefault(ppt_1).default; } });
|
|
39
|
+
var rtf_1 = require("./rtf");
|
|
40
|
+
Object.defineProperty(exports, "Rtf", { enumerable: true, get: function () { return __importDefault(rtf_1).default; } });
|
|
41
|
+
var text_1 = require("./text");
|
|
42
|
+
Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return __importDefault(text_1).default; } });
|
|
43
|
+
var video_1 = require("./video");
|
|
44
|
+
Object.defineProperty(exports, "Video", { enumerable: true, get: function () { return __importDefault(video_1).default; } });
|
|
45
|
+
var word_1 = require("./word");
|
|
46
|
+
Object.defineProperty(exports, "Word", { enumerable: true, get: function () { return __importDefault(word_1).default; } });
|
|
47
|
+
var xml_1 = require("./xml");
|
|
48
|
+
Object.defineProperty(exports, "Xml", { enumerable: true, get: function () { return __importDefault(xml_1).default; } });
|
|
49
|
+
var zip_1 = require("./zip");
|
|
50
|
+
Object.defineProperty(exports, "Zip", { enumerable: true, get: function () { return __importDefault(zip_1).default; } });
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgOdf = (props) => (<svg viewBox="0 0 80 120" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="M59.5859 0.999756L79 20.4138V119H1V0.999756H59.5859Z" fill="white" stroke="#5E5E5E" strokeWidth={2}/>
|
|
39
|
+
<path d="M80 19.9998L60 -0.000244141V19.9998H80Z" fill="#5E5E5E"/>
|
|
40
|
+
<rect x={10} y={59.9998} width={59.9997} height={5} fill="#5E5E5E"/>
|
|
41
|
+
<rect x={10} y={69.9998} width={59.9997} height={5} fill="#5E5E5E"/>
|
|
42
|
+
<rect x={10} y={79.9998} width={30} height={5} fill="#5E5E5E"/>
|
|
43
|
+
<rect x={10} y={27.9998} width={60} height={27} fill="#5E5E5E"/>
|
|
44
|
+
<path d="M34.8047 41.4885V42.0781C34.8047 43.0238 34.6765 43.8726 34.4202 44.6245C34.1638 45.3765 33.8021 46.0173 33.335 46.5471C32.8678 47.0712 32.3096 47.4728 31.6602 47.752C31.0164 48.0311 30.3015 48.1707 29.5154 48.1707C28.7349 48.1707 28.02 48.0311 27.3706 47.752C26.7269 47.4728 26.1686 47.0712 25.6958 46.5471C25.223 46.0173 24.8556 45.3765 24.5935 44.6245C24.3372 43.8726 24.209 43.0238 24.209 42.0781V41.4885C24.209 40.5372 24.3372 39.6884 24.5935 38.9421C24.8499 38.1902 25.2116 37.5493 25.6787 37.0195C26.1515 36.4897 26.7098 36.0853 27.3535 35.8062C28.0029 35.527 28.7179 35.3875 29.4983 35.3875C30.2844 35.3875 30.9993 35.527 31.6431 35.8062C32.2925 36.0853 32.8507 36.4897 33.3179 37.0195C33.7907 37.5493 34.1553 38.1902 34.4116 38.9421C34.6737 39.6884 34.8047 40.5372 34.8047 41.4885ZM32.2156 42.0781V41.4714C32.2156 40.8106 32.1558 40.2296 32.0361 39.7283C31.9165 39.227 31.7399 38.8054 31.5063 38.4636C31.2728 38.1218 30.988 37.8655 30.6519 37.6946C30.3158 37.518 29.9312 37.4297 29.4983 37.4297C29.0653 37.4297 28.6808 37.518 28.3447 37.6946C28.0143 37.8655 27.7323 38.1218 27.4988 38.4636C27.2709 38.8054 27.0972 39.227 26.9775 39.7283C26.8579 40.2296 26.7981 40.8106 26.7981 41.4714V42.0781C26.7981 42.7332 26.8579 43.3143 26.9775 43.8213C27.0972 44.3226 27.2738 44.747 27.5073 45.0945C27.7409 45.4363 28.0257 45.6955 28.3618 45.8721C28.6979 46.0487 29.0824 46.137 29.5154 46.137C29.9483 46.137 30.3328 46.0487 30.6689 45.8721C31.005 45.6955 31.287 45.4363 31.5149 45.0945C31.7428 44.747 31.9165 44.3226 32.0361 43.8213C32.1558 43.3143 32.2156 42.7332 32.2156 42.0781ZM40.47 47.9998H37.7612L37.7783 46.0002H40.47C41.1422 46.0002 41.709 45.8493 42.1704 45.5474C42.6318 45.2397 42.9793 44.7926 43.2129 44.2058C43.4521 43.6191 43.5718 42.9098 43.5718 42.0781V41.4714C43.5718 40.8334 43.5034 40.2723 43.3667 39.7881C43.2357 39.3039 43.0391 38.8966 42.7771 38.5662C42.5151 38.2358 42.1932 37.988 41.8115 37.8228C41.4299 37.6519 40.9912 37.5664 40.4956 37.5664H37.71V35.5583H40.4956C41.3273 35.5583 42.0878 35.7008 42.7771 35.9856C43.4721 36.2647 44.0731 36.6663 44.5801 37.1904C45.0871 37.7145 45.4773 38.3411 45.7507 39.0703C46.0299 39.7938 46.1694 40.5999 46.1694 41.4885V42.0781C46.1694 42.9611 46.0299 43.7672 45.7507 44.4963C45.4773 45.2255 45.0871 45.8521 44.5801 46.3762C44.0788 46.8946 43.4778 47.2962 42.7771 47.5811C42.0821 47.8602 41.3131 47.9998 40.47 47.9998ZM39.2139 35.5583V47.9998H36.6504V35.5583H39.2139ZM50.5957 35.5583V47.9998H48.0322V35.5583H50.5957ZM55.5518 40.8733V42.8728H49.895V40.8733H55.5518ZM56.1499 35.5583V37.5664H49.895V35.5583H56.1499Z" fill="white"/>
|
|
45
|
+
</svg>);
|
|
46
|
+
exports.default = SvgOdf;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgOdg = (props) => (<svg viewBox="0 0 80 120" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="M59.5859 0.999756L79 20.4138V119H1V0.999756H59.5859Z" fill="white" stroke="#5E5E5E" strokeWidth={2}/>
|
|
39
|
+
<path d="M80 19.9998L60 -0.000244141V19.9998H80Z" fill="#5E5E5E"/>
|
|
40
|
+
<rect x={10} y={59.9998} width={59.9997} height={5} fill="#5E5E5E"/>
|
|
41
|
+
<rect x={10} y={69.9998} width={59.9997} height={5} fill="#5E5E5E"/>
|
|
42
|
+
<rect x={10} y={79.9998} width={30} height={5} fill="#5E5E5E"/>
|
|
43
|
+
<rect x={10} y={27.9998} width={60} height={27} fill="#5E5E5E"/>
|
|
44
|
+
<path d="M33.6426 41.4885V42.0781C33.6426 43.0238 33.5144 43.8726 33.2581 44.6245C33.0017 45.3765 32.64 46.0173 32.1729 46.5471C31.7057 47.0712 31.1475 47.4728 30.498 47.752C29.8543 48.0311 29.1394 48.1707 28.3533 48.1707C27.5728 48.1707 26.8579 48.0311 26.2085 47.752C25.5648 47.4728 25.0065 47.0712 24.5337 46.5471C24.0609 46.0173 23.6934 45.3765 23.4314 44.6245C23.175 43.8726 23.0469 43.0238 23.0469 42.0781V41.4885C23.0469 40.5372 23.175 39.6884 23.4314 38.9421C23.6877 38.1902 24.0495 37.5493 24.5166 37.0195C24.9894 36.4897 25.5477 36.0853 26.1914 35.8062C26.8408 35.527 27.5557 35.3875 28.3362 35.3875C29.1223 35.3875 29.8372 35.527 30.481 35.8062C31.1304 36.0853 31.6886 36.4897 32.1558 37.0195C32.6286 37.5493 32.9932 38.1902 33.2495 38.9421C33.5116 39.6884 33.6426 40.5372 33.6426 41.4885ZM31.0535 42.0781V41.4714C31.0535 40.8106 30.9937 40.2296 30.874 39.7283C30.7544 39.227 30.5778 38.8054 30.3442 38.4636C30.1107 38.1218 29.8258 37.8655 29.4897 37.6946C29.1536 37.518 28.7691 37.4297 28.3362 37.4297C27.9032 37.4297 27.5187 37.518 27.1826 37.6946C26.8522 37.8655 26.5702 38.1218 26.3367 38.4636C26.1088 38.8054 25.9351 39.227 25.8154 39.7283C25.6958 40.2296 25.636 40.8106 25.636 41.4714V42.0781C25.636 42.7332 25.6958 43.3143 25.8154 43.8213C25.9351 44.3226 26.1117 44.747 26.3452 45.0945C26.5788 45.4363 26.8636 45.6955 27.1997 45.8721C27.5358 46.0487 27.9203 46.137 28.3533 46.137C28.7862 46.137 29.1707 46.0487 29.5068 45.8721C29.8429 45.6955 30.1249 45.4363 30.3528 45.0945C30.5806 44.747 30.7544 44.3226 30.874 43.8213C30.9937 43.3143 31.0535 42.7332 31.0535 42.0781ZM39.3079 47.9998H36.5991L36.6162 46.0002H39.3079C39.9801 46.0002 40.5469 45.8493 41.0083 45.5474C41.4697 45.2397 41.8172 44.7926 42.0508 44.2058C42.29 43.6191 42.4097 42.9098 42.4097 42.0781V41.4714C42.4097 40.8334 42.3413 40.2723 42.2046 39.7881C42.0736 39.3039 41.877 38.8966 41.615 38.5662C41.3529 38.2358 41.0311 37.988 40.6494 37.8228C40.2677 37.6519 39.8291 37.5664 39.3335 37.5664H36.5479V35.5583H39.3335C40.1652 35.5583 40.9257 35.7008 41.615 35.9856C42.31 36.2647 42.911 36.6663 43.418 37.1904C43.925 37.7145 44.3152 38.3411 44.5886 39.0703C44.8678 39.7938 45.0073 40.5999 45.0073 41.4885V42.0781C45.0073 42.9611 44.8678 43.7672 44.5886 44.4963C44.3152 45.2255 43.925 45.8521 43.418 46.3762C42.9167 46.8946 42.3157 47.2962 41.615 47.5811C40.92 47.8602 40.151 47.9998 39.3079 47.9998ZM38.0518 35.5583V47.9998H35.4883V35.5583H38.0518ZM56.731 41.4971V46.4275C56.5373 46.6611 56.2382 46.9146 55.8337 47.188C55.4293 47.4557 54.908 47.6864 54.27 47.8801C53.632 48.0738 52.8601 48.1707 51.9543 48.1707C51.1511 48.1707 50.4191 48.0396 49.7583 47.7776C49.0975 47.5098 48.5278 47.1196 48.0493 46.6069C47.5765 46.0942 47.2119 45.4676 46.9556 44.7271C46.6992 43.9808 46.571 43.1292 46.571 42.1721V41.3945C46.571 40.4375 46.6935 39.5859 46.9385 38.8396C47.1891 38.0933 47.5452 37.4639 48.0066 36.9512C48.468 36.4385 49.0177 36.0483 49.6558 35.7805C50.2938 35.5128 51.003 35.3789 51.7834 35.3789C52.8658 35.3789 53.7545 35.5555 54.4495 35.9087C55.1444 36.2562 55.6742 36.7404 56.0388 37.3613C56.4091 37.9766 56.637 38.6829 56.7224 39.4805H54.2358C54.1732 39.0589 54.0535 38.6915 53.877 38.3782C53.7004 38.0649 53.4469 37.8199 53.1165 37.6433C52.7917 37.4667 52.3702 37.3784 51.8518 37.3784C51.4246 37.3784 51.0429 37.4667 50.7068 37.6433C50.3764 37.8142 50.0972 38.0677 49.8694 38.4038C49.6415 38.7399 49.4678 39.1558 49.3481 39.6514C49.2285 40.147 49.1687 40.7223 49.1687 41.3774V42.1721C49.1687 42.8215 49.2314 43.3969 49.3567 43.8982C49.482 44.3938 49.6672 44.8125 49.9121 45.1543C50.1628 45.4904 50.4704 45.7439 50.835 45.9148C51.1995 46.0857 51.6239 46.1711 52.1082 46.1711C52.5126 46.1711 52.8487 46.137 53.1165 46.0686C53.3899 46.0002 53.6092 45.9176 53.7744 45.8208C53.9453 45.7183 54.0763 45.6214 54.1675 45.5303V43.3257H51.8262V41.4971H56.731Z" fill="white"/>
|
|
45
|
+
</svg>);
|
|
46
|
+
exports.default = SvgOdg;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const React = __importStar(require("react"));
|
|
37
|
+
const SvgOdp = (props) => (<svg viewBox="0 0 80 120" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" {...props}>
|
|
38
|
+
<path d="M59.5859 1L79 20.4141V119H1V1H59.5859Z" fill="white" stroke="#CB4E0B" strokeWidth={2}/>
|
|
39
|
+
<path d="M80 20L60 0V20H80Z" fill="#CB4E0B"/>
|
|
40
|
+
<rect x={9.99951} y={28} width={60} height={27} fill="#CB4E0B"/>
|
|
41
|
+
<path d="M33.9668 41.4888V42.0784C33.9668 43.024 33.8386 43.8728 33.5823 44.6248C33.3259 45.3767 32.9642 46.0176 32.4971 46.5474C32.0299 47.0715 31.4717 47.4731 30.8223 47.7522C30.1785 48.0313 29.4636 48.1709 28.6775 48.1709C27.8971 48.1709 27.1821 48.0313 26.5327 47.7522C25.889 47.4731 25.3307 47.0715 24.8579 46.5474C24.3851 46.0176 24.0177 45.3767 23.7556 44.6248C23.4993 43.8728 23.3711 43.024 23.3711 42.0784V41.4888C23.3711 40.5374 23.4993 39.6886 23.7556 38.9424C24.012 38.1904 24.3737 37.5496 24.8408 37.0198C25.3136 36.49 25.8719 36.0855 26.5156 35.8064C27.165 35.5273 27.88 35.3877 28.6604 35.3877C29.4465 35.3877 30.1615 35.5273 30.8052 35.8064C31.4546 36.0855 32.0129 36.49 32.48 37.0198C32.9528 37.5496 33.3174 38.1904 33.5737 38.9424C33.8358 39.6886 33.9668 40.5374 33.9668 41.4888ZM31.3777 42.0784V41.4717C31.3777 40.8109 31.3179 40.2298 31.1982 39.7285C31.0786 39.2272 30.902 38.8057 30.6685 38.4639C30.4349 38.1221 30.1501 37.8657 29.814 37.6948C29.4779 37.5182 29.0933 37.4299 28.6604 37.4299C28.2275 37.4299 27.8429 37.5182 27.5068 37.6948C27.1764 37.8657 26.8944 38.1221 26.6609 38.4639C26.433 38.8057 26.2593 39.2272 26.1396 39.7285C26.02 40.2298 25.9602 40.8109 25.9602 41.4717V42.0784C25.9602 42.7335 26.02 43.3145 26.1396 43.8215C26.2593 44.3228 26.4359 44.7472 26.6694 45.0947C26.903 45.4365 27.1878 45.6957 27.5239 45.8723C27.86 46.0489 28.2445 46.1372 28.6775 46.1372C29.1104 46.1372 29.495 46.0489 29.8311 45.8723C30.1672 45.6957 30.4491 45.4365 30.677 45.0947C30.9049 44.7472 31.0786 44.3228 31.1982 43.8215C31.3179 43.3145 31.3777 42.7335 31.3777 42.0784ZM39.6321 48H36.9233L36.9404 46.0005H39.6321C40.3043 46.0005 40.8711 45.8495 41.3325 45.5476C41.7939 45.24 42.1414 44.7928 42.375 44.2061C42.6143 43.6193 42.7339 42.9101 42.7339 42.0784V41.4717C42.7339 40.8337 42.6655 40.2725 42.5288 39.7883C42.3978 39.3041 42.2013 38.8968 41.9392 38.5664C41.6772 38.236 41.3553 37.9882 40.9736 37.823C40.592 37.6521 40.1533 37.5667 39.6577 37.5667H36.8721V35.5586H39.6577C40.4894 35.5586 41.2499 35.701 41.9392 35.9858C42.6342 36.265 43.2352 36.6666 43.7422 37.1907C44.2492 37.7148 44.6394 38.3414 44.9128 39.0706C45.192 39.794 45.3315 40.6001 45.3315 41.4888V42.0784C45.3315 42.9613 45.192 43.7674 44.9128 44.4966C44.6394 45.2257 44.2492 45.8524 43.7422 46.3765C43.2409 46.8949 42.6399 47.2965 41.9392 47.5813C41.2442 47.8604 40.4752 48 39.6321 48ZM38.376 35.5586V48H35.8125V35.5586H38.376ZM52.0393 43.5652H48.8691V41.5657H52.0393C52.5292 41.5657 52.928 41.4859 53.2356 41.3264C53.5432 41.1612 53.7682 40.9333 53.9106 40.6428C54.0531 40.3523 54.1243 40.0247 54.1243 39.6602C54.1243 39.2899 54.0531 38.9452 53.9106 38.6262C53.7682 38.3072 53.5432 38.0509 53.2356 37.8572C52.928 37.6635 52.5292 37.5667 52.0393 37.5667H49.7578V48H47.1943V35.5586H52.0393C53.0134 35.5586 53.848 35.7352 54.543 36.0884C55.2437 36.4359 55.7791 36.9172 56.1494 37.5325C56.5197 38.1477 56.7048 38.8512 56.7048 39.6431C56.7048 40.4463 56.5197 41.1413 56.1494 41.728C55.7791 42.3148 55.2437 42.7677 54.543 43.0867C53.848 43.4057 53.0134 43.5652 52.0393 43.5652Z" fill="white"/>
|
|
42
|
+
<path d="M58.0328 83.4837C58.0328 87.2448 56.9175 90.9214 54.828 94.0486C52.7384 97.1759 49.7685 99.6132 46.2937 101.053C42.8189 102.492 38.9953 102.868 35.3065 102.135C31.6177 101.401 28.2293 99.5898 25.5698 96.9303C22.9103 94.2708 21.0992 90.8824 20.3654 87.1936C19.6317 83.5048 20.0082 79.6812 21.4475 76.2064C22.8869 72.7316 25.3242 69.7617 28.4515 67.6721C31.5787 65.5826 35.2553 64.4673 39.0164 64.4673V83.4837H58.0328Z" fill="#CB4E0B"/>
|
|
43
|
+
<path d="M40.9839 62.5C43.4812 62.5 45.954 62.9918 48.2611 63.9475C50.5683 64.9032 52.6647 66.3039 54.4305 68.0697C56.1963 69.8356 57.5971 71.9319 58.5527 74.2391C59.5084 76.5463 60.0003 79.0191 60.0003 81.5164L40.9839 81.5164L40.9839 62.5Z" fill="#CB4E0B"/>
|
|
44
|
+
</svg>);
|
|
45
|
+
exports.default = SvgOdp;
|