@clement_lores/admin-design-system 1.0.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/.babelrc.cjs +23 -0
- package/.eslintrc +50 -0
- package/.firebaserc +17 -0
- package/.prettierrc +6 -0
- package/.releaserc +36 -0
- package/.storybook/main.mjs +103 -0
- package/.storybook/manager.mjs +49 -0
- package/.storybook/preview-head.html +4 -0
- package/.storybook/preview.mjs +53 -0
- package/.storybook/theme-decorator.js +27 -0
- package/README.md +132 -0
- package/build/atoms/avatar/avatar.js +44 -0
- package/build/atoms/avatar/avatar.stories.js +19 -0
- package/build/atoms/avatar/index.js +1 -0
- package/build/atoms/badge/badge-props.doc.md +10 -0
- package/build/atoms/badge/badge.doc.md +90 -0
- package/build/atoms/badge/badge.js +86 -0
- package/build/atoms/badge/badge.stories.js +91 -0
- package/build/atoms/badge/index.js +1 -0
- package/build/atoms/box/box-props.doc.md +16 -0
- package/build/atoms/box/box.doc.md +75 -0
- package/build/atoms/box/box.js +97 -0
- package/build/atoms/box/box.stories.js +41 -0
- package/build/atoms/box/index.js +1 -0
- package/build/atoms/button/button-css.js +193 -0
- package/build/atoms/button/button-props.doc.md +4 -0
- package/build/atoms/button/button-props.js +1 -0
- package/build/atoms/button/button.doc.md +103 -0
- package/build/atoms/button/button.js +37 -0
- package/build/atoms/button/button.stories.js +111 -0
- package/build/atoms/button/index.js +3 -0
- package/build/atoms/check-box/check-box.js +177 -0
- package/build/atoms/check-box/check-box.stories.js +54 -0
- package/build/atoms/check-box/index.js +1 -0
- package/build/atoms/currency-input/currency-input.js +63 -0
- package/build/atoms/currency-input/currency-input.stories.js +103 -0
- package/build/atoms/currency-input/index.js +1 -0
- package/build/atoms/icon/icon.js +134 -0
- package/build/atoms/icon/icon.stories.js +69 -0
- package/build/atoms/icon/index.js +1 -0
- package/build/atoms/illustration/illustration.js +71 -0
- package/build/atoms/illustration/illustration.stories.js +55 -0
- package/build/atoms/illustration/index.js +1 -0
- package/build/atoms/illustrations/accept.js +48 -0
- package/build/atoms/illustrations/adminjs-logo.js +52 -0
- package/build/atoms/illustrations/astronaut.js +58 -0
- package/build/atoms/illustrations/bag.js +90 -0
- package/build/atoms/illustrations/beware.js +57 -0
- package/build/atoms/illustrations/box.js +95 -0
- package/build/atoms/illustrations/calendar.js +97 -0
- package/build/atoms/illustrations/cancel.js +48 -0
- package/build/atoms/illustrations/cards.js +65 -0
- package/build/atoms/illustrations/clip.js +107 -0
- package/build/atoms/illustrations/cloud.js +58 -0
- package/build/atoms/illustrations/cup.js +60 -0
- package/build/atoms/illustrations/details.js +84 -0
- package/build/atoms/illustrations/docs.js +77 -0
- package/build/atoms/illustrations/document-check.js +66 -0
- package/build/atoms/illustrations/document-search.js +69 -0
- package/build/atoms/illustrations/drawer.js +84 -0
- package/build/atoms/illustrations/file-search.js +37 -0
- package/build/atoms/illustrations/flag-in-cog.js +97 -0
- package/build/atoms/illustrations/folder.js +73 -0
- package/build/atoms/illustrations/folders.js +74 -0
- package/build/atoms/illustrations/github-logo.js +26 -0
- package/build/atoms/illustrations/identity-card.js +93 -0
- package/build/atoms/illustrations/index.js +35 -0
- package/build/atoms/illustrations/launch.js +75 -0
- package/build/atoms/illustrations/moon.js +135 -0
- package/build/atoms/illustrations/not-found.js +80 -0
- package/build/atoms/illustrations/notebook.js +132 -0
- package/build/atoms/illustrations/padlock.js +79 -0
- package/build/atoms/illustrations/photos.js +65 -0
- package/build/atoms/illustrations/planet.js +110 -0
- package/build/atoms/illustrations/plug.js +80 -0
- package/build/atoms/illustrations/props.type.js +1 -0
- package/build/atoms/illustrations/rocket-new.js +113 -0
- package/build/atoms/illustrations/rocket.js +343 -0
- package/build/atoms/illustrations/slack-logo.js +52 -0
- package/build/atoms/illustrations/tags.js +62 -0
- package/build/atoms/index.js +23 -0
- package/build/atoms/input/index.js +1 -0
- package/build/atoms/input/input.js +164 -0
- package/build/atoms/input/input.stories.js +109 -0
- package/build/atoms/label/index.js +1 -0
- package/build/atoms/label/label.js +144 -0
- package/build/atoms/label/label.stories.js +61 -0
- package/build/atoms/link/index.js +1 -0
- package/build/atoms/link/link.js +118 -0
- package/build/atoms/link/link.stories.js +52 -0
- package/build/atoms/loader/index.js +1 -0
- package/build/atoms/loader/loader.js +83 -0
- package/build/atoms/loader/loader.stories.js +7 -0
- package/build/atoms/overlay/index.js +1 -0
- package/build/atoms/overlay/overlay.js +19 -0
- package/build/atoms/overlay/overlay.stories.js +7 -0
- package/build/atoms/phone-input/index.js +1 -0
- package/build/atoms/phone-input/phone-input.js +69 -0
- package/build/atoms/phone-input/phone-input.stories.js +59 -0
- package/build/atoms/placeholder/index.js +1 -0
- package/build/atoms/placeholder/placeholder.js +110 -0
- package/build/atoms/placeholder/placeholder.stories.js +17 -0
- package/build/atoms/radio/index.js +1 -0
- package/build/atoms/radio/radio.js +146 -0
- package/build/atoms/radio/radio.stories.js +42 -0
- package/build/atoms/section/index.js +1 -0
- package/build/atoms/section/section.js +45 -0
- package/build/atoms/section/section.stories.js +24 -0
- package/build/atoms/table/index.js +6 -0
- package/build/atoms/table/table-body.js +15 -0
- package/build/atoms/table/table-caption.js +39 -0
- package/build/atoms/table/table-cell.js +38 -0
- package/build/atoms/table/table-head.js +33 -0
- package/build/atoms/table/table-row.js +24 -0
- package/build/atoms/table/table.js +114 -0
- package/build/atoms/table/table.stories.js +46 -0
- package/build/atoms/tabs/index.js +2 -0
- package/build/atoms/tabs/tab.js +29 -0
- package/build/atoms/tabs/tabs.js +118 -0
- package/build/atoms/tabs/tabs.stories.js +26 -0
- package/build/atoms/text/index.js +1 -0
- package/build/atoms/text/text.js +77 -0
- package/build/atoms/text-area/index.js +1 -0
- package/build/atoms/text-area/text-area.js +58 -0
- package/build/atoms/text-area/text-area.stories.js +26 -0
- package/build/atoms/tooltip/index.js +5 -0
- package/build/atoms/tooltip/tooltip-content.js +10 -0
- package/build/atoms/tooltip/tooltip-control.js +102 -0
- package/build/atoms/tooltip/tooltip-props.js +1 -0
- package/build/atoms/tooltip/tooltip-styled.js +129 -0
- package/build/atoms/tooltip/tooltip.doc.md +61 -0
- package/build/atoms/tooltip/tooltip.js +65 -0
- package/build/atoms/tooltip/tooltip.stories.js +47 -0
- package/build/atoms/typography/caption-shared.js +10 -0
- package/build/atoms/typography/caption.js +10 -0
- package/build/atoms/typography/card-title.js +14 -0
- package/build/atoms/typography/header.doc.md +38 -0
- package/build/atoms/typography/header.js +128 -0
- package/build/atoms/typography/index.js +5 -0
- package/build/atoms/typography/small-text.js +10 -0
- package/build/atoms/typography/title.js +10 -0
- package/build/atoms/typography/typography.stories.js +80 -0
- package/build/constants.js +2 -0
- package/build/global.js +53 -0
- package/build/hooks/use-window-size.js +28 -0
- package/build/index.doc.md +133 -0
- package/build/index.js +16 -0
- package/build/molecules/date-picker/date-picker.js +326 -0
- package/build/molecules/date-picker/date-picker.stories.js +49 -0
- package/build/molecules/date-picker/index.js +2 -0
- package/build/molecules/date-picker/useDatePicker.js +37 -0
- package/build/molecules/drawer/drawer-content.js +22 -0
- package/build/molecules/drawer/drawer-footer.js +21 -0
- package/build/molecules/drawer/drawer.js +120 -0
- package/build/molecules/drawer/drawer.stories.js +39 -0
- package/build/molecules/drawer/index.js +3 -0
- package/build/molecules/drop-down/drop-down-item-action.js +19 -0
- package/build/molecules/drop-down/drop-down-item.js +95 -0
- package/build/molecules/drop-down/drop-down-menu.js +45 -0
- package/build/molecules/drop-down/drop-down-trigger.js +11 -0
- package/build/molecules/drop-down/drop-down.doc.md +74 -0
- package/build/molecules/drop-down/drop-down.js +85 -0
- package/build/molecules/drop-down/drop-down.stories.js +66 -0
- package/build/molecules/drop-down/index.js +5 -0
- package/build/molecules/drop-zone/drop-zone-image.js +46 -0
- package/build/molecules/drop-zone/drop-zone-item.js +128 -0
- package/build/molecules/drop-zone/drop-zone.js +318 -0
- package/build/molecules/drop-zone/drop-zone.stories.js +111 -0
- package/build/molecules/drop-zone/index.js +2 -0
- package/build/molecules/form-group/form-group.js +184 -0
- package/build/molecules/form-group/form-group.stories.js +35 -0
- package/build/molecules/form-group/form-message.js +23 -0
- package/build/molecules/form-group/index.js +3 -0
- package/build/molecules/form-group/input-group.js +68 -0
- package/build/molecules/index.js +15 -0
- package/build/molecules/info-box/index.js +1 -0
- package/build/molecules/info-box/info-box.js +70 -0
- package/build/molecules/info-box/info-box.stories.js +17 -0
- package/build/molecules/message-box/index.js +1 -0
- package/build/molecules/message-box/message-box.js +173 -0
- package/build/molecules/message-box/message-box.stories.js +43 -0
- package/build/molecules/modal/index.js +4 -0
- package/build/molecules/modal/modal-inline.js +63 -0
- package/build/molecules/modal/modal-props.js +1 -0
- package/build/molecules/modal/modal-styled.js +52 -0
- package/build/molecules/modal/modal-wrapper.js +33 -0
- package/build/molecules/modal/modal.doc.md +138 -0
- package/build/molecules/modal/modal.js +17 -0
- package/build/molecules/modal/modal.stories.js +79 -0
- package/build/molecules/navigation-element/index.js +3 -0
- package/build/molecules/navigation-element/navigation-element-props.js +1 -0
- package/build/molecules/navigation-element/navigation-element-styled.js +66 -0
- package/build/molecules/navigation-element/navigation-element.doc.md +69 -0
- package/build/molecules/navigation-element/navigation-element.js +61 -0
- package/build/molecules/navigation-element/navigation-element.stories.js +53 -0
- package/build/molecules/pagination/index.js +1 -0
- package/build/molecules/pagination/pagination.js +141 -0
- package/build/molecules/pagination/pagination.stories.js +22 -0
- package/build/molecules/rich-text-editor/components/heading-select.js +29 -0
- package/build/molecules/rich-text-editor/components/image-button.js +45 -0
- package/build/molecules/rich-text-editor/components/menu-bar.js +32 -0
- package/build/molecules/rich-text-editor/components/menu-button.js +37 -0
- package/build/molecules/rich-text-editor/icons/align-center.js +12 -0
- package/build/molecules/rich-text-editor/icons/align-justify.js +12 -0
- package/build/molecules/rich-text-editor/icons/align-left.js +12 -0
- package/build/molecules/rich-text-editor/icons/align-right.js +12 -0
- package/build/molecules/rich-text-editor/icons/bold.js +12 -0
- package/build/molecules/rich-text-editor/icons/bullet-list.js +12 -0
- package/build/molecules/rich-text-editor/icons/clear.js +12 -0
- package/build/molecules/rich-text-editor/icons/code.js +18 -0
- package/build/molecules/rich-text-editor/icons/font-size.js +12 -0
- package/build/molecules/rich-text-editor/icons/image.js +18 -0
- package/build/molecules/rich-text-editor/icons/index.js +20 -0
- package/build/molecules/rich-text-editor/icons/italic.js +12 -0
- package/build/molecules/rich-text-editor/icons/link.js +15 -0
- package/build/molecules/rich-text-editor/icons/ordered-list.js +12 -0
- package/build/molecules/rich-text-editor/icons/pagebreak.js +12 -0
- package/build/molecules/rich-text-editor/icons/paragraph.js +12 -0
- package/build/molecules/rich-text-editor/icons/quote.js +12 -0
- package/build/molecules/rich-text-editor/icons/redo.js +12 -0
- package/build/molecules/rich-text-editor/icons/strikethrough.js +12 -0
- package/build/molecules/rich-text-editor/icons/undo.js +12 -0
- package/build/molecules/rich-text-editor/index.js +2 -0
- package/build/molecules/rich-text-editor/rich-text-editor-props.js +1 -0
- package/build/molecules/rich-text-editor/rich-text-editor.js +60 -0
- package/build/molecules/rich-text-editor/rich-text-editor.stories.js +85 -0
- package/build/molecules/rich-text-editor/rich-text-editor.styled.js +46 -0
- package/build/molecules/rich-text-editor/useTiptapCommands.js +15 -0
- package/build/molecules/select/index.js +2 -0
- package/build/molecules/select/select-async.js +43 -0
- package/build/molecules/select/select-theme.js +36 -0
- package/build/molecules/select/select.js +45 -0
- package/build/molecules/select/select.stories.js +80 -0
- package/build/molecules/stepper/index.js +2 -0
- package/build/molecules/stepper/step.js +141 -0
- package/build/molecules/stepper/stepper.js +115 -0
- package/build/molecules/stepper/stepper.stories.js +54 -0
- package/build/molecules/tinymce-editor/index.js +1 -0
- package/build/molecules/tinymce-editor/tinymce-editor.js +89 -0
- package/build/molecules/tinymce-editor/tinymce-editor.styled.js +15 -0
- package/build/molecules/value-group/index.js +2 -0
- package/build/molecules/value-group/value-group-props.js +1 -0
- package/build/molecules/value-group/value-group.doc.md +67 -0
- package/build/molecules/value-group/value-group.js +28 -0
- package/build/molecules/value-group/value-group.stories.js +41 -0
- package/build/organisms/button-group/button-group.doc.md +92 -0
- package/build/organisms/button-group/button-group.js +34 -0
- package/build/organisms/button-group/button-group.stories.js +103 -0
- package/build/organisms/button-group/button-group.styled.js +54 -0
- package/build/organisms/button-group/button-group.types.js +1 -0
- package/build/organisms/button-group/button-in-group.js +25 -0
- package/build/organisms/button-group/drop-down-item-with-buttons.js +45 -0
- package/build/organisms/button-group/index.js +6 -0
- package/build/organisms/button-group/single-button-in-group.js +39 -0
- package/build/organisms/current-user-nav/current-user-nav-props.js +1 -0
- package/build/organisms/current-user-nav/current-user-nav-styled.js +27 -0
- package/build/organisms/current-user-nav/current-user-nav.doc.md +72 -0
- package/build/organisms/current-user-nav/current-user-nav.js +68 -0
- package/build/organisms/current-user-nav/current-user-nav.stories.js +74 -0
- package/build/organisms/current-user-nav/index.js +3 -0
- package/build/organisms/index.js +4 -0
- package/build/organisms/made-with-love/index.js +1 -0
- package/build/organisms/made-with-love/made-with-love.js +43 -0
- package/build/organisms/made-with-love/made-with-love.stories.js +7 -0
- package/build/organisms/navigation/index.js +4 -0
- package/build/organisms/navigation/navigation-element-wrapper.js +14 -0
- package/build/organisms/navigation/navigation-props.js +1 -0
- package/build/organisms/navigation/navigation-styled.js +14 -0
- package/build/organisms/navigation/navigation.doc.md +126 -0
- package/build/organisms/navigation/navigation.js +34 -0
- package/build/organisms/navigation/navigation.stories.js +110 -0
- package/build/templates/blog.js +0 -0
- package/build/templates/blog.stories.js +52 -0
- package/build/theme.doc.md +111 -0
- package/build/theme.js +532 -0
- package/build/utils/assert.js +7 -0
- package/build/utils/color-props.js +1 -0
- package/build/utils/combine-styles.js +28 -0
- package/build/utils/content-styles.js +268 -0
- package/build/utils/css-class.js +35 -0
- package/build/utils/date-utils.js +50 -0
- package/build/utils/datepicker.styles.js +788 -0
- package/build/utils/default-theme.interface.js +1 -0
- package/build/utils/direction-props.js +1 -0
- package/build/utils/focus-shadow.style.js +6 -0
- package/build/utils/generate-id.js +8 -0
- package/build/utils/human-file-size.js +23 -0
- package/build/utils/index.js +13 -0
- package/build/utils/non-nullish-partial-record.type.js +1 -0
- package/build/utils/phone-input.styles.js +1168 -0
- package/build/utils/portal-utils.js +31 -0
- package/build/utils/reset.styles.js +94 -0
- package/build/utils/select-styles.js +47 -0
- package/build/utils/story-wrapper.js +22 -0
- package/build/utils/styled.js +6 -0
- package/build/utils/theme-get.js +51 -0
- package/commitlint.config.cjs +5 -0
- package/config/rollup.js +70 -0
- package/entry.js +11 -0
- package/firebase.json +17 -0
- package/package.json +171 -0
- package/src/atoms/avatar/avatar.stories.tsx +28 -0
- package/src/atoms/avatar/avatar.tsx +44 -0
- package/src/atoms/avatar/index.ts +1 -0
- package/src/atoms/badge/badge-props.doc.md +10 -0
- package/src/atoms/badge/badge.doc.md +90 -0
- package/src/atoms/badge/badge.stories.tsx +90 -0
- package/src/atoms/badge/badge.tsx +99 -0
- package/src/atoms/badge/index.ts +1 -0
- package/src/atoms/box/box-props.doc.md +16 -0
- package/src/atoms/box/box.doc.md +75 -0
- package/src/atoms/box/box.stories.tsx +47 -0
- package/src/atoms/box/box.tsx +131 -0
- package/src/atoms/box/index.ts +1 -0
- package/src/atoms/button/button-css.tsx +196 -0
- package/src/atoms/button/button-props.doc.md +4 -0
- package/src/atoms/button/button-props.ts +43 -0
- package/src/atoms/button/button.doc.md +103 -0
- package/src/atoms/button/button.stories.tsx +113 -0
- package/src/atoms/button/button.tsx +39 -0
- package/src/atoms/button/index.ts +3 -0
- package/src/atoms/check-box/check-box.stories.tsx +46 -0
- package/src/atoms/check-box/check-box.tsx +169 -0
- package/src/atoms/check-box/index.ts +1 -0
- package/src/atoms/currency-input/currency-input.stories.tsx +77 -0
- package/src/atoms/currency-input/currency-input.tsx +74 -0
- package/src/atoms/currency-input/index.ts +1 -0
- package/src/atoms/icon/icon.stories.tsx +46 -0
- package/src/atoms/icon/icon.tsx +155 -0
- package/src/atoms/icon/index.ts +1 -0
- package/src/atoms/illustration/illustration.stories.tsx +39 -0
- package/src/atoms/illustration/illustration.tsx +84 -0
- package/src/atoms/illustration/index.ts +1 -0
- package/src/atoms/illustrations/accept.tsx +17 -0
- package/src/atoms/illustrations/adminjs-logo.tsx +37 -0
- package/src/atoms/illustrations/astronaut.tsx +22 -0
- package/src/atoms/illustrations/bag.tsx +25 -0
- package/src/atoms/illustrations/beware.tsx +18 -0
- package/src/atoms/illustrations/box.tsx +25 -0
- package/src/atoms/illustrations/calendar.tsx +24 -0
- package/src/atoms/illustrations/cancel.tsx +17 -0
- package/src/atoms/illustrations/cards.tsx +20 -0
- package/src/atoms/illustrations/clip.tsx +28 -0
- package/src/atoms/illustrations/cloud.tsx +22 -0
- package/src/atoms/illustrations/cup.tsx +20 -0
- package/src/atoms/illustrations/details.tsx +24 -0
- package/src/atoms/illustrations/docs.tsx +25 -0
- package/src/atoms/illustrations/document-check.tsx +22 -0
- package/src/atoms/illustrations/document-search.tsx +22 -0
- package/src/atoms/illustrations/drawer.tsx +26 -0
- package/src/atoms/illustrations/file-search.tsx +18 -0
- package/src/atoms/illustrations/flag-in-cog.tsx +26 -0
- package/src/atoms/illustrations/folder.tsx +24 -0
- package/src/atoms/illustrations/folders.tsx +22 -0
- package/src/atoms/illustrations/github-logo.tsx +15 -0
- package/src/atoms/illustrations/identity-card.tsx +28 -0
- package/src/atoms/illustrations/index.ts +35 -0
- package/src/atoms/illustrations/launch.tsx +24 -0
- package/src/atoms/illustrations/moon.tsx +42 -0
- package/src/atoms/illustrations/not-found.tsx +24 -0
- package/src/atoms/illustrations/notebook.tsx +32 -0
- package/src/atoms/illustrations/padlock.tsx +24 -0
- package/src/atoms/illustrations/photos.tsx +19 -0
- package/src/atoms/illustrations/planet.tsx +28 -0
- package/src/atoms/illustrations/plug.tsx +23 -0
- package/src/atoms/illustrations/props.type.ts +7 -0
- package/src/atoms/illustrations/rocket-new.tsx +30 -0
- package/src/atoms/illustrations/rocket.tsx +90 -0
- package/src/atoms/illustrations/slack-logo.tsx +29 -0
- package/src/atoms/illustrations/tags.tsx +20 -0
- package/src/atoms/index.ts +23 -0
- package/src/atoms/input/index.ts +1 -0
- package/src/atoms/input/input.stories.tsx +77 -0
- package/src/atoms/input/input.tsx +146 -0
- package/src/atoms/label/index.ts +1 -0
- package/src/atoms/label/label.stories.tsx +42 -0
- package/src/atoms/label/label.tsx +163 -0
- package/src/atoms/link/index.ts +1 -0
- package/src/atoms/link/link.stories.tsx +45 -0
- package/src/atoms/link/link.tsx +128 -0
- package/src/atoms/loader/index.ts +1 -0
- package/src/atoms/loader/loader.stories.tsx +12 -0
- package/src/atoms/loader/loader.tsx +91 -0
- package/src/atoms/overlay/index.ts +1 -0
- package/src/atoms/overlay/overlay.stories.tsx +12 -0
- package/src/atoms/overlay/overlay.tsx +24 -0
- package/src/atoms/phone-input/index.ts +1 -0
- package/src/atoms/phone-input/phone-input.stories.tsx +47 -0
- package/src/atoms/phone-input/phone-input.tsx +79 -0
- package/src/atoms/placeholder/index.ts +1 -0
- package/src/atoms/placeholder/placeholder.stories.tsx +25 -0
- package/src/atoms/placeholder/placeholder.tsx +105 -0
- package/src/atoms/radio/index.ts +1 -0
- package/src/atoms/radio/radio.stories.tsx +35 -0
- package/src/atoms/radio/radio.tsx +142 -0
- package/src/atoms/section/index.ts +1 -0
- package/src/atoms/section/section.stories.tsx +35 -0
- package/src/atoms/section/section.tsx +47 -0
- package/src/atoms/table/index.ts +6 -0
- package/src/atoms/table/table-body.tsx +19 -0
- package/src/atoms/table/table-caption.tsx +43 -0
- package/src/atoms/table/table-cell.tsx +35 -0
- package/src/atoms/table/table-head.tsx +31 -0
- package/src/atoms/table/table-row.tsx +26 -0
- package/src/atoms/table/table.stories.tsx +76 -0
- package/src/atoms/table/table.tsx +110 -0
- package/src/atoms/tabs/index.ts +2 -0
- package/src/atoms/tabs/tab.tsx +38 -0
- package/src/atoms/tabs/tabs.stories.tsx +30 -0
- package/src/atoms/tabs/tabs.tsx +165 -0
- package/src/atoms/text/index.ts +1 -0
- package/src/atoms/text/text.tsx +98 -0
- package/src/atoms/text-area/index.ts +1 -0
- package/src/atoms/text-area/text-area.stories.tsx +24 -0
- package/src/atoms/text-area/text-area.tsx +63 -0
- package/src/atoms/tooltip/index.ts +5 -0
- package/src/atoms/tooltip/tooltip-content.tsx +13 -0
- package/src/atoms/tooltip/tooltip-control.tsx +118 -0
- package/src/atoms/tooltip/tooltip-props.ts +30 -0
- package/src/atoms/tooltip/tooltip-styled.tsx +138 -0
- package/src/atoms/tooltip/tooltip.doc.md +61 -0
- package/src/atoms/tooltip/tooltip.stories.tsx +53 -0
- package/src/atoms/tooltip/tooltip.tsx +77 -0
- package/src/atoms/typography/caption-shared.ts +13 -0
- package/src/atoms/typography/caption.ts +15 -0
- package/src/atoms/typography/card-title.ts +19 -0
- package/src/atoms/typography/header.doc.md +38 -0
- package/src/atoms/typography/header.tsx +128 -0
- package/src/atoms/typography/index.ts +5 -0
- package/src/atoms/typography/small-text.ts +15 -0
- package/src/atoms/typography/title.ts +15 -0
- package/src/atoms/typography/typography.stories.tsx +259 -0
- package/src/constants.ts +2 -0
- package/src/global.ts +53 -0
- package/src/hooks/use-window-size.ts +36 -0
- package/src/index.doc.md +133 -0
- package/src/index.ts +20 -0
- package/src/molecules/date-picker/date-picker.stories.tsx +48 -0
- package/src/molecules/date-picker/date-picker.tsx +329 -0
- package/src/molecules/date-picker/index.ts +2 -0
- package/src/molecules/date-picker/useDatePicker.ts +45 -0
- package/src/molecules/drawer/drawer-content.tsx +18 -0
- package/src/molecules/drawer/drawer-footer.tsx +19 -0
- package/src/molecules/drawer/drawer.stories.tsx +55 -0
- package/src/molecules/drawer/drawer.tsx +127 -0
- package/src/molecules/drawer/index.ts +3 -0
- package/src/molecules/drop-down/drop-down-item-action.tsx +20 -0
- package/src/molecules/drop-down/drop-down-item.tsx +95 -0
- package/src/molecules/drop-down/drop-down-menu.tsx +45 -0
- package/src/molecules/drop-down/drop-down-trigger.tsx +12 -0
- package/src/molecules/drop-down/drop-down.doc.md +74 -0
- package/src/molecules/drop-down/drop-down.stories.tsx +82 -0
- package/src/molecules/drop-down/drop-down.tsx +99 -0
- package/src/molecules/drop-down/index.ts +5 -0
- package/src/molecules/drop-zone/drop-zone-image.tsx +15 -0
- package/src/molecules/drop-zone/drop-zone-item.tsx +126 -0
- package/src/molecules/drop-zone/drop-zone.stories.tsx +94 -0
- package/src/molecules/drop-zone/drop-zone.tsx +374 -0
- package/src/molecules/drop-zone/index.ts +2 -0
- package/src/molecules/form-group/form-group.stories.tsx +62 -0
- package/src/molecules/form-group/form-group.tsx +170 -0
- package/src/molecules/form-group/form-message.tsx +20 -0
- package/src/molecules/form-group/index.ts +3 -0
- package/src/molecules/form-group/input-group.tsx +59 -0
- package/src/molecules/index.ts +15 -0
- package/src/molecules/info-box/index.ts +1 -0
- package/src/molecules/info-box/info-box.stories.tsx +23 -0
- package/src/molecules/info-box/info-box.tsx +78 -0
- package/src/molecules/message-box/index.ts +1 -0
- package/src/molecules/message-box/message-box.stories.tsx +35 -0
- package/src/molecules/message-box/message-box.tsx +185 -0
- package/src/molecules/modal/index.ts +4 -0
- package/src/molecules/modal/modal-inline.tsx +53 -0
- package/src/molecules/modal/modal-props.ts +43 -0
- package/src/molecules/modal/modal-styled.tsx +60 -0
- package/src/molecules/modal/modal-wrapper.tsx +37 -0
- package/src/molecules/modal/modal.doc.md +138 -0
- package/src/molecules/modal/modal.stories.tsx +67 -0
- package/src/molecules/modal/modal.tsx +24 -0
- package/src/molecules/navigation-element/index.ts +3 -0
- package/src/molecules/navigation-element/navigation-element-props.ts +43 -0
- package/src/molecules/navigation-element/navigation-element-styled.ts +57 -0
- package/src/molecules/navigation-element/navigation-element.doc.md +69 -0
- package/src/molecules/navigation-element/navigation-element.stories.tsx +42 -0
- package/src/molecules/navigation-element/navigation-element.tsx +65 -0
- package/src/molecules/pagination/index.ts +1 -0
- package/src/molecules/pagination/pagination.stories.tsx +25 -0
- package/src/molecules/pagination/pagination.tsx +182 -0
- package/src/molecules/rich-text-editor/components/heading-select.tsx +42 -0
- package/src/molecules/rich-text-editor/components/image-button.tsx +49 -0
- package/src/molecules/rich-text-editor/components/menu-bar.tsx +31 -0
- package/src/molecules/rich-text-editor/components/menu-button.tsx +44 -0
- package/src/molecules/rich-text-editor/icons/align-center.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/align-justify.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/align-left.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/align-right.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/bold.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/bullet-list.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/clear.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/code.tsx +16 -0
- package/src/molecules/rich-text-editor/icons/font-size.tsx +14 -0
- package/src/molecules/rich-text-editor/icons/image.tsx +22 -0
- package/src/molecules/rich-text-editor/icons/index.ts +20 -0
- package/src/molecules/rich-text-editor/icons/italic.tsx +14 -0
- package/src/molecules/rich-text-editor/icons/link.tsx +21 -0
- package/src/molecules/rich-text-editor/icons/ordered-list.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/pagebreak.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/paragraph.tsx +14 -0
- package/src/molecules/rich-text-editor/icons/quote.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/redo.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/strikethrough.tsx +17 -0
- package/src/molecules/rich-text-editor/icons/undo.tsx +17 -0
- package/src/molecules/rich-text-editor/index.ts +2 -0
- package/src/molecules/rich-text-editor/rich-text-editor-props.ts +1 -0
- package/src/molecules/rich-text-editor/rich-text-editor.stories.tsx +88 -0
- package/src/molecules/rich-text-editor/rich-text-editor.styled.tsx +52 -0
- package/src/molecules/rich-text-editor/rich-text-editor.tsx +81 -0
- package/src/molecules/rich-text-editor/useTiptapCommands.ts +50 -0
- package/src/molecules/select/index.ts +2 -0
- package/src/molecules/select/select-async.tsx +51 -0
- package/src/molecules/select/select-theme.ts +41 -0
- package/src/molecules/select/select.stories.tsx +77 -0
- package/src/molecules/select/select.tsx +51 -0
- package/src/molecules/stepper/index.ts +2 -0
- package/src/molecules/stepper/step.tsx +162 -0
- package/src/molecules/stepper/stepper.stories.tsx +76 -0
- package/src/molecules/stepper/stepper.tsx +118 -0
- package/src/molecules/tinymce-editor/index.ts +1 -0
- package/src/molecules/tinymce-editor/tinymce-editor.styled.tsx +22 -0
- package/src/molecules/tinymce-editor/tinymce-editor.tsx +110 -0
- package/src/molecules/value-group/index.ts +2 -0
- package/src/molecules/value-group/value-group-props.ts +16 -0
- package/src/molecules/value-group/value-group.doc.md +67 -0
- package/src/molecules/value-group/value-group.stories.tsx +48 -0
- package/src/molecules/value-group/value-group.tsx +32 -0
- package/src/organisms/button-group/button-group.doc.md +92 -0
- package/src/organisms/button-group/button-group.stories.tsx +112 -0
- package/src/organisms/button-group/button-group.styled.tsx +61 -0
- package/src/organisms/button-group/button-group.tsx +41 -0
- package/src/organisms/button-group/button-group.types.ts +61 -0
- package/src/organisms/button-group/button-in-group.tsx +38 -0
- package/src/organisms/button-group/drop-down-item-with-buttons.tsx +56 -0
- package/src/organisms/button-group/index.ts +6 -0
- package/src/organisms/button-group/single-button-in-group.tsx +42 -0
- package/src/organisms/current-user-nav/current-user-nav-props.ts +39 -0
- package/src/organisms/current-user-nav/current-user-nav-styled.ts +31 -0
- package/src/organisms/current-user-nav/current-user-nav.doc.md +72 -0
- package/src/organisms/current-user-nav/current-user-nav.stories.tsx +53 -0
- package/src/organisms/current-user-nav/current-user-nav.tsx +72 -0
- package/src/organisms/current-user-nav/index.ts +3 -0
- package/src/organisms/index.ts +4 -0
- package/src/organisms/made-with-love/index.ts +1 -0
- package/src/organisms/made-with-love/made-with-love.stories.tsx +12 -0
- package/src/organisms/made-with-love/made-with-love.tsx +50 -0
- package/src/organisms/navigation/index.ts +4 -0
- package/src/organisms/navigation/navigation-element-wrapper.tsx +27 -0
- package/src/organisms/navigation/navigation-props.ts +26 -0
- package/src/organisms/navigation/navigation-styled.tsx +17 -0
- package/src/organisms/navigation/navigation.doc.md +126 -0
- package/src/organisms/navigation/navigation.stories.tsx +124 -0
- package/src/organisms/navigation/navigation.tsx +34 -0
- package/src/templates/blog.stories.tsx +69 -0
- package/src/templates/blog.tsx +0 -0
- package/src/theme.doc.md +111 -0
- package/src/theme.ts +554 -0
- package/src/utils/assert.ts +8 -0
- package/src/utils/color-props.ts +7 -0
- package/src/utils/combine-styles.ts +35 -0
- package/src/utils/content-styles.ts +268 -0
- package/src/utils/css-class.ts +37 -0
- package/src/utils/date-utils.ts +60 -0
- package/src/utils/datepicker.styles.ts +790 -0
- package/src/utils/default-theme.interface.ts +30 -0
- package/src/utils/direction-props.ts +1 -0
- package/src/utils/focus-shadow.style.ts +8 -0
- package/src/utils/generate-id.ts +10 -0
- package/src/utils/human-file-size.ts +30 -0
- package/src/utils/index.ts +14 -0
- package/src/utils/non-nullish-partial-record.type.ts +13 -0
- package/src/utils/phone-input.styles.ts +1170 -0
- package/src/utils/portal-utils.tsx +45 -0
- package/src/utils/reset.styles.ts +98 -0
- package/src/utils/select-styles.ts +52 -0
- package/src/utils/story-wrapper.tsx +23 -0
- package/src/utils/styled.ts +7 -0
- package/src/utils/theme-get.ts +57 -0
- package/tsconfig.json +36 -0
- package/types/src/atoms/avatar/avatar.d.ts +10 -0
- package/types/src/atoms/avatar/avatar.stories.d.ts +6 -0
- package/types/src/atoms/avatar/index.d.ts +1 -0
- package/types/src/atoms/badge/badge.d.ts +51 -0
- package/types/src/atoms/badge/badge.stories.d.ts +6 -0
- package/types/src/atoms/badge/index.d.ts +1 -0
- package/types/src/atoms/box/box.d.ts +47 -0
- package/types/src/atoms/box/box.stories.d.ts +7 -0
- package/types/src/atoms/box/index.d.ts +1 -0
- package/types/src/atoms/button/button-css.d.ts +18 -0
- package/types/src/atoms/button/button-props.d.ts +38 -0
- package/types/src/atoms/button/button.d.ts +25 -0
- package/types/src/atoms/button/button.stories.d.ts +6 -0
- package/types/src/atoms/button/index.d.ts +3 -0
- package/types/src/atoms/check-box/check-box.d.ts +39 -0
- package/types/src/atoms/check-box/check-box.stories.d.ts +6 -0
- package/types/src/atoms/check-box/index.d.ts +1 -0
- package/types/src/atoms/currency-input/currency-input.d.ts +74 -0
- package/types/src/atoms/currency-input/currency-input.stories.d.ts +6 -0
- package/types/src/atoms/currency-input/index.d.ts +1 -0
- package/types/src/atoms/icon/icon.d.ts +93 -0
- package/types/src/atoms/icon/icon.stories.d.ts +6 -0
- package/types/src/atoms/icon/index.d.ts +1 -0
- package/types/src/atoms/illustration/illustration.d.ts +52 -0
- package/types/src/atoms/illustration/illustration.stories.d.ts +6 -0
- package/types/src/atoms/illustration/index.d.ts +1 -0
- package/types/src/atoms/illustrations/accept.d.ts +4 -0
- package/types/src/atoms/illustrations/adminjs-logo.d.ts +4 -0
- package/types/src/atoms/illustrations/astronaut.d.ts +4 -0
- package/types/src/atoms/illustrations/bag.d.ts +4 -0
- package/types/src/atoms/illustrations/beware.d.ts +4 -0
- package/types/src/atoms/illustrations/box.d.ts +4 -0
- package/types/src/atoms/illustrations/calendar.d.ts +4 -0
- package/types/src/atoms/illustrations/cancel.d.ts +4 -0
- package/types/src/atoms/illustrations/cards.d.ts +4 -0
- package/types/src/atoms/illustrations/clip.d.ts +4 -0
- package/types/src/atoms/illustrations/cloud.d.ts +4 -0
- package/types/src/atoms/illustrations/cup.d.ts +4 -0
- package/types/src/atoms/illustrations/details.d.ts +4 -0
- package/types/src/atoms/illustrations/docs.d.ts +4 -0
- package/types/src/atoms/illustrations/document-check.d.ts +4 -0
- package/types/src/atoms/illustrations/document-search.d.ts +4 -0
- package/types/src/atoms/illustrations/drawer.d.ts +4 -0
- package/types/src/atoms/illustrations/file-search.d.ts +4 -0
- package/types/src/atoms/illustrations/flag-in-cog.d.ts +4 -0
- package/types/src/atoms/illustrations/folder.d.ts +4 -0
- package/types/src/atoms/illustrations/folders.d.ts +4 -0
- package/types/src/atoms/illustrations/github-logo.d.ts +4 -0
- package/types/src/atoms/illustrations/identity-card.d.ts +4 -0
- package/types/src/atoms/illustrations/index.d.ts +35 -0
- package/types/src/atoms/illustrations/launch.d.ts +4 -0
- package/types/src/atoms/illustrations/moon.d.ts +4 -0
- package/types/src/atoms/illustrations/not-found.d.ts +4 -0
- package/types/src/atoms/illustrations/notebook.d.ts +4 -0
- package/types/src/atoms/illustrations/padlock.d.ts +4 -0
- package/types/src/atoms/illustrations/photos.d.ts +4 -0
- package/types/src/atoms/illustrations/planet.d.ts +4 -0
- package/types/src/atoms/illustrations/plug.d.ts +4 -0
- package/types/src/atoms/illustrations/props.type.d.ts +6 -0
- package/types/src/atoms/illustrations/rocket-new.d.ts +4 -0
- package/types/src/atoms/illustrations/rocket.d.ts +4 -0
- package/types/src/atoms/illustrations/slack-logo.d.ts +4 -0
- package/types/src/atoms/illustrations/tags.d.ts +4 -0
- package/types/src/atoms/index.d.ts +23 -0
- package/types/src/atoms/input/index.d.ts +1 -0
- package/types/src/atoms/input/input.d.ts +63 -0
- package/types/src/atoms/input/input.stories.d.ts +6 -0
- package/types/src/atoms/label/index.d.ts +1 -0
- package/types/src/atoms/label/label.d.ts +79 -0
- package/types/src/atoms/label/label.stories.d.ts +5 -0
- package/types/src/atoms/link/index.d.ts +1 -0
- package/types/src/atoms/link/link.d.ts +74 -0
- package/types/src/atoms/link/link.stories.d.ts +5 -0
- package/types/src/atoms/loader/index.d.ts +1 -0
- package/types/src/atoms/loader/loader.d.ts +27 -0
- package/types/src/atoms/loader/loader.stories.d.ts +5 -0
- package/types/src/atoms/overlay/index.d.ts +1 -0
- package/types/src/atoms/overlay/overlay.d.ts +3 -0
- package/types/src/atoms/overlay/overlay.stories.d.ts +5 -0
- package/types/src/atoms/phone-input/index.d.ts +1 -0
- package/types/src/atoms/phone-input/phone-input.d.ts +47 -0
- package/types/src/atoms/phone-input/phone-input.stories.d.ts +6 -0
- package/types/src/atoms/placeholder/index.d.ts +1 -0
- package/types/src/atoms/placeholder/placeholder.d.ts +52 -0
- package/types/src/atoms/placeholder/placeholder.stories.d.ts +6 -0
- package/types/src/atoms/radio/index.d.ts +1 -0
- package/types/src/atoms/radio/radio.d.ts +40 -0
- package/types/src/atoms/radio/radio.stories.d.ts +5 -0
- package/types/src/atoms/section/index.d.ts +1 -0
- package/types/src/atoms/section/section.d.ts +31 -0
- package/types/src/atoms/section/section.stories.d.ts +5 -0
- package/types/src/atoms/table/index.d.ts +6 -0
- package/types/src/atoms/table/table-body.d.ts +6 -0
- package/types/src/atoms/table/table-caption.d.ts +6 -0
- package/types/src/atoms/table/table-cell.d.ts +9 -0
- package/types/src/atoms/table/table-head.d.ts +6 -0
- package/types/src/atoms/table/table-row.d.ts +6 -0
- package/types/src/atoms/table/table.d.ts +90 -0
- package/types/src/atoms/table/table.stories.d.ts +7 -0
- package/types/src/atoms/tabs/index.d.ts +2 -0
- package/types/src/atoms/tabs/tab.d.ts +17 -0
- package/types/src/atoms/tabs/tabs.d.ts +49 -0
- package/types/src/atoms/tabs/tabs.stories.d.ts +5 -0
- package/types/src/atoms/text/index.d.ts +1 -0
- package/types/src/atoms/text/text.d.ts +62 -0
- package/types/src/atoms/text-area/index.d.ts +1 -0
- package/types/src/atoms/text-area/text-area.d.ts +46 -0
- package/types/src/atoms/text-area/text-area.stories.d.ts +5 -0
- package/types/src/atoms/tooltip/index.d.ts +5 -0
- package/types/src/atoms/tooltip/tooltip-content.d.ts +16 -0
- package/types/src/atoms/tooltip/tooltip-control.d.ts +9 -0
- package/types/src/atoms/tooltip/tooltip-props.d.ts +25 -0
- package/types/src/atoms/tooltip/tooltip-styled.d.ts +3 -0
- package/types/src/atoms/tooltip/tooltip.d.ts +12 -0
- package/types/src/atoms/tooltip/tooltip.stories.d.ts +5 -0
- package/types/src/atoms/typography/caption-shared.d.ts +3 -0
- package/types/src/atoms/typography/caption.d.ts +3 -0
- package/types/src/atoms/typography/card-title.d.ts +3 -0
- package/types/src/atoms/typography/header.d.ts +29 -0
- package/types/src/atoms/typography/index.d.ts +5 -0
- package/types/src/atoms/typography/small-text.d.ts +3 -0
- package/types/src/atoms/typography/title.d.ts +3 -0
- package/types/src/atoms/typography/typography.stories.d.ts +9 -0
- package/types/src/constants.d.ts +1 -0
- package/types/src/global.d.ts +1 -0
- package/types/src/hooks/use-window-size.d.ts +6 -0
- package/types/src/index.d.ts +16 -0
- package/types/src/molecules/date-picker/date-picker.d.ts +78 -0
- package/types/src/molecules/date-picker/date-picker.stories.d.ts +5 -0
- package/types/src/molecules/date-picker/index.d.ts +2 -0
- package/types/src/molecules/date-picker/useDatePicker.d.ts +14 -0
- package/types/src/molecules/drawer/drawer-content.d.ts +7 -0
- package/types/src/molecules/drawer/drawer-footer.d.ts +7 -0
- package/types/src/molecules/drawer/drawer.d.ts +88 -0
- package/types/src/molecules/drawer/drawer.stories.d.ts +5 -0
- package/types/src/molecules/drawer/index.d.ts +3 -0
- package/types/src/molecules/drop-down/drop-down-item-action.d.ts +12 -0
- package/types/src/molecules/drop-down/drop-down-item.d.ts +32 -0
- package/types/src/molecules/drop-down/drop-down-menu.d.ts +31 -0
- package/types/src/molecules/drop-down/drop-down-trigger.d.ts +6 -0
- package/types/src/molecules/drop-down/drop-down.d.ts +30 -0
- package/types/src/molecules/drop-down/drop-down.stories.d.ts +10 -0
- package/types/src/molecules/drop-down/index.d.ts +5 -0
- package/types/src/molecules/drop-zone/drop-zone-image.d.ts +3 -0
- package/types/src/molecules/drop-zone/drop-zone-item.d.ts +55 -0
- package/types/src/molecules/drop-zone/drop-zone.d.ts +148 -0
- package/types/src/molecules/drop-zone/drop-zone.stories.d.ts +8 -0
- package/types/src/molecules/drop-zone/index.d.ts +2 -0
- package/types/src/molecules/form-group/form-group.d.ts +119 -0
- package/types/src/molecules/form-group/form-group.stories.d.ts +6 -0
- package/types/src/molecules/form-group/form-message.d.ts +11 -0
- package/types/src/molecules/form-group/index.d.ts +3 -0
- package/types/src/molecules/form-group/input-group.d.ts +6 -0
- package/types/src/molecules/index.d.ts +15 -0
- package/types/src/molecules/info-box/index.d.ts +1 -0
- package/types/src/molecules/info-box/info-box.d.ts +53 -0
- package/types/src/molecules/info-box/info-box.stories.d.ts +5 -0
- package/types/src/molecules/message-box/index.d.ts +1 -0
- package/types/src/molecules/message-box/message-box.d.ts +94 -0
- package/types/src/molecules/message-box/message-box.stories.d.ts +7 -0
- package/types/src/molecules/modal/index.d.ts +4 -0
- package/types/src/molecules/modal/modal-inline.d.ts +14 -0
- package/types/src/molecules/modal/modal-props.d.ts +38 -0
- package/types/src/molecules/modal/modal-styled.d.ts +12 -0
- package/types/src/molecules/modal/modal-wrapper.d.ts +4 -0
- package/types/src/molecules/modal/modal.d.ts +12 -0
- package/types/src/molecules/modal/modal.stories.d.ts +5 -0
- package/types/src/molecules/navigation-element/index.d.ts +3 -0
- package/types/src/molecules/navigation-element/navigation-element-props.d.ts +38 -0
- package/types/src/molecules/navigation-element/navigation-element-styled.d.ts +3 -0
- package/types/src/molecules/navigation-element/navigation-element.d.ts +14 -0
- package/types/src/molecules/navigation-element/navigation-element.stories.d.ts +5 -0
- package/types/src/molecules/pagination/index.d.ts +1 -0
- package/types/src/molecules/pagination/pagination.d.ts +64 -0
- package/types/src/molecules/pagination/pagination.stories.d.ts +5 -0
- package/types/src/molecules/rich-text-editor/components/heading-select.d.ts +7 -0
- package/types/src/molecules/rich-text-editor/components/image-button.d.ts +7 -0
- package/types/src/molecules/rich-text-editor/components/menu-bar.d.ts +7 -0
- package/types/src/molecules/rich-text-editor/components/menu-button.d.ts +12 -0
- package/types/src/molecules/rich-text-editor/icons/align-center.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/align-justify.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/align-left.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/align-right.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/bold.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/bullet-list.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/clear.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/code.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/font-size.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/image.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/index.d.ts +19 -0
- package/types/src/molecules/rich-text-editor/icons/italic.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/link.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/ordered-list.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/pagebreak.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/paragraph.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/quote.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/redo.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/strikethrough.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/icons/undo.d.ts +3 -0
- package/types/src/molecules/rich-text-editor/index.d.ts +2 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor-props.d.ts +1 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor.d.ts +15 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor.stories.d.ts +5 -0
- package/types/src/molecules/rich-text-editor/rich-text-editor.styled.d.ts +22 -0
- package/types/src/molecules/rich-text-editor/useTiptapCommands.d.ts +12 -0
- package/types/src/molecules/select/index.d.ts +2 -0
- package/types/src/molecules/select/select-async.d.ts +9 -0
- package/types/src/molecules/select/select-theme.d.ts +7 -0
- package/types/src/molecules/select/select.d.ts +9 -0
- package/types/src/molecules/select/select.stories.d.ts +7 -0
- package/types/src/molecules/stepper/index.d.ts +2 -0
- package/types/src/molecules/stepper/step.d.ts +86 -0
- package/types/src/molecules/stepper/stepper.d.ts +112 -0
- package/types/src/molecules/stepper/stepper.stories.d.ts +6 -0
- package/types/src/molecules/tinymce-editor/index.d.ts +1 -0
- package/types/src/molecules/tinymce-editor/tinymce-editor.d.ts +14 -0
- package/types/src/molecules/tinymce-editor/tinymce-editor.styled.d.ts +21 -0
- package/types/src/molecules/value-group/index.d.ts +2 -0
- package/types/src/molecules/value-group/value-group-props.d.ts +15 -0
- package/types/src/molecules/value-group/value-group.d.ts +14 -0
- package/types/src/molecules/value-group/value-group.stories.d.ts +7 -0
- package/types/src/organisms/button-group/button-group.d.ts +13 -0
- package/types/src/organisms/button-group/button-group.stories.d.ts +7 -0
- package/types/src/organisms/button-group/button-group.styled.d.ts +33 -0
- package/types/src/organisms/button-group/button-group.types.d.ts +59 -0
- package/types/src/organisms/button-group/button-in-group.d.ts +4 -0
- package/types/src/organisms/button-group/drop-down-item-with-buttons.d.ts +4 -0
- package/types/src/organisms/button-group/index.d.ts +6 -0
- package/types/src/organisms/button-group/single-button-in-group.d.ts +4 -0
- package/types/src/organisms/current-user-nav/current-user-nav-props.d.ts +37 -0
- package/types/src/organisms/current-user-nav/current-user-nav-styled.d.ts +12 -0
- package/types/src/organisms/current-user-nav/current-user-nav.d.ts +14 -0
- package/types/src/organisms/current-user-nav/current-user-nav.stories.d.ts +7 -0
- package/types/src/organisms/current-user-nav/index.d.ts +3 -0
- package/types/src/organisms/index.d.ts +4 -0
- package/types/src/organisms/made-with-love/index.d.ts +1 -0
- package/types/src/organisms/made-with-love/made-with-love.d.ts +3 -0
- package/types/src/organisms/made-with-love/made-with-love.stories.d.ts +5 -0
- package/types/src/organisms/navigation/index.d.ts +4 -0
- package/types/src/organisms/navigation/navigation-element-wrapper.d.ts +4 -0
- package/types/src/organisms/navigation/navigation-props.d.ts +21 -0
- package/types/src/organisms/navigation/navigation-styled.d.ts +12 -0
- package/types/src/organisms/navigation/navigation.d.ts +14 -0
- package/types/src/organisms/navigation/navigation.stories.d.ts +8 -0
- package/types/src/templates/blog.d.ts +1 -0
- package/types/src/templates/blog.stories.d.ts +4 -0
- package/types/src/theme.d.ts +503 -0
- package/types/src/utils/assert.d.ts +2 -0
- package/types/src/utils/color-props.d.ts +5 -0
- package/types/src/utils/combine-styles.d.ts +23 -0
- package/types/src/utils/content-styles.d.ts +21 -0
- package/types/src/utils/css-class.d.ts +21 -0
- package/types/src/utils/date-utils.d.ts +34 -0
- package/types/src/utils/datepicker.styles.d.ts +3 -0
- package/types/src/utils/default-theme.interface.d.ts +17 -0
- package/types/src/utils/direction-props.d.ts +1 -0
- package/types/src/utils/focus-shadow.style.d.ts +3 -0
- package/types/src/utils/generate-id.d.ts +2 -0
- package/types/src/utils/human-file-size.d.ts +12 -0
- package/types/src/utils/index.d.ts +13 -0
- package/types/src/utils/non-nullish-partial-record.type.d.ts +16 -0
- package/types/src/utils/phone-input.styles.d.ts +3 -0
- package/types/src/utils/portal-utils.d.ts +7 -0
- package/types/src/utils/reset.styles.d.ts +37 -0
- package/types/src/utils/select-styles.d.ts +5 -0
- package/types/src/utils/story-wrapper.d.ts +9 -0
- package/types/src/utils/styled.d.ts +4 -0
- package/types/src/utils/theme-get.d.ts +32 -0
- package/vendor-types/csstype/index.d.ts +0 -0
- package/vendor-types/jw-paginate/index.d.ts +10 -0
- package/vendor-types/styled-components/index.d.ts +7 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Drawer = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 152
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 152",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
12
|
+
cx: "76",
|
|
13
|
+
cy: "76",
|
|
14
|
+
r: "76",
|
|
15
|
+
fill: "white"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
17
|
+
cx: "109.823",
|
|
18
|
+
cy: "58.5366",
|
|
19
|
+
r: "16.1772",
|
|
20
|
+
fill: "#3040D6"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
22
|
+
cx: "109.823",
|
|
23
|
+
cy: "58.5366",
|
|
24
|
+
r: "16.1772",
|
|
25
|
+
fill: "#3040D6"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
clipRule: "evenodd",
|
|
29
|
+
d: "M59.9906 97.8126H34.2278C33.9785 97.8126 33.7764 97.6105 33.7764 97.3612C33.7764 97.3314 33.7793 97.3018 33.7851 97.2726L42.1256 55.5703C42.4632 53.8822 43.9455 52.667 45.6671 52.667H107.012C108.734 52.667 110.216 53.8822 110.554 55.5703L118.894 97.2726C118.943 97.5171 118.785 97.755 118.54 97.8039C118.511 97.8097 118.481 97.8126 118.452 97.8126H91.885V111.795H68.3362L59.9906 97.8126Z",
|
|
30
|
+
fill: "white",
|
|
31
|
+
stroke: "#3B3552",
|
|
32
|
+
strokeWidth: "1.5"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
clipRule: "evenodd",
|
|
36
|
+
d: "M62.4183 100.138H40.4811C40.2688 100.138 40.0967 99.966 40.0967 99.7537C40.0967 99.7284 40.0992 99.7031 40.1041 99.6783L47.2061 64.1685C47.4936 62.731 48.7558 61.6963 50.2217 61.6963H102.458C103.924 61.6963 105.186 62.731 105.473 64.1685L112.575 99.6783C112.617 99.8865 112.482 100.089 112.274 100.131C112.249 100.136 112.224 100.138 112.198 100.138H89.5766V110.677H67.3106L62.4183 100.138Z",
|
|
37
|
+
fill: "#3040D6",
|
|
38
|
+
fillOpacity: "0.05"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M52.6808 77.6251L53.4206 77.7489L52.6808 77.6251ZM52.0649 76.7616L52.1887 76.0219H52.1887L52.0649 76.7616ZM51.4547 84.9529L50.715 84.8291L51.4547 84.9529ZM50.5912 85.5688L50.4674 86.3085H50.4674L50.5912 85.5688ZM49.9752 84.7053L50.715 84.8291L49.9752 84.7053ZM51.2014 77.3776L51.9411 77.5013L51.2014 77.3776ZM53.9628 69.9639L53.2282 69.8126L53.2254 69.8263L53.2231 69.8401L53.9628 69.9639ZM52.4898 69.6804L51.7543 69.5333L51.7543 69.5333L52.4898 69.6804ZM52.4875 69.692L51.752 69.5449L51.7497 69.5565L51.7477 69.5682L52.4875 69.692ZM52.4855 69.7037L51.7458 69.5799L51.7458 69.5799L52.4855 69.7037ZM52.0093 72.5495L52.749 72.6733L52.0093 72.5495ZM51.6692 74.5822L52.4089 74.706L51.6692 74.5822ZM53.1486 74.8298L52.4089 74.706L53.1486 74.8298ZM53.4887 72.797L54.2284 72.9208L53.4887 72.797ZM53.4206 77.7489C53.5573 76.9318 53.0057 76.1586 52.1887 76.0219L51.9411 77.5013L53.4206 77.7489ZM52.1944 85.0766L53.4206 77.7489L51.9411 77.5013L50.715 84.8291L52.1944 85.0766ZM50.4674 86.3085C51.2845 86.4452 52.0577 85.8937 52.1944 85.0766L50.715 84.8291H50.715L50.4674 86.3085ZM49.2355 84.5815C49.0988 85.3986 49.6503 86.1718 50.4674 86.3085L50.715 84.8291H50.715L49.2355 84.5815ZM50.4617 77.2538L49.2355 84.5815L50.715 84.8291L51.9411 77.5013L50.4617 77.2538ZM52.1887 76.0219C51.3716 75.8852 50.5984 76.4367 50.4617 77.2538L51.9411 77.5013H51.9411L52.1887 76.0219ZM54.6974 70.1151C54.8075 69.5805 55.2783 69.1963 55.8248 69.1963V67.6963C54.5661 67.6963 53.4818 68.5811 53.2282 69.8126L54.6974 70.1151ZM55.8248 69.1963H55.8427V67.6963H55.8248V69.1963ZM55.8427 69.1963H55.8607V67.6963H55.8427V69.1963ZM55.8607 69.1963H55.8786V67.6963H55.8607V69.1963ZM55.8786 69.1963H55.8964V67.6963H55.8786V69.1963ZM55.8964 69.1963H55.9143V67.6963H55.8964V69.1963ZM55.9143 69.1963H55.9322V67.6963H55.9143V69.1963ZM55.9322 69.1963H55.95V67.6963H55.9322V69.1963ZM55.95 69.1963H55.9678V67.6963H55.95V69.1963ZM55.9678 69.1963H55.9856V67.6963H55.9678V69.1963ZM55.9856 69.1963H56.0034V67.6963H55.9856V69.1963ZM56.0034 69.1963H56.0211V67.6963H56.0034V69.1963ZM56.0211 69.1963H56.0389V67.6963H56.0211V69.1963ZM56.0389 69.1963H56.0566V67.6963H56.0389V69.1963ZM56.0566 69.1963H56.0743V67.6963H56.0566V69.1963ZM56.0743 69.1963H56.092V67.6963H56.0743V69.1963ZM56.092 69.1963H56.1097V67.6963H56.092V69.1963ZM56.1097 69.1963H56.1273V67.6963H56.1097V69.1963ZM56.1273 69.1963H56.145V67.6963H56.1273V69.1963ZM56.145 69.1963H56.1626V67.6963H56.145V69.1963ZM56.1626 69.1963H56.1802V67.6963H56.1626V69.1963ZM56.1802 69.1963H56.1978V67.6963H56.1802V69.1963ZM56.1978 69.1963H56.2153V67.6963H56.1978V69.1963ZM56.2153 69.1963H56.2329V67.6963H56.2153V69.1963ZM56.2329 69.1963H56.2504V67.6963H56.2329V69.1963ZM56.2504 69.1963H56.2679V67.6963H56.2504V69.1963ZM56.2679 69.1963H56.2854V67.6963H56.2679V69.1963ZM56.2854 69.1963H56.3029V67.6963H56.2854V69.1963ZM56.3029 69.1963H56.3204V67.6963H56.3029V69.1963ZM56.3204 69.1963H56.3378V67.6963H56.3204V69.1963ZM56.3378 69.1963H56.3552V67.6963H56.3378V69.1963ZM56.3552 69.1963H56.3726V67.6963H56.3552V69.1963ZM56.3726 69.1963H56.39V67.6963H56.3726V69.1963ZM56.39 69.1963H56.4074V67.6963H56.39V69.1963ZM56.4074 69.1963H56.4248V67.6963H56.4074V69.1963ZM56.4248 69.1963H56.4421V67.6963H56.4248V69.1963ZM56.4421 69.1963H56.4594V67.6963H56.4421V69.1963ZM56.4594 69.1963H56.4767V67.6963H56.4594V69.1963ZM56.4767 69.1963H56.494V67.6963H56.4767V69.1963ZM56.494 69.1963H56.5113V67.6963H56.494V69.1963ZM56.5113 69.1963H56.5285V67.6963H56.5113V69.1963ZM56.5285 69.1963H56.5458V67.6963H56.5285V69.1963ZM56.5458 69.1963H56.563V67.6963H56.5458V69.1963ZM56.563 69.1963H56.5802V67.6963H56.563V69.1963ZM56.5802 69.1963H56.5974V67.6963H56.5802V69.1963ZM56.5974 69.1963H56.6145V67.6963H56.5974V69.1963ZM56.6145 69.1963H56.6317V67.6963H56.6145V69.1963ZM56.6317 69.1963H56.6488V67.6963H56.6317V69.1963ZM56.6488 69.1963H56.6659V67.6963H56.6488V69.1963ZM56.6659 69.1963H56.683V67.6963H56.6659V69.1963ZM56.683 69.1963H56.7001V67.6963H56.683V69.1963ZM56.7001 69.1963H56.7171V67.6963H56.7001V69.1963ZM56.7171 69.1963H56.7342V67.6963H56.7171V69.1963ZM56.7342 69.1963H56.7512V67.6963H56.7342V69.1963ZM56.7512 69.1963H56.7682V67.6963H56.7512V69.1963ZM56.7682 69.1963H56.7852V67.6963H56.7682V69.1963ZM56.7852 69.1963H56.8022V67.6963H56.7852V69.1963ZM56.8022 69.1963H56.8191V67.6963H56.8022V69.1963ZM56.8191 69.1963H56.836V67.6963H56.8191V69.1963ZM56.836 69.1963H56.853V67.6963H56.836V69.1963ZM56.853 69.1963H56.8699V67.6963H56.853V69.1963ZM56.8699 69.1963H56.8867V67.6963H56.8699V69.1963ZM56.8867 69.1963H56.9036V67.6963H56.8867V69.1963ZM56.9036 69.1963H56.9205V67.6963H56.9036V69.1963ZM56.9205 69.1963H56.9373V67.6963H56.9205V69.1963ZM56.9373 69.1963H56.9541V67.6963H56.9373V69.1963ZM56.9541 69.1963H56.9709V67.6963H56.9541V69.1963ZM56.9709 69.1963H56.9877V67.6963H56.9709V69.1963ZM56.9877 69.1963H57.0044V67.6963H56.9877V69.1963ZM57.0044 69.1963H57.0212V67.6963H57.0044V69.1963ZM57.0212 69.1963H57.0379V67.6963H57.0212V69.1963ZM57.0379 69.1963H57.0546V67.6963H57.0379V69.1963ZM57.0546 69.1963H57.0713V67.6963H57.0546V69.1963ZM57.0713 69.1963H57.088V67.6963H57.0713V69.1963ZM57.088 69.1963H57.1046V67.6963H57.088V69.1963ZM57.1046 69.1963H57.1213V67.6963H57.1046V69.1963ZM57.1213 69.1963H57.1379V67.6963H57.1213V69.1963ZM57.1379 69.1963H57.1545V67.6963H57.1379V69.1963ZM57.1545 69.1963H57.1711V67.6963H57.1545V69.1963ZM57.1711 69.1963H57.1876V67.6963H57.1711V69.1963ZM57.1876 69.1963H57.2042V67.6963H57.1876V69.1963ZM57.2042 69.1963H57.2207V67.6963H57.2042V69.1963ZM57.2207 69.1963H57.2372V67.6963H57.2207V69.1963ZM57.2372 69.1963H57.2537V67.6963H57.2372V69.1963ZM57.2537 69.1963H57.2702V67.6963H57.2537V69.1963ZM57.2702 69.1963H57.2867V67.6963H57.2702V69.1963ZM57.2867 69.1963H57.3031V67.6963H57.2867V69.1963ZM57.3031 69.1963H57.3196V67.6963H57.3031V69.1963ZM57.3196 69.1963H57.336V67.6963H57.3196V69.1963ZM57.336 69.1963H57.3524V67.6963H57.336V69.1963ZM57.3524 69.1963H57.3687V67.6963H57.3524V69.1963ZM57.3687 69.1963H57.3851V67.6963H57.3687V69.1963ZM57.3851 69.1963H57.4014V67.6963H57.3851V69.1963ZM57.4014 69.1963H57.4178V67.6963H57.4014V69.1963ZM57.4178 69.1963H57.4341V67.6963H57.4178V69.1963ZM57.4341 69.1963H57.4503V67.6963H57.4341V69.1963ZM57.4503 69.1963H57.4666V67.6963H57.4503V69.1963ZM57.4666 69.1963H57.4829V67.6963H57.4666V69.1963ZM57.4829 69.1963H57.4991V67.6963H57.4829V69.1963ZM57.4991 69.1963H57.5153V67.6963H57.4991V69.1963ZM57.5153 69.1963H57.5315V67.6963H57.5153V69.1963ZM57.5315 69.1963H57.5477V67.6963H57.5315V69.1963ZM57.5477 69.1963H57.5639V67.6963H57.5477V69.1963ZM57.5639 69.1963H57.58V67.6963H57.5639V69.1963ZM57.58 69.1963H57.5961V67.6963H57.58V69.1963ZM57.5961 69.1963H57.6123V67.6963H57.5961V69.1963ZM57.6123 69.1963H57.6284V67.6963H57.6123V69.1963ZM57.6284 69.1963H57.6444V67.6963H57.6284V69.1963ZM57.6444 69.1963H57.6605V67.6963H57.6444V69.1963ZM57.6605 69.1963H57.6765V67.6963H57.6605V69.1963ZM57.6765 69.1963H57.6926V67.6963H57.6765V69.1963ZM57.6926 69.1963H57.7086V67.6963H57.6926V69.1963ZM57.7086 69.1963H57.7246V67.6963H57.7086V69.1963ZM57.7246 69.1963H57.7405V67.6963H57.7246V69.1963ZM57.7405 69.1963H57.7565V67.6963H57.7405V69.1963ZM57.7565 69.1963H57.7724V67.6963H57.7565V69.1963ZM57.7724 69.1963H57.7883V67.6963H57.7724V69.1963ZM57.7883 69.1963H57.8042V67.6963H57.7883V69.1963ZM57.8042 69.1963H57.8201V67.6963H57.8042V69.1963ZM57.8201 69.1963H57.836V67.6963H57.8201V69.1963ZM57.836 69.1963H57.8518V67.6963H57.836V69.1963ZM57.8518 69.1963H57.8677V67.6963H57.8518V69.1963ZM57.8677 69.1963H57.8835V67.6963H57.8677V69.1963ZM57.8835 69.1963H57.8993V67.6963H57.8835V69.1963ZM57.8993 69.1963H57.9151V67.6963H57.8993V69.1963ZM57.9151 69.1963H57.9308V67.6963H57.9151V69.1963ZM57.9308 69.1963H57.9466V67.6963H57.9308V69.1963ZM57.9466 69.1963H57.9623V67.6963H57.9466V69.1963ZM57.9623 69.1963H57.978V67.6963H57.9623V69.1963ZM57.978 69.1963H57.9937V67.6963H57.978V69.1963ZM57.9937 69.1963H58.0094V67.6963H57.9937V69.1963ZM58.0094 69.1963H58.025V67.6963H58.0094V69.1963ZM58.025 69.1963H58.0407V67.6963H58.025V69.1963ZM58.0407 69.1963H58.0563V67.6963H58.0407V69.1963ZM58.0563 69.1963H58.0719V67.6963H58.0563V69.1963ZM58.0719 69.1963H58.0875V67.6963H58.0719V69.1963ZM58.0875 69.1963H58.103V67.6963H58.0875V69.1963ZM58.103 69.1963H58.1186V67.6963H58.103V69.1963ZM58.1186 69.1963H58.1341V67.6963H58.1186V69.1963ZM58.1341 69.1963H58.1496V67.6963H58.1341V69.1963ZM58.1496 69.1963H58.1651V67.6963H58.1496V69.1963ZM58.1651 69.1963H58.1806V67.6963H58.1651V69.1963ZM58.1806 69.1963H58.1961V67.6963H58.1806V69.1963ZM58.1961 69.1963H58.2115V67.6963H58.1961V69.1963ZM58.2115 69.1963H58.227V67.6963H58.2115V69.1963ZM58.227 69.1963H58.2424V67.6963H58.227V69.1963ZM58.2424 69.1963H58.2578V67.6963H58.2424V69.1963ZM58.2578 69.1963H58.2731V67.6963H58.2578V69.1963ZM58.2731 69.1963H58.2885V67.6963H58.2731V69.1963ZM58.2885 69.1963H58.3038V67.6963H58.2885V69.1963ZM58.3038 69.1963H58.3192V67.6963H58.3038V69.1963ZM58.3192 69.1963H58.3345V67.6963H58.3192V69.1963ZM58.3345 69.1963H58.3498V67.6963H58.3345V69.1963ZM58.3498 69.1963H58.365V67.6963H58.3498V69.1963ZM58.365 69.1963H58.3803V67.6963H58.365V69.1963ZM58.3803 69.1963H58.3955V67.6963H58.3803V69.1963ZM58.3955 69.1963H58.4107V67.6963H58.3955V69.1963ZM58.4107 69.1963H58.4259V67.6963H58.4107V69.1963ZM58.4259 69.1963H58.4411V67.6963H58.4259V69.1963ZM58.4411 69.1963H58.4563V67.6963H58.4411V69.1963ZM58.4563 69.1963H58.4714V67.6963H58.4563V69.1963ZM58.4714 69.1963H58.4866V67.6963H58.4714V69.1963ZM58.4866 69.1963H58.5017V67.6963H58.4866V69.1963ZM58.5017 69.1963H58.5168V67.6963H58.5017V69.1963ZM58.5168 69.1963H58.5319V67.6963H58.5168V69.1963ZM58.5319 69.1963H58.5469V67.6963H58.5319V69.1963ZM58.5469 69.1963H58.562V67.6963H58.5469V69.1963ZM58.562 69.1963H58.577V67.6963H58.562V69.1963ZM58.577 69.1963H58.592V67.6963H58.577V69.1963ZM58.592 69.1963H58.607V67.6963H58.592V69.1963ZM58.607 69.1963H58.622V67.6963H58.607V69.1963ZM58.622 69.1963H58.6369V67.6963H58.622V69.1963ZM58.6369 69.1963H58.6519V67.6963H58.6369V69.1963ZM58.6519 69.1963H58.6668V67.6963H58.6519V69.1963ZM58.6668 69.1963H58.6817V67.6963H58.6668V69.1963ZM58.6817 69.1963H58.6966V67.6963H58.6817V69.1963ZM58.6966 69.1963H58.7114V67.6963H58.6966V69.1963ZM58.7114 69.1963H58.7263V67.6963H58.7114V69.1963ZM58.7263 69.1963H58.7411V67.6963H58.7263V69.1963ZM58.7411 69.1963H58.7559V67.6963H58.7411V69.1963ZM58.7559 69.1963H58.7707V67.6963H58.7559V69.1963ZM58.7707 69.1963H58.7855V67.6963H58.7707V69.1963ZM58.7855 69.1963H58.8003V67.6963H58.7855V69.1963ZM58.8003 69.1963H58.815V67.6963H58.8003V69.1963ZM58.815 69.1963H58.8297V67.6963H58.815V69.1963ZM58.8297 69.1963H58.8445V67.6963H58.8297V69.1963ZM58.8445 69.1963H58.8591V67.6963H58.8445V69.1963ZM58.8591 69.1963H58.8738V67.6963H58.8591V69.1963ZM58.8738 69.1963H58.8885V67.6963H58.8738V69.1963ZM58.8885 69.1963H58.9031V67.6963H58.8885V69.1963ZM58.9031 69.1963H58.9177V67.6963H58.9031V69.1963ZM58.9177 69.1963H58.9324V67.6963H58.9177V69.1963ZM58.9324 69.1963H58.9469V67.6963H58.9324V69.1963ZM58.9469 69.1963H58.9615V67.6963H58.9469V69.1963ZM58.9615 69.1963H58.9761V67.6963H58.9615V69.1963ZM58.9761 69.1963H58.9906V67.6963H58.9761V69.1963ZM58.9906 69.1963H59.0051V67.6963H58.9906V69.1963ZM59.0051 69.1963H59.0196V67.6963H59.0051V69.1963ZM59.0196 69.1963H59.0341V67.6963H59.0196V69.1963ZM59.0341 69.1963H59.0486V67.6963H59.0341V69.1963ZM59.0486 69.1963H59.063V67.6963H59.0486V69.1963ZM59.063 69.1963H59.0774V67.6963H59.063V69.1963ZM59.0774 69.1963H59.0919V67.6963H59.0774V69.1963ZM59.0919 69.1963H59.1062V67.6963H59.0919V69.1963ZM59.1062 69.1963H59.1206V67.6963H59.1062V69.1963ZM59.1206 69.1963H59.135V67.6963H59.1206V69.1963ZM59.135 69.1963H59.1493V67.6963H59.135V69.1963ZM59.1493 69.1963H59.1637V67.6963H59.1493V69.1963ZM59.1637 69.1963H59.178V67.6963H59.1637V69.1963ZM59.178 69.1963H59.1922V67.6963H59.178V69.1963ZM59.1922 69.1963H59.2065V67.6963H59.1922V69.1963ZM59.2065 69.1963H59.2208V67.6963H59.2065V69.1963ZM59.2208 69.1963H59.235V67.6963H59.2208V69.1963ZM59.235 69.1963H59.2492V67.6963H59.235V69.1963ZM59.2492 69.1963H59.2634V67.6963H59.2492V69.1963ZM59.2634 69.1963H59.2776V67.6963H59.2634V69.1963ZM59.2776 69.1963H59.2918V67.6963H59.2776V69.1963ZM59.2918 69.1963H59.3059V67.6963H59.2918V69.1963ZM59.3059 69.1963H59.3201V67.6963H59.3059V69.1963ZM59.3201 69.1963H59.3342V67.6963H59.3201V69.1963ZM59.3342 69.1963H59.3483V67.6963H59.3342V69.1963ZM59.3483 69.1963H59.3624V67.6963H59.3483V69.1963ZM59.3624 69.1963H59.3764V67.6963H59.3624V69.1963ZM59.3764 69.1963H59.3905V67.6963H59.3764V69.1963ZM59.3905 69.1963H59.4045V67.6963H59.3905V69.1963ZM59.4045 69.1963H59.4185V67.6963H59.4045V69.1963ZM59.4185 69.1963H59.4325V67.6963H59.4185V69.1963ZM59.4325 69.1963H59.4465V67.6963H59.4325V69.1963ZM59.4465 69.1963H59.4604V67.6963H59.4465V69.1963ZM59.4604 69.1963H59.4744V67.6963H59.4604V69.1963ZM59.4744 69.1963H59.4883V67.6963H59.4744V69.1963ZM59.4883 69.1963H59.5022V67.6963H59.4883V69.1963ZM59.5022 69.1963H59.5161V67.6963H59.5022V69.1963ZM59.5161 69.1963H59.5299V67.6963H59.5161V69.1963ZM59.5299 69.1963H59.5438V67.6963H59.5299V69.1963ZM59.5438 69.1963H59.5576V67.6963H59.5438V69.1963ZM59.5576 69.1963H59.5714V67.6963H59.5576V69.1963ZM59.5714 69.1963H59.5852V67.6963H59.5714V69.1963ZM59.5852 69.1963H59.599V67.6963H59.5852V69.1963ZM59.599 69.1963H59.6128V67.6963H59.599V69.1963ZM59.6128 69.1963H59.6265V67.6963H59.6128V69.1963ZM59.6265 69.1963H59.6403V67.6963H59.6265V69.1963ZM59.6403 69.1963H59.654V67.6963H59.6403V69.1963ZM59.654 69.1963H59.6677V67.6963H59.654V69.1963ZM59.6677 69.1963H59.6814V67.6963H59.6677V69.1963ZM59.6814 69.1963H59.695V67.6963H59.6814V69.1963ZM59.695 69.1963H59.7087V67.6963H59.695V69.1963ZM59.7087 69.1963H59.7223V67.6963H59.7087V69.1963ZM59.7223 69.1963H59.7359V67.6963H59.7223V69.1963ZM59.7359 69.1963H59.7495V67.6963H59.7359V69.1963ZM59.7495 69.1963H59.763V67.6963H59.7495V69.1963ZM59.763 69.1963H59.7766V67.6963H59.763V69.1963ZM59.7766 69.1963H59.7901V67.6963H59.7766V69.1963ZM59.7901 69.1963H59.8037V67.6963H59.7901V69.1963ZM59.8037 69.1963H59.8172V67.6963H59.8037V69.1963ZM59.8172 69.1963H59.8306V67.6963H59.8172V69.1963ZM59.8306 69.1963H59.8441V67.6963H59.8306V69.1963ZM59.8441 69.1963H59.8576V67.6963H59.8441V69.1963ZM59.8576 69.1963H59.871V67.6963H59.8576V69.1963ZM59.871 69.1963H59.8844V67.6963H59.871V69.1963ZM59.8844 69.1963H59.8978V67.6963H59.8844V69.1963ZM59.8978 69.1963H59.9112V67.6963H59.8978V69.1963ZM59.9112 69.1963H59.9245V67.6963H59.9112V69.1963ZM59.9245 69.1963H59.9379V67.6963H59.9245V69.1963ZM59.9379 69.1963H59.9512V67.6963H59.9379V69.1963ZM59.9512 69.1963H59.9645V67.6963H59.9512V69.1963ZM59.9645 69.1963H59.9778V67.6963H59.9645V69.1963ZM59.9778 69.1963H59.9911V67.6963H59.9778V69.1963ZM59.9911 69.1963H60.0043V67.6963H59.9911V69.1963ZM60.0043 69.1963H60.0176V67.6963H60.0043V69.1963ZM60.0176 69.1963H60.0308V67.6963H60.0176V69.1963ZM60.0308 69.1963H60.044V67.6963H60.0308V69.1963ZM60.044 69.1963H60.0572V67.6963H60.044V69.1963ZM60.0572 69.1963H60.0703V67.6963H60.0572V69.1963ZM60.0703 69.1963H60.0835V67.6963H60.0703V69.1963ZM60.0835 69.1963H60.0966V67.6963H60.0835V69.1963ZM60.0966 69.1963H60.1097V67.6963H60.0966V69.1963ZM60.1097 69.1963H60.1228V67.6963H60.1097V69.1963ZM60.1228 69.1963H60.1359V67.6963H60.1228V69.1963ZM60.1359 69.1963H60.149V67.6963H60.1359V69.1963ZM60.149 69.1963H60.162V67.6963H60.149V69.1963ZM60.162 69.1963H60.1751V67.6963H60.162V69.1963ZM60.1751 69.1963H60.1881V67.6963H60.1751V69.1963ZM60.1881 69.1963H60.2011V67.6963H60.1881V69.1963ZM60.2011 69.1963H60.214V67.6963H60.2011V69.1963ZM60.214 69.1963H60.227V67.6963H60.214V69.1963ZM60.227 69.1963H60.2399V67.6963H60.227V69.1963ZM60.2399 69.1963H60.2529V67.6963H60.2399V69.1963ZM60.2529 69.1963H60.2658V67.6963H60.2529V69.1963ZM60.2658 69.1963H60.2787V67.6963H60.2658V69.1963ZM60.2787 69.1963H60.2915V67.6963H60.2787V69.1963ZM60.2915 69.1963H60.3044V67.6963H60.2915V69.1963ZM60.3044 69.1963H60.3172V67.6963H60.3044V69.1963ZM60.3172 69.1963H60.33V67.6963H60.3172V69.1963ZM60.33 69.1963H60.3428V67.6963H60.33V69.1963ZM60.3428 69.1963H60.3556V67.6963H60.3428V69.1963ZM60.3556 69.1963H60.3684V67.6963H60.3556V69.1963ZM60.3684 69.1963H60.3811V67.6963H60.3684V69.1963ZM60.3811 69.1963H60.3939V67.6963H60.3811V69.1963ZM60.3939 69.1963H60.4066V67.6963H60.3939V69.1963ZM60.4066 69.1963H60.4193V67.6963H60.4066V69.1963ZM60.4193 69.1963H60.4319V67.6963H60.4193V69.1963ZM60.4319 69.1963H60.4446V67.6963H60.4319V69.1963ZM60.4446 69.1963H60.4572V67.6963H60.4446V69.1963ZM60.4572 69.1963H60.4699V67.6963H60.4572V69.1963ZM60.4699 69.1963H60.4825V67.6963H60.4699V69.1963ZM60.4825 69.1963H60.4951V67.6963H60.4825V69.1963ZM60.4951 69.1963H60.5076V67.6963H60.4951V69.1963ZM60.5076 69.1963H60.5202V67.6963H60.5076V69.1963ZM60.5202 69.1963H60.5327V67.6963H60.5202V69.1963ZM60.5327 69.1963H60.5453V67.6963H60.5327V69.1963ZM60.5453 69.1963H60.5578V67.6963H60.5453V69.1963ZM60.5578 69.1963H60.5702V67.6963H60.5578V69.1963ZM60.5702 69.1963H60.5827V67.6963H60.5702V69.1963ZM60.5827 69.1963H60.5952V67.6963H60.5827V69.1963ZM60.5952 69.1963H60.6076V67.6963H60.5952V69.1963ZM60.6076 69.1963H60.62V67.6963H60.6076V69.1963ZM60.62 69.1963H60.6324V67.6963H60.62V69.1963ZM60.6324 69.1963H60.6448V67.6963H60.6324V69.1963ZM60.6448 69.1963H60.6571V67.6963H60.6448V69.1963ZM60.6571 69.1963H60.6695V67.6963H60.6571V69.1963ZM60.6695 69.1963H60.6818V67.6963H60.6695V69.1963ZM60.6818 69.1963H60.6941V67.6963H60.6818V69.1963ZM60.6941 69.1963H60.7064V67.6963H60.6941V69.1963ZM60.7064 69.1963H60.7187V67.6963H60.7064V69.1963ZM60.7187 69.1963H60.731V67.6963H60.7187V69.1963ZM60.731 69.1963H60.7432V67.6963H60.731V69.1963ZM60.7432 69.1963H60.7554V67.6963H60.7432V69.1963ZM60.7554 69.1963H60.7676V67.6963H60.7554V69.1963ZM60.7676 69.1963H60.7798V67.6963H60.7676V69.1963ZM60.7798 69.1963H60.792V67.6963H60.7798V69.1963ZM60.792 69.1963H60.8041V67.6963H60.792V69.1963ZM60.8041 69.1963H60.8163V67.6963H60.8041V69.1963ZM60.8163 69.1963H60.8284V67.6963H60.8163V69.1963ZM60.8284 69.1963H60.8405V67.6963H60.8284V69.1963ZM60.8405 69.1963H60.8526V67.6963H60.8405V69.1963ZM60.8526 69.1963H60.8646V67.6963H60.8526V69.1963ZM60.8646 69.1963H60.8767V67.6963H60.8646V69.1963ZM60.8767 69.1963H60.8887V67.6963H60.8767V69.1963ZM60.8887 69.1963H60.9007V67.6963H60.8887V69.1963ZM60.9007 69.1963H60.9127V67.6963H60.9007V69.1963ZM60.9127 69.1963H60.9247V67.6963H60.9127V69.1963ZM60.9247 69.1963H60.9366V67.6963H60.9247V69.1963ZM60.9366 69.1963H60.9486V67.6963H60.9366V69.1963ZM60.9486 69.1963H60.9605V67.6963H60.9486V69.1963ZM60.9605 69.1963H60.9724V67.6963H60.9605V69.1963ZM60.9724 69.1963H60.9843V67.6963H60.9724V69.1963ZM60.9843 69.1963H60.9962V67.6963H60.9843V69.1963ZM60.9962 69.1963H61.008V67.6963H60.9962V69.1963ZM61.008 69.1963H61.0199V67.6963H61.008V69.1963ZM61.0199 69.1963H61.0317V67.6963H61.0199V69.1963ZM61.0317 69.1963H61.0435V67.6963H61.0317V69.1963ZM61.0435 69.1963H61.0553V67.6963H61.0435V69.1963ZM61.0553 69.1963H61.067V67.6963H61.0553V69.1963ZM61.067 69.1963H61.0788V67.6963H61.067V69.1963ZM61.0788 69.1963H61.0905V67.6963H61.0788V69.1963ZM61.0905 69.1963H61.1022V67.6963H61.0905V69.1963ZM61.1022 69.1963H61.1139V67.6963H61.1022V69.1963ZM61.1139 69.1963H61.1256V67.6963H61.1139V69.1963ZM61.1256 69.1963H61.1373V67.6963H61.1256V69.1963ZM61.1373 69.1963H61.1489V67.6963H61.1373V69.1963ZM61.1489 69.1963H61.1605V67.6963H61.1489V69.1963ZM61.1605 69.1963H61.1721V67.6963H61.1605V69.1963ZM61.1721 69.1963H61.1837V67.6963H61.1721V69.1963ZM61.1837 69.1963H61.1953V67.6963H61.1837V69.1963ZM61.1953 69.1963H61.2069V67.6963H61.1953V69.1963ZM61.2069 69.1963H61.2184V67.6963H61.2069V69.1963ZM61.2184 69.1963H61.2299V67.6963H61.2184V69.1963ZM61.2299 69.1963H61.2414V67.6963H61.2299V69.1963ZM61.2414 69.1963H61.2529V67.6963H61.2414V69.1963ZM61.2529 69.1963H61.2644V67.6963H61.2529V69.1963ZM61.2644 69.1963H61.2758V67.6963H61.2644V69.1963ZM61.2758 69.1963H61.2873V67.6963H61.2758V69.1963ZM61.2873 69.1963H61.2987V67.6963H61.2873V69.1963ZM61.2987 69.1963H61.3101V67.6963H61.2987V69.1963ZM61.3101 69.1963H61.3215V67.6963H61.3101V69.1963ZM61.3215 69.1963H61.3328V67.6963H61.3215V69.1963ZM61.3328 69.1963H61.3442V67.6963H61.3328V69.1963ZM61.3442 69.1963H61.3555V67.6963H61.3442V69.1963ZM61.3555 69.1963H61.3668V67.6963H61.3555V69.1963ZM61.3668 69.1963H61.3781V67.6963H61.3668V69.1963ZM61.3781 69.1963H61.3894V67.6963H61.3781V69.1963ZM61.3894 69.1963H61.4006V67.6963H61.3894V69.1963ZM61.4006 69.1963H61.4119V67.6963H61.4006V69.1963ZM61.4119 69.1963H61.4231V67.6963H61.4119V69.1963ZM61.4231 69.1963H61.4343V67.6963H61.4231V69.1963ZM61.4343 69.1963H61.4455V67.6963H61.4343V69.1963ZM61.4455 69.1963H61.4567V67.6963H61.4455V69.1963ZM61.4567 69.1963H61.4678V67.6963H61.4567V69.1963ZM61.4678 69.1963H61.479V67.6963H61.4678V69.1963ZM61.479 69.1963H61.4901V67.6963H61.479V69.1963ZM61.4901 69.1963H61.5012V67.6963H61.4901V69.1963ZM61.5012 69.1963H61.5123V67.6963H61.5012V69.1963ZM61.5123 69.1963H61.5233V67.6963H61.5123V69.1963ZM61.5233 69.1963H61.5344V67.6963H61.5233V69.1963ZM61.5344 69.1963H61.5454V67.6963H61.5344V69.1963ZM61.5454 69.1963H61.5564V67.6963H61.5454V69.1963ZM61.5564 69.1963H61.5674V67.6963H61.5564V69.1963ZM61.5674 69.1963H61.5784V67.6963H61.5674V69.1963ZM61.5784 69.1963H61.5894V67.6963H61.5784V69.1963ZM61.5894 69.1963H61.6003V67.6963H61.5894V69.1963ZM61.6003 69.1963H61.6112V67.6963H61.6003V69.1963ZM61.6112 69.1963H61.6221V67.6963H61.6112V69.1963ZM61.6221 69.1963H61.633V67.6963H61.6221V69.1963ZM61.633 69.1963H61.6439V67.6963H61.633V69.1963ZM61.6439 69.1963H61.6548V67.6963H61.6439V69.1963ZM61.6548 69.1963H61.6656V67.6963H61.6548V69.1963ZM61.6656 69.1963H61.6764V67.6963H61.6656V69.1963ZM61.6764 69.1963H61.6872V67.6963H61.6764V69.1963ZM61.6872 69.1963H61.698V67.6963H61.6872V69.1963ZM61.698 69.1963H61.7088V67.6963H61.698V69.1963ZM61.7088 69.1963H61.7195V67.6963H61.7088V69.1963ZM61.7195 69.1963H61.7302V67.6963H61.7195V69.1963ZM61.7302 69.1963H61.741V67.6963H61.7302V69.1963ZM61.741 69.1963H61.7517V67.6963H61.741V69.1963ZM61.7517 69.1963H61.7623V67.6963H61.7517V69.1963ZM61.7623 69.1963H61.773V67.6963H61.7623V69.1963ZM61.773 69.1963H61.7836V67.6963H61.773V69.1963ZM61.7836 69.1963H61.7943V67.6963H61.7836V69.1963ZM61.7943 69.1963H61.8049V67.6963H61.7943V69.1963ZM61.8049 69.1963H61.8155V67.6963H61.8049V69.1963ZM61.8155 69.1963H61.8261V67.6963H61.8155V69.1963ZM61.8261 69.1963H61.8366V67.6963H61.8261V69.1963ZM61.8366 69.1963H61.8471V67.6963H61.8366V69.1963ZM61.8471 69.1963H61.8577V67.6963H61.8471V69.1963ZM61.8577 69.1963H61.8682V67.6963H61.8577V69.1963ZM61.8682 69.1963H61.8787V67.6963H61.8682V69.1963ZM61.8787 69.1963H61.8891V67.6963H61.8787V69.1963ZM61.8891 69.1963H61.8996V67.6963H61.8891V69.1963ZM61.8996 69.1963H61.91V67.6963H61.8996V69.1963ZM61.91 69.1963H61.9204V67.6963H61.91V69.1963ZM61.9204 69.1963H61.9308V67.6963H61.9204V69.1963ZM61.9308 69.1963H61.9412V67.6963H61.9308V69.1963ZM61.9412 69.1963H61.9516V67.6963H61.9412V69.1963ZM61.9516 69.1963H61.9619V67.6963H61.9516V69.1963ZM61.9619 69.1963H61.9723V67.6963H61.9619V69.1963ZM61.9723 69.1963H61.9826V67.6963H61.9723V69.1963ZM61.9826 69.1963H61.9929V67.6963H61.9826V69.1963ZM61.9929 69.1963H62.0031V67.6963H61.9929V69.1963ZM62.0031 69.1963H62.0134V67.6963H62.0031V69.1963ZM62.0134 69.1963H62.0236V67.6963H62.0134V69.1963ZM62.0236 69.1963H62.0339V67.6963H62.0236V69.1963ZM62.0339 69.1963H62.0441V67.6963H62.0339V69.1963ZM62.0441 69.1963H62.0543V67.6963H62.0441V69.1963ZM62.0543 69.1963H62.0644V67.6963H62.0543V69.1963ZM62.0644 69.1963H62.0746V67.6963H62.0644V69.1963ZM62.0746 69.1963H62.0847V67.6963H62.0746V69.1963ZM62.0847 69.1963H62.0949V67.6963H62.0847V69.1963ZM62.0949 69.1963H62.105V67.6963H62.0949V69.1963ZM62.105 69.1963H62.115V67.6963H62.105V69.1963ZM62.115 69.1963H62.1251V67.6963H62.115V69.1963ZM62.1251 69.1963H62.1352V67.6963H62.1251V69.1963ZM62.1352 69.1963H62.1452V67.6963H62.1352V69.1963ZM62.1452 69.1963H62.1552V67.6963H62.1452V69.1963ZM62.1552 69.1963H62.1652V67.6963H62.1552V69.1963ZM62.1652 69.1963H62.1752V67.6963H62.1652V69.1963ZM62.1752 69.1963H62.1851V67.6963H62.1752V69.1963ZM62.1851 69.1963H62.1951V67.6963H62.1851V69.1963ZM62.1951 69.1963H62.205V67.6963H62.1951V69.1963ZM62.205 69.1963H62.2149V67.6963H62.205V69.1963ZM62.2149 69.1963H62.2248V67.6963H62.2149V69.1963ZM62.2248 69.1963H62.2347V67.6963H62.2248V69.1963ZM62.2347 69.1963H62.2445V67.6963H62.2347V69.1963ZM62.2445 69.1963H62.2544V67.6963H62.2445V69.1963ZM62.2544 69.1963H62.2642V67.6963H62.2544V69.1963ZM62.2642 69.1963H62.274V67.6963H62.2642V69.1963ZM62.274 69.1963H62.2838V67.6963H62.274V69.1963ZM62.2838 69.1963H62.2936V67.6963H62.2838V69.1963ZM62.2936 69.1963H62.3033V67.6963H62.2936V69.1963ZM62.3033 69.1963H62.313V67.6963H62.3033V69.1963ZM62.313 69.1963H62.3228V67.6963H62.313V69.1963ZM62.3228 69.1963H62.3325V67.6963H62.3228V69.1963ZM62.3325 69.1963H62.3421V67.6963H62.3325V69.1963ZM62.3421 69.1963H62.3518V67.6963H62.3421V69.1963ZM62.3518 69.1963H62.3615V67.6963H62.3518V69.1963ZM62.3615 69.1963H62.3711V67.6963H62.3615V69.1963ZM62.3711 69.1963H62.3807V67.6963H62.3711V69.1963ZM62.3807 69.1963H62.3903V67.6963H62.3807V69.1963ZM62.3903 69.1963H62.3999V67.6963H62.3903V69.1963ZM62.3999 69.1963H62.4094V67.6963H62.3999V69.1963ZM62.4094 69.1963H62.419V67.6963H62.4094V69.1963ZM62.419 69.1963H62.4285V67.6963H62.419V69.1963ZM62.4285 69.1963H62.438V67.6963H62.4285V69.1963ZM62.438 69.1963H62.4475V67.6963H62.438V69.1963ZM62.4475 69.1963H62.4569V67.6963H62.4475V69.1963ZM62.4569 69.1963H62.4664V67.6963H62.4569V69.1963ZM62.4664 69.1963H62.4758V67.6963H62.4664V69.1963ZM62.4758 69.1963H62.4853V67.6963H62.4758V69.1963ZM62.4853 69.1963H62.4947V67.6963H62.4853V69.1963ZM62.4947 69.1963H62.504V67.6963H62.4947V69.1963ZM62.504 69.1963H62.5134V67.6963H62.504V69.1963ZM62.5134 69.1963H62.5228V67.6963H62.5134V69.1963ZM62.5228 69.1963H62.5321V67.6963H62.5228V69.1963ZM62.5321 69.1963H62.5414V67.6963H62.5321V69.1963ZM62.5414 69.1963H62.5507V67.6963H62.5414V69.1963ZM62.5507 69.1963H62.56V67.6963H62.5507V69.1963ZM62.56 69.1963H62.5692V67.6963H62.56V69.1963ZM62.5692 69.1963H62.5785V67.6963H62.5692V69.1963ZM62.5785 69.1963H62.5877V67.6963H62.5785V69.1963ZM62.5877 69.1963H62.5969V67.6963H62.5877V69.1963ZM62.5969 69.1963H62.6061V67.6963H62.5969V69.1963ZM62.6061 69.1963H62.6153V67.6963H62.6061V69.1963ZM62.6153 69.1963H62.6244V67.6963H62.6153V69.1963ZM62.6244 69.1963H62.6336V67.6963H62.6244V69.1963ZM62.6336 69.1963H62.6427V67.6963H62.6336V69.1963ZM62.6427 69.1963H62.6518V67.6963H62.6427V69.1963ZM62.6518 69.1963H62.6609V67.6963H62.6518V69.1963ZM62.6609 69.1963H62.6699V67.6963H62.6609V69.1963ZM62.6699 69.1963H62.679V67.6963H62.6699V69.1963ZM62.679 69.1963H62.688V67.6963H62.679V69.1963ZM62.688 69.1963H62.697V67.6963H62.688V69.1963ZM62.697 69.1963H62.706V67.6963H62.697V69.1963ZM62.706 69.1963H62.715V67.6963H62.706V69.1963ZM62.715 69.1963C63.5435 69.1963 64.215 68.5247 64.215 67.6963H62.715V69.1963ZM64.215 67.6963C64.215 66.8679 63.5435 66.1963 62.715 66.1963V67.6963H64.215ZM62.715 66.1963H62.706V67.6963H62.715V66.1963ZM62.706 66.1963H62.697V67.6963H62.706V66.1963ZM62.697 66.1963H62.688V67.6963H62.697V66.1963ZM62.688 66.1963H62.679V67.6963H62.688V66.1963ZM62.679 66.1963H62.6699V67.6963H62.679V66.1963ZM62.6699 66.1963H62.6609V67.6963H62.6699V66.1963ZM62.6609 66.1963H62.6518V67.6963H62.6609V66.1963ZM62.6518 66.1963H62.6427V67.6963H62.6518V66.1963ZM62.6427 66.1963H62.6336V67.6963H62.6427V66.1963ZM62.6336 66.1963H62.6244V67.6963H62.6336V66.1963ZM62.6244 66.1963H62.6153V67.6963H62.6244V66.1963ZM62.6153 66.1963H62.6061V67.6963H62.6153V66.1963ZM62.6061 66.1963H62.5969V67.6963H62.6061V66.1963ZM62.5969 66.1963H62.5877V67.6963H62.5969V66.1963ZM62.5877 66.1963H62.5785V67.6963H62.5877V66.1963ZM62.5785 66.1963H62.5692V67.6963H62.5785V66.1963ZM62.5692 66.1963H62.56V67.6963H62.5692V66.1963ZM62.56 66.1963H62.5507V67.6963H62.56V66.1963ZM62.5507 66.1963H62.5414V67.6963H62.5507V66.1963ZM62.5414 66.1963H62.5321V67.6963H62.5414V66.1963ZM62.5321 66.1963H62.5228V67.6963H62.5321V66.1963ZM62.5228 66.1963H62.5134V67.6963H62.5228V66.1963ZM62.5134 66.1963H62.504V67.6963H62.5134V66.1963ZM62.504 66.1963H62.4947V67.6963H62.504V66.1963ZM62.4947 66.1963H62.4853V67.6963H62.4947V66.1963ZM62.4853 66.1963H62.4758V67.6963H62.4853V66.1963ZM62.4758 66.1963H62.4664V67.6963H62.4758V66.1963ZM62.4664 66.1963H62.4569V67.6963H62.4664V66.1963ZM62.4569 66.1963H62.4475V67.6963H62.4569V66.1963ZM62.4475 66.1963H62.438V67.6963H62.4475V66.1963ZM62.438 66.1963H62.4285V67.6963H62.438V66.1963ZM62.4285 66.1963H62.419V67.6963H62.4285V66.1963ZM62.419 66.1963H62.4094V67.6963H62.419V66.1963ZM62.4094 66.1963H62.3999V67.6963H62.4094V66.1963ZM62.3999 66.1963H62.3903V67.6963H62.3999V66.1963ZM62.3903 66.1963H62.3807V67.6963H62.3903V66.1963ZM62.3807 66.1963H62.3711V67.6963H62.3807V66.1963ZM62.3711 66.1963H62.3615V67.6963H62.3711V66.1963ZM62.3615 66.1963H62.3518V67.6963H62.3615V66.1963ZM62.3518 66.1963H62.3421V67.6963H62.3518V66.1963ZM62.3421 66.1963H62.3325V67.6963H62.3421V66.1963ZM62.3325 66.1963H62.3228V67.6963H62.3325V66.1963ZM62.3228 66.1963H62.313V67.6963H62.3228V66.1963ZM62.313 66.1963H62.3033V67.6963H62.313V66.1963ZM62.3033 66.1963H62.2936V67.6963H62.3033V66.1963ZM62.2936 66.1963H62.2838V67.6963H62.2936V66.1963ZM62.2838 66.1963H62.274V67.6963H62.2838V66.1963ZM62.274 66.1963H62.2642V67.6963H62.274V66.1963ZM62.2642 66.1963H62.2544V67.6963H62.2642V66.1963ZM62.2544 66.1963H62.2445V67.6963H62.2544V66.1963ZM62.2445 66.1963H62.2347V67.6963H62.2445V66.1963ZM62.2347 66.1963H62.2248V67.6963H62.2347V66.1963ZM62.2248 66.1963H62.2149V67.6963H62.2248V66.1963ZM62.2149 66.1963H62.205V67.6963H62.2149V66.1963ZM62.205 66.1963H62.1951V67.6963H62.205V66.1963ZM62.1951 66.1963H62.1851V67.6963H62.1951V66.1963ZM62.1851 66.1963H62.1752V67.6963H62.1851V66.1963ZM62.1752 66.1963H62.1652V67.6963H62.1752V66.1963ZM62.1652 66.1963H62.1552V67.6963H62.1652V66.1963ZM62.1552 66.1963H62.1452V67.6963H62.1552V66.1963ZM62.1452 66.1963H62.1352V67.6963H62.1452V66.1963ZM62.1352 66.1963H62.1251V67.6963H62.1352V66.1963ZM62.1251 66.1963H62.115V67.6963H62.1251V66.1963ZM62.115 66.1963H62.105V67.6963H62.115V66.1963ZM62.105 66.1963H62.0949V67.6963H62.105V66.1963ZM62.0949 66.1963H62.0847V67.6963H62.0949V66.1963ZM62.0847 66.1963H62.0746V67.6963H62.0847V66.1963ZM62.0746 66.1963H62.0644V67.6963H62.0746V66.1963ZM62.0644 66.1963H62.0543V67.6963H62.0644V66.1963ZM62.0543 66.1963H62.0441V67.6963H62.0543V66.1963ZM62.0441 66.1963H62.0339V67.6963H62.0441V66.1963ZM62.0339 66.1963H62.0236V67.6963H62.0339V66.1963ZM62.0236 66.1963H62.0134V67.6963H62.0236V66.1963ZM62.0134 66.1963H62.0031V67.6963H62.0134V66.1963ZM62.0031 66.1963H61.9929V67.6963H62.0031V66.1963ZM61.9929 66.1963H61.9826V67.6963H61.9929V66.1963ZM61.9826 66.1963H61.9723V67.6963H61.9826V66.1963ZM61.9723 66.1963H61.9619V67.6963H61.9723V66.1963ZM61.9619 66.1963H61.9516V67.6963H61.9619V66.1963ZM61.9516 66.1963H61.9412V67.6963H61.9516V66.1963ZM61.9412 66.1963H61.9308V67.6963H61.9412V66.1963ZM61.9308 66.1963H61.9204V67.6963H61.9308V66.1963ZM61.9204 66.1963H61.91V67.6963H61.9204V66.1963ZM61.91 66.1963H61.8996V67.6963H61.91V66.1963ZM61.8996 66.1963H61.8891V67.6963H61.8996V66.1963ZM61.8891 66.1963H61.8787V67.6963H61.8891V66.1963ZM61.8787 66.1963H61.8682V67.6963H61.8787V66.1963ZM61.8682 66.1963H61.8577V67.6963H61.8682V66.1963ZM61.8577 66.1963H61.8471V67.6963H61.8577V66.1963ZM61.8471 66.1963H61.8366V67.6963H61.8471V66.1963ZM61.8366 66.1963H61.8261V67.6963H61.8366V66.1963ZM61.8261 66.1963H61.8155V67.6963H61.8261V66.1963ZM61.8155 66.1963H61.8049V67.6963H61.8155V66.1963ZM61.8049 66.1963H61.7943V67.6963H61.8049V66.1963ZM61.7943 66.1963H61.7836V67.6963H61.7943V66.1963ZM61.7836 66.1963H61.773V67.6963H61.7836V66.1963ZM61.773 66.1963H61.7623V67.6963H61.773V66.1963ZM61.7623 66.1963H61.7517V67.6963H61.7623V66.1963ZM61.7517 66.1963H61.741V67.6963H61.7517V66.1963ZM61.741 66.1963H61.7302V67.6963H61.741V66.1963ZM61.7302 66.1963H61.7195V67.6963H61.7302V66.1963ZM61.7195 66.1963H61.7088V67.6963H61.7195V66.1963ZM61.7088 66.1963H61.698V67.6963H61.7088V66.1963ZM61.698 66.1963H61.6872V67.6963H61.698V66.1963ZM61.6872 66.1963H61.6764V67.6963H61.6872V66.1963ZM61.6764 66.1963H61.6656V67.6963H61.6764V66.1963ZM61.6656 66.1963H61.6548V67.6963H61.6656V66.1963ZM61.6548 66.1963H61.6439V67.6963H61.6548V66.1963ZM61.6439 66.1963H61.633V67.6963H61.6439V66.1963ZM61.633 66.1963H61.6221V67.6963H61.633V66.1963ZM61.6221 66.1963H61.6112V67.6963H61.6221V66.1963ZM61.6112 66.1963H61.6003V67.6963H61.6112V66.1963ZM61.6003 66.1963H61.5894V67.6963H61.6003V66.1963ZM61.5894 66.1963H61.5784V67.6963H61.5894V66.1963ZM61.5784 66.1963H61.5674V67.6963H61.5784V66.1963ZM61.5674 66.1963H61.5564V67.6963H61.5674V66.1963ZM61.5564 66.1963H61.5454V67.6963H61.5564V66.1963ZM61.5454 66.1963H61.5344V67.6963H61.5454V66.1963ZM61.5344 66.1963H61.5233V67.6963H61.5344V66.1963ZM61.5233 66.1963H61.5123V67.6963H61.5233V66.1963ZM61.5123 66.1963H61.5012V67.6963H61.5123V66.1963ZM61.5012 66.1963H61.4901V67.6963H61.5012V66.1963ZM61.4901 66.1963H61.479V67.6963H61.4901V66.1963ZM61.479 66.1963H61.4678V67.6963H61.479V66.1963ZM61.4678 66.1963H61.4567V67.6963H61.4678V66.1963ZM61.4567 66.1963H61.4455V67.6963H61.4567V66.1963ZM61.4455 66.1963H61.4343V67.6963H61.4455V66.1963ZM61.4343 66.1963H61.4231V67.6963H61.4343V66.1963ZM61.4231 66.1963H61.4119V67.6963H61.4231V66.1963ZM61.4119 66.1963H61.4006V67.6963H61.4119V66.1963ZM61.4006 66.1963H61.3894V67.6963H61.4006V66.1963ZM61.3894 66.1963H61.3781V67.6963H61.3894V66.1963ZM61.3781 66.1963H61.3668V67.6963H61.3781V66.1963ZM61.3668 66.1963H61.3555V67.6963H61.3668V66.1963ZM61.3555 66.1963H61.3442V67.6963H61.3555V66.1963ZM61.3442 66.1963H61.3328V67.6963H61.3442V66.1963ZM61.3328 66.1963H61.3215V67.6963H61.3328V66.1963ZM61.3215 66.1963H61.3101V67.6963H61.3215V66.1963ZM61.3101 66.1963H61.2987V67.6963H61.3101V66.1963ZM61.2987 66.1963H61.2873V67.6963H61.2987V66.1963ZM61.2873 66.1963H61.2758V67.6963H61.2873V66.1963ZM61.2758 66.1963H61.2644V67.6963H61.2758V66.1963ZM61.2644 66.1963H61.2529V67.6963H61.2644V66.1963ZM61.2529 66.1963H61.2414V67.6963H61.2529V66.1963ZM61.2414 66.1963H61.2299V67.6963H61.2414V66.1963ZM61.2299 66.1963H61.2184V67.6963H61.2299V66.1963ZM61.2184 66.1963H61.2069V67.6963H61.2184V66.1963ZM61.2069 66.1963H61.1953V67.6963H61.2069V66.1963ZM61.1953 66.1963H61.1837V67.6963H61.1953V66.1963ZM61.1837 66.1963H61.1721V67.6963H61.1837V66.1963ZM61.1721 66.1963H61.1605V67.6963H61.1721V66.1963ZM61.1605 66.1963H61.1489V67.6963H61.1605V66.1963ZM61.1489 66.1963H61.1373V67.6963H61.1489V66.1963ZM61.1373 66.1963H61.1256V67.6963H61.1373V66.1963ZM61.1256 66.1963H61.1139V67.6963H61.1256V66.1963ZM61.1139 66.1963H61.1022V67.6963H61.1139V66.1963ZM61.1022 66.1963H61.0905V67.6963H61.1022V66.1963ZM61.0905 66.1963H61.0788V67.6963H61.0905V66.1963ZM61.0788 66.1963H61.067V67.6963H61.0788V66.1963ZM61.067 66.1963H61.0553V67.6963H61.067V66.1963ZM61.0553 66.1963H61.0435V67.6963H61.0553V66.1963ZM61.0435 66.1963H61.0317V67.6963H61.0435V66.1963ZM61.0317 66.1963H61.0199V67.6963H61.0317V66.1963ZM61.0199 66.1963H61.008V67.6963H61.0199V66.1963ZM61.008 66.1963H60.9962V67.6963H61.008V66.1963ZM60.9962 66.1963H60.9843V67.6963H60.9962V66.1963ZM60.9843 66.1963H60.9724V67.6963H60.9843V66.1963ZM60.9724 66.1963H60.9605V67.6963H60.9724V66.1963ZM60.9605 66.1963H60.9486V67.6963H60.9605V66.1963ZM60.9486 66.1963H60.9366V67.6963H60.9486V66.1963ZM60.9366 66.1963H60.9247V67.6963H60.9366V66.1963ZM60.9247 66.1963H60.9127V67.6963H60.9247V66.1963ZM60.9127 66.1963H60.9007V67.6963H60.9127V66.1963ZM60.9007 66.1963H60.8887V67.6963H60.9007V66.1963ZM60.8887 66.1963H60.8767V67.6963H60.8887V66.1963ZM60.8767 66.1963H60.8646V67.6963H60.8767V66.1963ZM60.8646 66.1963H60.8526V67.6963H60.8646V66.1963ZM60.8526 66.1963H60.8405V67.6963H60.8526V66.1963ZM60.8405 66.1963H60.8284V67.6963H60.8405V66.1963ZM60.8284 66.1963H60.8163V67.6963H60.8284V66.1963ZM60.8163 66.1963H60.8041V67.6963H60.8163V66.1963ZM60.8041 66.1963H60.792V67.6963H60.8041V66.1963ZM60.792 66.1963H60.7798V67.6963H60.792V66.1963ZM60.7798 66.1963H60.7676V67.6963H60.7798V66.1963ZM60.7676 66.1963H60.7554V67.6963H60.7676V66.1963ZM60.7554 66.1963H60.7432V67.6963H60.7554V66.1963ZM60.7432 66.1963H60.731V67.6963H60.7432V66.1963ZM60.731 66.1963H60.7187V67.6963H60.731V66.1963ZM60.7187 66.1963H60.7064V67.6963H60.7187V66.1963ZM60.7064 66.1963H60.6941V67.6963H60.7064V66.1963ZM60.6941 66.1963H60.6818V67.6963H60.6941V66.1963ZM60.6818 66.1963H60.6695V67.6963H60.6818V66.1963ZM60.6695 66.1963H60.6571V67.6963H60.6695V66.1963ZM60.6571 66.1963H60.6448V67.6963H60.6571V66.1963ZM60.6448 66.1963H60.6324V67.6963H60.6448V66.1963ZM60.6324 66.1963H60.62V67.6963H60.6324V66.1963ZM60.62 66.1963H60.6076V67.6963H60.62V66.1963ZM60.6076 66.1963H60.5952V67.6963H60.6076V66.1963ZM60.5952 66.1963H60.5827V67.6963H60.5952V66.1963ZM60.5827 66.1963H60.5702V67.6963H60.5827V66.1963ZM60.5702 66.1963H60.5578V67.6963H60.5702V66.1963ZM60.5578 66.1963H60.5453V67.6963H60.5578V66.1963ZM60.5453 66.1963H60.5327V67.6963H60.5453V66.1963ZM60.5327 66.1963H60.5202V67.6963H60.5327V66.1963ZM60.5202 66.1963H60.5076V67.6963H60.5202V66.1963ZM60.5076 66.1963H60.4951V67.6963H60.5076V66.1963ZM60.4951 66.1963H60.4825V67.6963H60.4951V66.1963ZM60.4825 66.1963H60.4699V67.6963H60.4825V66.1963ZM60.4699 66.1963H60.4572V67.6963H60.4699V66.1963ZM60.4572 66.1963H60.4446V67.6963H60.4572V66.1963ZM60.4446 66.1963H60.4319V67.6963H60.4446V66.1963ZM60.4319 66.1963H60.4193V67.6963H60.4319V66.1963ZM60.4193 66.1963H60.4066V67.6963H60.4193V66.1963ZM60.4066 66.1963H60.3939V67.6963H60.4066V66.1963ZM60.3939 66.1963H60.3811V67.6963H60.3939V66.1963ZM60.3811 66.1963H60.3684V67.6963H60.3811V66.1963ZM60.3684 66.1963H60.3556V67.6963H60.3684V66.1963ZM60.3556 66.1963H60.3428V67.6963H60.3556V66.1963ZM60.3428 66.1963H60.33V67.6963H60.3428V66.1963ZM60.33 66.1963H60.3172V67.6963H60.33V66.1963ZM60.3172 66.1963H60.3044V67.6963H60.3172V66.1963ZM60.3044 66.1963H60.2915V67.6963H60.3044V66.1963ZM60.2915 66.1963H60.2787V67.6963H60.2915V66.1963ZM60.2787 66.1963H60.2658V67.6963H60.2787V66.1963ZM60.2658 66.1963H60.2529V67.6963H60.2658V66.1963ZM60.2529 66.1963H60.2399V67.6963H60.2529V66.1963ZM60.2399 66.1963H60.227V67.6963H60.2399V66.1963ZM60.227 66.1963H60.214V67.6963H60.227V66.1963ZM60.214 66.1963H60.2011V67.6963H60.214V66.1963ZM60.2011 66.1963H60.1881V67.6963H60.2011V66.1963ZM60.1881 66.1963H60.1751V67.6963H60.1881V66.1963ZM60.1751 66.1963H60.162V67.6963H60.1751V66.1963ZM60.162 66.1963H60.149V67.6963H60.162V66.1963ZM60.149 66.1963H60.1359V67.6963H60.149V66.1963ZM60.1359 66.1963H60.1228V67.6963H60.1359V66.1963ZM60.1228 66.1963H60.1097V67.6963H60.1228V66.1963ZM60.1097 66.1963H60.0966V67.6963H60.1097V66.1963ZM60.0966 66.1963H60.0835V67.6963H60.0966V66.1963ZM60.0835 66.1963H60.0703V67.6963H60.0835V66.1963ZM60.0703 66.1963H60.0572V67.6963H60.0703V66.1963ZM60.0572 66.1963H60.044V67.6963H60.0572V66.1963ZM60.044 66.1963H60.0308V67.6963H60.044V66.1963ZM60.0308 66.1963H60.0176V67.6963H60.0308V66.1963ZM60.0176 66.1963H60.0043V67.6963H60.0176V66.1963ZM60.0043 66.1963H59.9911V67.6963H60.0043V66.1963ZM59.9911 66.1963H59.9778V67.6963H59.9911V66.1963ZM59.9778 66.1963H59.9645V67.6963H59.9778V66.1963ZM59.9645 66.1963H59.9512V67.6963H59.9645V66.1963ZM59.9512 66.1963H59.9379V67.6963H59.9512V66.1963ZM59.9379 66.1963H59.9245V67.6963H59.9379V66.1963ZM59.9245 66.1963H59.9112V67.6963H59.9245V66.1963ZM59.9112 66.1963H59.8978V67.6963H59.9112V66.1963ZM59.8978 66.1963H59.8844V67.6963H59.8978V66.1963ZM59.8844 66.1963H59.871V67.6963H59.8844V66.1963ZM59.871 66.1963H59.8576V67.6963H59.871V66.1963ZM59.8576 66.1963H59.8441V67.6963H59.8576V66.1963ZM59.8441 66.1963H59.8306V67.6963H59.8441V66.1963ZM59.8306 66.1963H59.8172V67.6963H59.8306V66.1963ZM59.8172 66.1963H59.8037V67.6963H59.8172V66.1963ZM59.8037 66.1963H59.7901V67.6963H59.8037V66.1963ZM59.7901 66.1963H59.7766V67.6963H59.7901V66.1963ZM59.7766 66.1963H59.763V67.6963H59.7766V66.1963ZM59.763 66.1963H59.7495V67.6963H59.763V66.1963ZM59.7495 66.1963H59.7359V67.6963H59.7495V66.1963ZM59.7359 66.1963H59.7223V67.6963H59.7359V66.1963ZM59.7223 66.1963H59.7087V67.6963H59.7223V66.1963ZM59.7087 66.1963H59.695V67.6963H59.7087V66.1963ZM59.695 66.1963H59.6814V67.6963H59.695V66.1963ZM59.6814 66.1963H59.6677V67.6963H59.6814V66.1963ZM59.6677 66.1963H59.654V67.6963H59.6677V66.1963ZM59.654 66.1963H59.6403V67.6963H59.654V66.1963ZM59.6403 66.1963H59.6265V67.6963H59.6403V66.1963ZM59.6265 66.1963H59.6128V67.6963H59.6265V66.1963ZM59.6128 66.1963H59.599V67.6963H59.6128V66.1963ZM59.599 66.1963H59.5852V67.6963H59.599V66.1963ZM59.5852 66.1963H59.5714V67.6963H59.5852V66.1963ZM59.5714 66.1963H59.5576V67.6963H59.5714V66.1963ZM59.5576 66.1963H59.5438V67.6963H59.5576V66.1963ZM59.5438 66.1963H59.5299V67.6963H59.5438V66.1963ZM59.5299 66.1963H59.5161V67.6963H59.5299V66.1963ZM59.5161 66.1963H59.5022V67.6963H59.5161V66.1963ZM59.5022 66.1963H59.4883V67.6963H59.5022V66.1963ZM59.4883 66.1963H59.4744V67.6963H59.4883V66.1963ZM59.4744 66.1963H59.4604V67.6963H59.4744V66.1963ZM59.4604 66.1963H59.4465V67.6963H59.4604V66.1963ZM59.4465 66.1963H59.4325V67.6963H59.4465V66.1963ZM59.4325 66.1963H59.4185V67.6963H59.4325V66.1963ZM59.4185 66.1963H59.4045V67.6963H59.4185V66.1963ZM59.4045 66.1963H59.3905V67.6963H59.4045V66.1963ZM59.3905 66.1963H59.3764V67.6963H59.3905V66.1963ZM59.3764 66.1963H59.3624V67.6963H59.3764V66.1963ZM59.3624 66.1963H59.3483V67.6963H59.3624V66.1963ZM59.3483 66.1963H59.3342V67.6963H59.3483V66.1963ZM59.3342 66.1963H59.3201V67.6963H59.3342V66.1963ZM59.3201 66.1963H59.3059V67.6963H59.3201V66.1963ZM59.3059 66.1963H59.2918V67.6963H59.3059V66.1963ZM59.2918 66.1963H59.2776V67.6963H59.2918V66.1963ZM59.2776 66.1963H59.2634V67.6963H59.2776V66.1963ZM59.2634 66.1963H59.2492V67.6963H59.2634V66.1963ZM59.2492 66.1963H59.235V67.6963H59.2492V66.1963ZM59.235 66.1963H59.2208V67.6963H59.235V66.1963ZM59.2208 66.1963H59.2065V67.6963H59.2208V66.1963ZM59.2065 66.1963H59.1922V67.6963H59.2065V66.1963ZM59.1922 66.1963H59.178V67.6963H59.1922V66.1963ZM59.178 66.1963H59.1637V67.6963H59.178V66.1963ZM59.1637 66.1963H59.1493V67.6963H59.1637V66.1963ZM59.1493 66.1963H59.135V67.6963H59.1493V66.1963ZM59.135 66.1963H59.1206V67.6963H59.135V66.1963ZM59.1206 66.1963H59.1062V67.6963H59.1206V66.1963ZM59.1062 66.1963H59.0919V67.6963H59.1062V66.1963ZM59.0919 66.1963H59.0774V67.6963H59.0919V66.1963ZM59.0774 66.1963H59.063V67.6963H59.0774V66.1963ZM59.063 66.1963H59.0486V67.6963H59.063V66.1963ZM59.0486 66.1963H59.0341V67.6963H59.0486V66.1963ZM59.0341 66.1963H59.0196V67.6963H59.0341V66.1963ZM59.0196 66.1963H59.0051V67.6963H59.0196V66.1963ZM59.0051 66.1963H58.9906V67.6963H59.0051V66.1963ZM58.9906 66.1963H58.9761V67.6963H58.9906V66.1963ZM58.9761 66.1963H58.9615V67.6963H58.9761V66.1963ZM58.9615 66.1963H58.9469V67.6963H58.9615V66.1963ZM58.9469 66.1963H58.9324V67.6963H58.9469V66.1963ZM58.9324 66.1963H58.9177V67.6963H58.9324V66.1963ZM58.9177 66.1963H58.9031V67.6963H58.9177V66.1963ZM58.9031 66.1963H58.8885V67.6963H58.9031V66.1963ZM58.8885 66.1963H58.8738V67.6963H58.8885V66.1963ZM58.8738 66.1963H58.8591V67.6963H58.8738V66.1963ZM58.8591 66.1963H58.8445V67.6963H58.8591V66.1963ZM58.8445 66.1963H58.8297V67.6963H58.8445V66.1963ZM58.8297 66.1963H58.815V67.6963H58.8297V66.1963ZM58.815 66.1963H58.8003V67.6963H58.815V66.1963ZM58.8003 66.1963H58.7855V67.6963H58.8003V66.1963ZM58.7855 66.1963H58.7707V67.6963H58.7855V66.1963ZM58.7707 66.1963H58.7559V67.6963H58.7707V66.1963ZM58.7559 66.1963H58.7411V67.6963H58.7559V66.1963ZM58.7411 66.1963H58.7263V67.6963H58.7411V66.1963ZM58.7263 66.1963H58.7114V67.6963H58.7263V66.1963ZM58.7114 66.1963H58.6966V67.6963H58.7114V66.1963ZM58.6966 66.1963H58.6817V67.6963H58.6966V66.1963ZM58.6817 66.1963H58.6668V67.6963H58.6817V66.1963ZM58.6668 66.1963H58.6519V67.6963H58.6668V66.1963ZM58.6519 66.1963H58.6369V67.6963H58.6519V66.1963ZM58.6369 66.1963H58.622V67.6963H58.6369V66.1963ZM58.622 66.1963H58.607V67.6963H58.622V66.1963ZM58.607 66.1963H58.592V67.6963H58.607V66.1963ZM58.592 66.1963H58.577V67.6963H58.592V66.1963ZM58.577 66.1963H58.562V67.6963H58.577V66.1963ZM58.562 66.1963H58.5469V67.6963H58.562V66.1963ZM58.5469 66.1963H58.5319V67.6963H58.5469V66.1963ZM58.5319 66.1963H58.5168V67.6963H58.5319V66.1963ZM58.5168 66.1963H58.5017V67.6963H58.5168V66.1963ZM58.5017 66.1963H58.4866V67.6963H58.5017V66.1963ZM58.4866 66.1963H58.4714V67.6963H58.4866V66.1963ZM58.4714 66.1963H58.4563V67.6963H58.4714V66.1963ZM58.4563 66.1963H58.4411V67.6963H58.4563V66.1963ZM58.4411 66.1963H58.4259V67.6963H58.4411V66.1963ZM58.4259 66.1963H58.4107V67.6963H58.4259V66.1963ZM58.4107 66.1963H58.3955V67.6963H58.4107V66.1963ZM58.3955 66.1963H58.3803V67.6963H58.3955V66.1963ZM58.3803 66.1963H58.365V67.6963H58.3803V66.1963ZM58.365 66.1963H58.3498V67.6963H58.365V66.1963ZM58.3498 66.1963H58.3345V67.6963H58.3498V66.1963ZM58.3345 66.1963H58.3192V67.6963H58.3345V66.1963ZM58.3192 66.1963H58.3038V67.6963H58.3192V66.1963ZM58.3038 66.1963H58.2885V67.6963H58.3038V66.1963ZM58.2885 66.1963H58.2731V67.6963H58.2885V66.1963ZM58.2731 66.1963H58.2578V67.6963H58.2731V66.1963ZM58.2578 66.1963H58.2424V67.6963H58.2578V66.1963ZM58.2424 66.1963H58.227V67.6963H58.2424V66.1963ZM58.227 66.1963H58.2115V67.6963H58.227V66.1963ZM58.2115 66.1963H58.1961V67.6963H58.2115V66.1963ZM58.1961 66.1963H58.1806V67.6963H58.1961V66.1963ZM58.1806 66.1963H58.1651V67.6963H58.1806V66.1963ZM58.1651 66.1963H58.1496V67.6963H58.1651V66.1963ZM58.1496 66.1963H58.1341V67.6963H58.1496V66.1963ZM58.1341 66.1963H58.1186V67.6963H58.1341V66.1963ZM58.1186 66.1963H58.103V67.6963H58.1186V66.1963ZM58.103 66.1963H58.0875V67.6963H58.103V66.1963ZM58.0875 66.1963H58.0719V67.6963H58.0875V66.1963ZM58.0719 66.1963H58.0563V67.6963H58.0719V66.1963ZM58.0563 66.1963H58.0407V67.6963H58.0563V66.1963ZM58.0407 66.1963H58.025V67.6963H58.0407V66.1963ZM58.025 66.1963H58.0094V67.6963H58.025V66.1963ZM58.0094 66.1963H57.9937V67.6963H58.0094V66.1963ZM57.9937 66.1963H57.978V67.6963H57.9937V66.1963ZM57.978 66.1963H57.9623V67.6963H57.978V66.1963ZM57.9623 66.1963H57.9466V67.6963H57.9623V66.1963ZM57.9466 66.1963H57.9308V67.6963H57.9466V66.1963ZM57.9308 66.1963H57.9151V67.6963H57.9308V66.1963ZM57.9151 66.1963H57.8993V67.6963H57.9151V66.1963ZM57.8993 66.1963H57.8835V67.6963H57.8993V66.1963ZM57.8835 66.1963H57.8677V67.6963H57.8835V66.1963ZM57.8677 66.1963H57.8518V67.6963H57.8677V66.1963ZM57.8518 66.1963H57.836V67.6963H57.8518V66.1963ZM57.836 66.1963H57.8201V67.6963H57.836V66.1963ZM57.8201 66.1963H57.8042V67.6963H57.8201V66.1963ZM57.8042 66.1963H57.7883V67.6963H57.8042V66.1963ZM57.7883 66.1963H57.7724V67.6963H57.7883V66.1963ZM57.7724 66.1963H57.7565V67.6963H57.7724V66.1963ZM57.7565 66.1963H57.7405V67.6963H57.7565V66.1963ZM57.7405 66.1963H57.7246V67.6963H57.7405V66.1963ZM57.7246 66.1963H57.7086V67.6963H57.7246V66.1963ZM57.7086 66.1963H57.6926V67.6963H57.7086V66.1963ZM57.6926 66.1963H57.6765V67.6963H57.6926V66.1963ZM57.6765 66.1963H57.6605V67.6963H57.6765V66.1963ZM57.6605 66.1963H57.6444V67.6963H57.6605V66.1963ZM57.6444 66.1963H57.6284V67.6963H57.6444V66.1963ZM57.6284 66.1963H57.6123V67.6963H57.6284V66.1963ZM57.6123 66.1963H57.5961V67.6963H57.6123V66.1963ZM57.5961 66.1963H57.58V67.6963H57.5961V66.1963ZM57.58 66.1963H57.5639V67.6963H57.58V66.1963ZM57.5639 66.1963H57.5477V67.6963H57.5639V66.1963ZM57.5477 66.1963H57.5315V67.6963H57.5477V66.1963ZM57.5315 66.1963H57.5153V67.6963H57.5315V66.1963ZM57.5153 66.1963H57.4991V67.6963H57.5153V66.1963ZM57.4991 66.1963H57.4829V67.6963H57.4991V66.1963ZM57.4829 66.1963H57.4666V67.6963H57.4829V66.1963ZM57.4666 66.1963H57.4503V67.6963H57.4666V66.1963ZM57.4503 66.1963H57.4341V67.6963H57.4503V66.1963ZM57.4341 66.1963H57.4178V67.6963H57.4341V66.1963ZM57.4178 66.1963H57.4014V67.6963H57.4178V66.1963ZM57.4014 66.1963H57.3851V67.6963H57.4014V66.1963ZM57.3851 66.1963H57.3687V67.6963H57.3851V66.1963ZM57.3687 66.1963H57.3524V67.6963H57.3687V66.1963ZM57.3524 66.1963H57.336V67.6963H57.3524V66.1963ZM57.336 66.1963H57.3196V67.6963H57.336V66.1963ZM57.3196 66.1963H57.3031V67.6963H57.3196V66.1963ZM57.3031 66.1963H57.2867V67.6963H57.3031V66.1963ZM57.2867 66.1963H57.2702V67.6963H57.2867V66.1963ZM57.2702 66.1963H57.2537V67.6963H57.2702V66.1963ZM57.2537 66.1963H57.2372V67.6963H57.2537V66.1963ZM57.2372 66.1963H57.2207V67.6963H57.2372V66.1963ZM57.2207 66.1963H57.2042V67.6963H57.2207V66.1963ZM57.2042 66.1963H57.1876V67.6963H57.2042V66.1963ZM57.1876 66.1963H57.1711V67.6963H57.1876V66.1963ZM57.1711 66.1963H57.1545V67.6963H57.1711V66.1963ZM57.1545 66.1963H57.1379V67.6963H57.1545V66.1963ZM57.1379 66.1963H57.1213V67.6963H57.1379V66.1963ZM57.1213 66.1963H57.1046V67.6963H57.1213V66.1963ZM57.1046 66.1963H57.088V67.6963H57.1046V66.1963ZM57.088 66.1963H57.0713V67.6963H57.088V66.1963ZM57.0713 66.1963H57.0546V67.6963H57.0713V66.1963ZM57.0546 66.1963H57.0379V67.6963H57.0546V66.1963ZM57.0379 66.1963H57.0212V67.6963H57.0379V66.1963ZM57.0212 66.1963H57.0044V67.6963H57.0212V66.1963ZM57.0044 66.1963H56.9877V67.6963H57.0044V66.1963ZM56.9877 66.1963H56.9709V67.6963H56.9877V66.1963ZM56.9709 66.1963H56.9541V67.6963H56.9709V66.1963ZM56.9541 66.1963H56.9373V67.6963H56.9541V66.1963ZM56.9373 66.1963H56.9205V67.6963H56.9373V66.1963ZM56.9205 66.1963H56.9036V67.6963H56.9205V66.1963ZM56.9036 66.1963H56.8867V67.6963H56.9036V66.1963ZM56.8867 66.1963H56.8699V67.6963H56.8867V66.1963ZM56.8699 66.1963H56.853V67.6963H56.8699V66.1963ZM56.853 66.1963H56.836V67.6963H56.853V66.1963ZM56.836 66.1963H56.8191V67.6963H56.836V66.1963ZM56.8191 66.1963H56.8022V67.6963H56.8191V66.1963ZM56.8022 66.1963H56.7852V67.6963H56.8022V66.1963ZM56.7852 66.1963H56.7682V67.6963H56.7852V66.1963ZM56.7682 66.1963H56.7512V67.6963H56.7682V66.1963ZM56.7512 66.1963H56.7342V67.6963H56.7512V66.1963ZM56.7342 66.1963H56.7171V67.6963H56.7342V66.1963ZM56.7171 66.1963H56.7001V67.6963H56.7171V66.1963ZM56.7001 66.1963H56.683V67.6963H56.7001V66.1963ZM56.683 66.1963H56.6659V67.6963H56.683V66.1963ZM56.6659 66.1963H56.6488V67.6963H56.6659V66.1963ZM56.6488 66.1963H56.6317V67.6963H56.6488V66.1963ZM56.6317 66.1963H56.6145V67.6963H56.6317V66.1963ZM56.6145 66.1963H56.5974V67.6963H56.6145V66.1963ZM56.5974 66.1963H56.5802V67.6963H56.5974V66.1963ZM56.5802 66.1963H56.563V67.6963H56.5802V66.1963ZM56.563 66.1963H56.5458V67.6963H56.563V66.1963ZM56.5458 66.1963H56.5285V67.6963H56.5458V66.1963ZM56.5285 66.1963H56.5113V67.6963H56.5285V66.1963ZM56.5113 66.1963H56.494V67.6963H56.5113V66.1963ZM56.494 66.1963H56.4767V67.6963H56.494V66.1963ZM56.4767 66.1963H56.4594V67.6963H56.4767V66.1963ZM56.4594 66.1963H56.4421V67.6963H56.4594V66.1963ZM56.4421 66.1963H56.4248V67.6963H56.4421V66.1963ZM56.4248 66.1963H56.4074V67.6963H56.4248V66.1963ZM56.4074 66.1963H56.39V67.6963H56.4074V66.1963ZM56.39 66.1963H56.3726V67.6963H56.39V66.1963ZM56.3726 66.1963H56.3552V67.6963H56.3726V66.1963ZM56.3552 66.1963H56.3378V67.6963H56.3552V66.1963ZM56.3378 66.1963H56.3204V67.6963H56.3378V66.1963ZM56.3204 66.1963H56.3029V67.6963H56.3204V66.1963ZM56.3029 66.1963H56.2854V67.6963H56.3029V66.1963ZM56.2854 66.1963H56.2679V67.6963H56.2854V66.1963ZM56.2679 66.1963H56.2504V67.6963H56.2679V66.1963ZM56.2504 66.1963H56.2329V67.6963H56.2504V66.1963ZM56.2329 66.1963H56.2153V67.6963H56.2329V66.1963ZM56.2153 66.1963H56.1978V67.6963H56.2153V66.1963ZM56.1978 66.1963H56.1802V67.6963H56.1978V66.1963ZM56.1802 66.1963H56.1626V67.6963H56.1802V66.1963ZM56.1626 66.1963H56.145V67.6963H56.1626V66.1963ZM56.145 66.1963H56.1273V67.6963H56.145V66.1963ZM56.1273 66.1963H56.1097V67.6963H56.1273V66.1963ZM56.1097 66.1963H56.092V67.6963H56.1097V66.1963ZM56.092 66.1963H56.0743V67.6963H56.092V66.1963ZM56.0743 66.1963H56.0566V67.6963H56.0743V66.1963ZM56.0566 66.1963H56.0389V67.6963H56.0566V66.1963ZM56.0389 66.1963H56.0211V67.6963H56.0389V66.1963ZM56.0211 66.1963H56.0034V67.6963H56.0211V66.1963ZM56.0034 66.1963H55.9856V67.6963H56.0034V66.1963ZM55.9856 66.1963H55.9678V67.6963H55.9856V66.1963ZM55.9678 66.1963H55.95V67.6963H55.9678V66.1963ZM55.95 66.1963H55.9322V67.6963H55.95V66.1963ZM55.9322 66.1963H55.9143V67.6963H55.9322V66.1963ZM55.9143 66.1963H55.8964V67.6963H55.9143V66.1963ZM55.8964 66.1963H55.8786V67.6963H55.8964V66.1963ZM55.8786 66.1963H55.8607V67.6963H55.8786V66.1963ZM55.8607 66.1963H55.8427V67.6963H55.8607V66.1963ZM55.8427 66.1963H55.8248V67.6963H55.8427V66.1963ZM55.8248 66.1963C53.8461 66.1963 52.1424 67.593 51.7543 69.5333L53.2252 69.8274C53.4731 68.5883 54.5611 67.6963 55.8248 67.6963V66.1963ZM51.7543 69.5333L51.752 69.5449L53.2229 69.8391L53.2252 69.8274L51.7543 69.5333ZM51.7477 69.5682L51.7458 69.5799L53.2252 69.8274L53.2272 69.8158L51.7477 69.5682ZM51.7458 69.5799L51.2696 72.4257L52.749 72.6733L53.2252 69.8274L51.7458 69.5799ZM51.2696 72.4257L50.9294 74.4584L52.4089 74.706L52.749 72.6733L51.2696 72.4257ZM50.9294 74.4584C50.7927 75.2755 51.3443 76.0487 52.1613 76.1854L52.4089 74.706H52.4089L50.9294 74.4584ZM52.1613 76.1854C52.9784 76.3222 53.7516 75.7706 53.8883 74.9536L52.4089 74.706H52.4089L52.1613 76.1854ZM53.8883 74.9536L54.2284 72.9208L52.749 72.6733L52.4089 74.706L53.8883 74.9536ZM54.2284 72.9208L54.7025 70.0877L53.2231 69.8401L52.749 72.6733L54.2284 72.9208Z",
|
|
41
|
+
fill: "#3B3552"
|
|
42
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
43
|
+
id: "path-7-inside-1_0_2344",
|
|
44
|
+
fill: "white"
|
|
45
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
fillRule: "evenodd",
|
|
47
|
+
clipRule: "evenodd",
|
|
48
|
+
d: "M76.3398 107.068C81.3265 107.068 85.3689 103.025 85.3689 98.0387C85.3689 97.7339 85.3538 97.4327 85.3244 97.1357H119.18C119.456 97.1357 119.68 97.3596 119.68 97.6357V114.806C119.68 117.015 117.889 118.806 115.68 118.806H37C34.7909 118.806 33 117.015 33 114.806V97.6357C33 97.3596 33.2239 97.1357 33.5 97.1357H67.3553C67.3258 97.4327 67.3107 97.7339 67.3107 98.0387C67.3107 103.025 71.3532 107.068 76.3398 107.068Z"
|
|
49
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
fillRule: "evenodd",
|
|
51
|
+
clipRule: "evenodd",
|
|
52
|
+
d: "M76.3398 107.068C81.3265 107.068 85.3689 103.025 85.3689 98.0387C85.3689 97.7339 85.3538 97.4327 85.3244 97.1357H119.18C119.456 97.1357 119.68 97.3596 119.68 97.6357V114.806C119.68 117.015 117.889 118.806 115.68 118.806H37C34.7909 118.806 33 117.015 33 114.806V97.6357C33 97.3596 33.2239 97.1357 33.5 97.1357H67.3553C67.3258 97.4327 67.3107 97.7339 67.3107 98.0387C67.3107 103.025 71.3532 107.068 76.3398 107.068Z",
|
|
53
|
+
fill: "white"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M85.3244 97.1357V95.6357H83.6681L83.8317 97.2839L85.3244 97.1357ZM67.3553 97.1357L68.8479 97.2839L69.0116 95.6357H67.3553V97.1357ZM83.8689 98.0387C83.8689 102.197 80.498 105.568 76.3398 105.568V108.568C82.1549 108.568 86.8689 103.854 86.8689 98.0387H83.8689ZM83.8317 97.2839C83.8563 97.5318 83.8689 97.7835 83.8689 98.0387H86.8689C86.8689 97.6843 86.8514 97.3337 86.817 96.9875L83.8317 97.2839ZM85.3244 98.6357H119.18V95.6357H85.3244V98.6357ZM119.18 98.6357C118.627 98.6357 118.18 98.188 118.18 97.6357H121.18C121.18 96.5312 120.284 95.6357 119.18 95.6357V98.6357ZM118.18 97.6357V114.806H121.18V97.6357H118.18ZM118.18 114.806C118.18 116.186 117.06 117.306 115.68 117.306V120.306C118.717 120.306 121.18 117.843 121.18 114.806H118.18ZM115.68 117.306H37V120.306H115.68V117.306ZM37 117.306C35.6193 117.306 34.5 116.186 34.5 114.806H31.5C31.5 117.843 33.9624 120.306 37 120.306V117.306ZM34.5 114.806V97.6357H31.5V114.806H34.5ZM34.5 97.6357C34.5 98.188 34.0523 98.6357 33.5 98.6357V95.6357C32.3954 95.6357 31.5 96.5312 31.5 97.6357H34.5ZM33.5 98.6357H67.3553V95.6357H33.5V98.6357ZM68.8107 98.0387C68.8107 97.7835 68.8233 97.5318 68.8479 97.2839L65.8626 96.9875C65.8282 97.3337 65.8107 97.6843 65.8107 98.0387H68.8107ZM76.3398 105.568C72.1816 105.568 68.8107 102.197 68.8107 98.0387H65.8107C65.8107 103.854 70.5247 108.568 76.3398 108.568V105.568Z",
|
|
56
|
+
fill: "#3B3552",
|
|
57
|
+
mask: "url(#path-7-inside-1_0_2344)"
|
|
58
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
59
|
+
d: "M76.3396 24V39.3495",
|
|
60
|
+
stroke: "#3B3552",
|
|
61
|
+
strokeWidth: "1.5",
|
|
62
|
+
strokeLinecap: "round"
|
|
63
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
64
|
+
d: "M96.4296 30.4453L88.7549 43.7384",
|
|
65
|
+
stroke: "#3B3552",
|
|
66
|
+
strokeWidth: "1.5",
|
|
67
|
+
strokeLinecap: "round"
|
|
68
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
69
|
+
d: "M56.25 30.4453L63.9248 43.7384",
|
|
70
|
+
stroke: "#3B3552",
|
|
71
|
+
strokeWidth: "1.5",
|
|
72
|
+
strokeLinecap: "round"
|
|
73
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
74
|
+
d: "M70.5 125.5H87.5",
|
|
75
|
+
stroke: "#3B3552",
|
|
76
|
+
strokeWidth: "1.5",
|
|
77
|
+
strokeLinecap: "round"
|
|
78
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
79
|
+
d: "M92.1944 125.5H98.8056",
|
|
80
|
+
stroke: "#3B3552",
|
|
81
|
+
strokeWidth: "1.5",
|
|
82
|
+
strokeLinecap: "round"
|
|
83
|
+
}));
|
|
84
|
+
export default Drawer;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const FileSearch = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 169
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 169",
|
|
9
|
+
version: "1.1",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
id: "Symbols",
|
|
13
|
+
stroke: "none",
|
|
14
|
+
strokeWidth: "1",
|
|
15
|
+
fill: "none",
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round"
|
|
19
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
20
|
+
id: "Group-10",
|
|
21
|
+
transform: "translate(2.000000, 2.000000)"
|
|
22
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M74,124.741589 L74,161.762456 C74,163.553649 72.5479505,165.005699 70.7567568,165.005699 C70.191601,165.005699 69.6362551,164.858017 69.1457523,164.57729 L6.67495026,128.823589 L6.67495026,128.823589 C2.54398439,126.459328 0,122.095239 0,117.373019 L0,47.9293229 C0,43.2071024 2.54398439,38.843014 6.67495026,36.4787525 L67.3072083,1.77729956 C71.4477337,-0.592433188 76.5522663,-0.592433188 80.6927917,1.77729956 L141.32505,36.4787525 C145.456016,38.843014 148,43.2071024 148,47.9293229 L148,117.373019 C148,122.095239 145.456016,126.459328 141.32505,128.823589 L92.2812226,156.892675",
|
|
24
|
+
id: "Path-Copy-5",
|
|
25
|
+
stroke: "#3B3552",
|
|
26
|
+
strokeWidth: "3"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
28
|
+
id: "Group",
|
|
29
|
+
transform: "translate(26.000000, 44.000000)",
|
|
30
|
+
fill: "#3040D6",
|
|
31
|
+
stroke: "#3B3552",
|
|
32
|
+
strokeWidth: "0.5"
|
|
33
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M27.9631397,3.55271368e-15 C33.4624013,3.55271368e-15 38.3808566,2.52087 41.6553672,6.48487465 L81.9472527,6.48596321 C84.0762362,6.48596321 85.8021183,8.23554166 85.8021183,10.3937561 L85.802,28.325 L88.2515308,28.3252823 L88.251,32.429 L93,32.4298161 L93,59.7472937 L85.8455246,67 L58.8980359,67 L58.898,62.186 L54.8490941,62.1863343 L54.849,59.703 L23.5644342,59.7032914 C21.4354508,59.7032914 19.7095687,57.9537129 19.7095687,55.7954985 L19.7093454,34.1452905 C18.6082798,33.562194 17.574686,32.8660733 16.6235455,32.0721158 L14.6182598,34.103252 L14.8620406,34.3506585 C15.8011053,35.3026166 15.8011053,36.8460456 14.8620406,37.7980037 L7.72142069,45.0366643 C6.78235595,45.9886224 5.25983119,45.9886224 4.32076645,45.0366643 L1.70429855,42.3842723 C0.765233815,41.4323142 0.765233815,39.8888852 1.70429855,38.9369271 L8.84491844,31.6982665 C9.78398317,30.7463084 11.3065079,30.7463084 12.2455727,31.6982665 L12.4882598,31.944252 L14.4672092,29.9403992 C11.7540916,26.766322 10.112393,22.6254316 10.112393,18.0958374 C10.112393,8.10178235 18.1044446,3.55271368e-15 27.9631397,3.55271368e-15 Z M91.688386,33.7594385 L60.2096499,33.7594385 L60.2096499,65.6703775 L84.84,65.67 L84.840268,58.7282349 L91.688,58.728 L91.688386,33.7594385 Z M91.538,59.348 L85.4523545,59.3487254 L85.452,65.518 L91.538,59.348 Z M87.6394442,28.9457728 L55.4611807,28.9457728 L55.4611807,61.5658438 L58.898,61.565 L58.8980359,32.4298161 L87.639,32.429 L87.6394442,28.9457728 Z M84.49,15.163 L45.5807319,15.1635935 C45.7341329,16.1179982 45.8138864,17.0974762 45.8138864,18.0958374 C45.8138864,28.0898924 37.8218349,36.1916747 27.9631397,36.1916747 C25.5007911,36.1916747 23.1548876,35.6862683 21.0208682,34.7722046 L21.0211827,55.7954985 C21.0211827,57.2193827 22.1598352,58.3736689 23.5644342,58.3736689 L54.849,58.373 L54.8490941,28.3252823 L84.49,28.325 L84.49,15.163 Z M78.4992495,48.4723056 C78.6682725,48.4723056 78.8052927,48.6112071 78.8052927,48.7825508 C78.8052927,48.9538945 78.6682725,49.0927961 78.4992495,49.0927961 L67.0125174,49.0927961 C66.8434944,49.0927961 66.7064742,48.9538945 66.7064742,48.7825508 C66.7064742,48.6112071 66.8434944,48.4723056 67.0125174,48.4723056 L78.4992495,48.4723056 Z M9.77236959,32.6384516 L2.63174971,39.8771121 C2.2049021,40.3098203 2.2049021,41.011379 2.63174971,41.4440872 L5.24821761,44.0964792 C5.67506522,44.5291874 6.36712193,44.5291874 6.79396954,44.0964792 L13.9345894,36.8578186 C14.361437,36.4251104 14.361437,35.7235518 13.9345894,35.2908435 L11.3181215,32.6384516 C10.8912739,32.2057433 10.1992172,32.2057433 9.77236959,32.6384516 Z M85.5477644,42.7970878 C85.7167874,42.7970878 85.8538076,42.9359893 85.8538076,43.107333 C85.8538076,43.2786767 85.7167874,43.4175783 85.5477644,43.4175783 L67.1689931,43.4175783 C66.9999701,43.4175783 66.8629499,43.2786767 66.8629499,43.107333 C66.8629499,42.9359893 66.9999701,42.7970878 67.1689931,42.7970878 L85.5477644,42.7970878 Z M27.9631397,1.32962246 C18.828829,1.32962246 11.424007,8.83611256 11.424007,18.0958374 C11.424007,27.3555622 18.828829,34.8620523 27.9631397,34.8620523 C37.0974505,34.8620523 44.5022724,27.3555622 44.5022724,18.0958374 C44.5022724,8.83611256 37.0974505,1.32962246 27.9631397,1.32962246 Z M14.8764421,30.4029656 L12.9212598,32.383252 L14.1852598,33.665252 L16.1555297,31.6676037 C15.7087055,31.2678064 15.281777,30.8456865 14.8764421,30.4029656 Z M27.9631397,4.408293 C35.4201767,4.408293 41.4652995,10.5364153 41.4652995,18.0958374 C41.4652995,25.6552594 35.4201767,31.7833817 27.9631397,31.7833817 C20.5061028,31.7833817 14.46098,25.6552594 14.46098,18.0958374 C14.46098,10.5364153 20.5061028,4.408293 27.9631397,4.408293 Z M27.9631397,5.02878348 C20.8441489,5.02878348 15.0730665,10.8791028 15.0730665,18.0958374 C15.0730665,25.312572 20.8441489,31.1628913 27.9631397,31.1628913 C35.0821306,31.1628913 40.853213,25.312572 40.853213,18.0958374 C40.853213,10.8791028 35.0821306,5.02878348 27.9631397,5.02878348 Z M27.9631397,8.46202001 C28.1321628,8.46202001 28.269183,8.60092153 28.269183,8.77226525 C28.269183,8.94360896 28.1321628,9.08251049 27.9631397,9.08251049 C23.0526379,9.08251049 19.0718897,13.1179144 19.0718897,18.0958374 C19.0718897,18.2671811 18.9348694,18.4060826 18.7658464,18.4060826 C18.5968234,18.4060826 18.4598031,18.2671811 18.4598031,18.0958374 C18.4598031,12.775227 22.7145919,8.46202001 27.9631397,8.46202001 Z M42.6549454,7.81468876 C44.0125608,9.8045911 44.9869199,12.0837237 45.4698482,14.5424266 L84.49,14.542 L84.4905043,10.3937561 C84.4905043,8.96987187 83.3518518,7.81558567 81.9472527,7.81558567 L42.6549454,7.81468876 Z",
|
|
35
|
+
id: "Combined-Shape"
|
|
36
|
+
})))));
|
|
37
|
+
export default FileSearch;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const FlagInCog = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 169
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 169",
|
|
9
|
+
version: "1.1",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
id: "Symbols",
|
|
13
|
+
stroke: "none",
|
|
14
|
+
strokeWidth: "1",
|
|
15
|
+
fill: "none",
|
|
16
|
+
fillRule: "evenodd"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
18
|
+
id: "Group",
|
|
19
|
+
transform: "translate(2.000000, 2.000000)",
|
|
20
|
+
stroke: "#3B3552",
|
|
21
|
+
strokeWidth: "3"
|
|
22
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M74,102.060611 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663",
|
|
24
|
+
id: "Path-Copy-3",
|
|
25
|
+
strokeLinecap: "round"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M51,49 L119,49 C120.104569,49 121,49.8954305 121,51 L121,92 C121,93.1045695 120.104569,94 119,94 L51,94 L51,94",
|
|
28
|
+
id: "Path",
|
|
29
|
+
fill: "#3040D6",
|
|
30
|
+
fillOpacity: "0.2"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
32
|
+
x1: "50.5",
|
|
33
|
+
y1: "117.664666",
|
|
34
|
+
x2: "50.5",
|
|
35
|
+
y2: "46",
|
|
36
|
+
id: "Line-2",
|
|
37
|
+
strokeLinecap: "round"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39
|
+
d: "M90.239435,81.7782712 C90.0631269,82.1676449 89.8758447,82.5512259 89.6779671,82.9286394 L82.2989672,82.9286393 L81.8937728,82.0669236 L78.1172716,83.9875645 L76.5591632,79.8394848 C76.3961623,79.1332341 76.5739129,78.396551 77.0393222,77.8413752 L79.8721037,74.4622162 C79.8249919,73.8746857 79.8009823,73.2808202 79.8009823,72.6814838 C79.8009823,67.7927344 81.3963573,63.2674855 84.107847,59.5756058 C84.5362871,59.0098353 84.997813,58.7370453 85.4095325,58.6086382 C86.0930507,58.3954624 86.7419904,58.5264664 87.2751427,58.9131117 C90.61381,63.2761567 92.1990177,67.7991512 92.1990177,72.6814838 C92.1990177,73.2808202 92.1750081,73.8746857 92.1278963,74.4622162 L94.9606778,77.8413752 C95.3806819,78.3423882 95.5664172,78.9912204 95.4788634,79.6321076 L94.9309945,83.6424664 L90.239435,81.7782712 Z",
|
|
40
|
+
id: "Path",
|
|
41
|
+
fill: "#FFFFFF",
|
|
42
|
+
fillOpacity: 0
|
|
43
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
d: "M18.4450668,124.33815 C20.3880749,122.496562 22.421736,120.749671 24.5386602,119.104867 L22.349674,115.734124 C21.7480823,114.807754 22.0113671,113.569097 22.9377371,112.967505 L31.3244427,107.521115 C32.2508127,106.919523 33.4894703,107.182808 34.0910619,108.109178 L36.2893205,111.494199 C43.9325843,107.429769 52.2997247,104.546693 61.1471982,103.088517",
|
|
45
|
+
id: "Path",
|
|
46
|
+
strokeLinecap: "round"
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M74.5,102 C86.2343886,102 97.389559,104.479928 107.469997,108.944271 L109.522759,105.388784 C110.075043,104.432199 111.298224,104.104449 112.254809,104.656733 L125.245191,112.156733 C126.201776,112.709018 126.529526,113.932199 125.977241,114.888784 L123.825459,118.615781 C126.097192,120.345426 128.275354,122.191655 130.351025,124.145546",
|
|
49
|
+
id: "Path",
|
|
50
|
+
strokeLinecap: "round"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
52
|
+
x1: "82.5",
|
|
53
|
+
y1: "19.5",
|
|
54
|
+
x2: "82.5",
|
|
55
|
+
y2: "32.5278784",
|
|
56
|
+
id: "Line-6",
|
|
57
|
+
strokeLinecap: "round"
|
|
58
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
59
|
+
x1: "82.5",
|
|
60
|
+
y1: "19.5",
|
|
61
|
+
x2: "82.5",
|
|
62
|
+
y2: "32.5278784",
|
|
63
|
+
id: "Line-6-Copy",
|
|
64
|
+
strokeLinecap: "round",
|
|
65
|
+
transform: "translate(82.500000, 26.000000) rotate(-270.000000) translate(-82.500000, -26.000000) "
|
|
66
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
67
|
+
x1: "30.5",
|
|
68
|
+
y1: "40.3",
|
|
69
|
+
x2: "30.5",
|
|
70
|
+
y2: "48.1167271",
|
|
71
|
+
id: "Line-6",
|
|
72
|
+
strokeLinecap: "round"
|
|
73
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
74
|
+
x1: "30.4916365",
|
|
75
|
+
y1: "40.2916365",
|
|
76
|
+
x2: "30.4916365",
|
|
77
|
+
y2: "48.1083635",
|
|
78
|
+
id: "Line-6-Copy",
|
|
79
|
+
strokeLinecap: "round",
|
|
80
|
+
transform: "translate(30.491636, 44.200000) rotate(-270.000000) translate(-30.491636, -44.200000) "
|
|
81
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
82
|
+
x1: "17.5",
|
|
83
|
+
y1: "78.4333333",
|
|
84
|
+
x2: "17.5",
|
|
85
|
+
y2: "89.7241613",
|
|
86
|
+
id: "Line-6",
|
|
87
|
+
strokeLinecap: "round"
|
|
88
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
89
|
+
x1: "17.4879193",
|
|
90
|
+
y1: "78.4212527",
|
|
91
|
+
x2: "17.4879193",
|
|
92
|
+
y2: "89.7120807",
|
|
93
|
+
id: "Line-6-Copy",
|
|
94
|
+
strokeLinecap: "round",
|
|
95
|
+
transform: "translate(17.487919, 84.066667) rotate(-270.000000) translate(-17.487919, -84.066667) "
|
|
96
|
+
}))));
|
|
97
|
+
export default FlagInCog;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Folder = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 152
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 152",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
12
|
+
cx: "76",
|
|
13
|
+
cy: "76",
|
|
14
|
+
r: "76",
|
|
15
|
+
fill: "white"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
17
|
+
id: "path-2-inside-1_0_2389",
|
|
18
|
+
fill: "white"
|
|
19
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
clipRule: "evenodd",
|
|
22
|
+
d: "M47.8095 35C45.6004 35 43.8095 36.7909 43.8095 39V44.9048H37.9048C35.6956 44.9048 33.9048 46.6956 33.9048 48.9048V93.7302C33.9048 95.9393 35.6956 97.7302 37.9048 97.7302H107.492C109.701 97.7302 111.492 95.9393 111.492 93.7302V48.9048C111.492 46.6956 109.701 44.9048 107.492 44.9048H80.127V39C80.127 36.7909 78.3362 35 76.127 35H47.8095Z"
|
|
23
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M47.8095 35C45.6004 35 43.8095 36.7909 43.8095 39V44.9048H37.9048C35.6956 44.9048 33.9048 46.6956 33.9048 48.9048V93.7302C33.9048 95.9393 35.6956 97.7302 37.9048 97.7302H107.492C109.701 97.7302 111.492 95.9393 111.492 93.7302V48.9048C111.492 46.6956 109.701 44.9048 107.492 44.9048H80.127V39C80.127 36.7909 78.3362 35 76.127 35H47.8095Z",
|
|
27
|
+
fill: "white"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M43.8095 44.9048V46.4048H45.3095V44.9048H43.8095ZM80.127 44.9048H78.627V46.4048H80.127V44.9048ZM45.3095 39C45.3095 37.6193 46.4288 36.5 47.8095 36.5V33.5C44.772 33.5 42.3095 35.9624 42.3095 39H45.3095ZM45.3095 44.9048V39H42.3095V44.9048H45.3095ZM37.9048 46.4048H43.8095V43.4048H37.9048V46.4048ZM35.4048 48.9048C35.4048 47.524 36.5241 46.4048 37.9048 46.4048V43.4048C34.8672 43.4048 32.4048 45.8672 32.4048 48.9048H35.4048ZM35.4048 93.7302V48.9048H32.4048V93.7302H35.4048ZM37.9048 96.2302C36.5241 96.2302 35.4048 95.1109 35.4048 93.7302H32.4048C32.4048 96.7677 34.8672 99.2302 37.9048 99.2302V96.2302ZM107.492 96.2302H37.9048V99.2302H107.492V96.2302ZM109.992 93.7302C109.992 95.1109 108.873 96.2302 107.492 96.2302V99.2302C110.53 99.2302 112.992 96.7677 112.992 93.7302H109.992ZM109.992 48.9048V93.7302H112.992V48.9048H109.992ZM107.492 46.4048C108.873 46.4048 109.992 47.524 109.992 48.9048H112.992C112.992 45.8672 110.53 43.4048 107.492 43.4048V46.4048ZM80.127 46.4048H107.492V43.4048H80.127V46.4048ZM78.627 39V44.9048H81.627V39H78.627ZM76.127 36.5C77.5077 36.5 78.627 37.6193 78.627 39H81.627C81.627 35.9624 79.1646 33.5 76.127 33.5V36.5ZM47.8095 36.5H76.127V33.5H47.8095V36.5Z",
|
|
30
|
+
fill: "#3B3552",
|
|
31
|
+
mask: "url(#path-2-inside-1_0_2389)"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
fillRule: "evenodd",
|
|
34
|
+
clipRule: "evenodd",
|
|
35
|
+
d: "M49.0937 38.3018C47.9892 38.3018 47.0937 39.1972 47.0937 40.3018V48.189H39.2065C38.102 48.189 37.2065 49.0844 37.2065 50.189V94.5186C37.2065 95.6231 38.102 96.5186 39.2065 96.5186H106.191C107.295 96.5186 108.191 95.6231 108.191 94.5186V50.189C108.191 49.0844 107.295 48.189 106.191 48.189H77.0188V40.3018C77.0188 39.1972 76.1233 38.3018 75.0188 38.3018H49.0937Z",
|
|
36
|
+
fill: "#3040D6",
|
|
37
|
+
fillOpacity: "0.05"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
39
|
+
cx: "104.041",
|
|
40
|
+
cy: "53.9616",
|
|
41
|
+
r: "15.6598",
|
|
42
|
+
fill: "#3040D6"
|
|
43
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
d: "M25.3562 58.4196C25.0926 56.4695 26.609 54.7344 28.5769 54.7344H123.423C125.391 54.7344 126.907 56.4695 126.644 58.4196L119.471 111.499C119.253 113.111 117.877 114.314 116.25 114.314H35.7498C34.1231 114.314 32.7469 113.111 32.5291 111.499L25.3562 58.4196Z",
|
|
45
|
+
fill: "white",
|
|
46
|
+
stroke: "#3B3552",
|
|
47
|
+
strokeWidth: "1.5"
|
|
48
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
49
|
+
fillRule: "evenodd",
|
|
50
|
+
clipRule: "evenodd",
|
|
51
|
+
d: "M117.401 86.1748C118.612 86.1748 119.546 87.2425 119.383 88.4426L116.66 108.595C116.439 110.232 115.041 111.454 113.389 111.454H38.6113C36.9587 111.454 35.5607 110.232 35.3394 108.595L32.6165 88.4426C32.4543 87.2425 33.3875 86.1748 34.5985 86.1748H117.401Z",
|
|
52
|
+
fill: "#3040D6",
|
|
53
|
+
fillOpacity: "0.05"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M60.3174 74.2066H91.6825",
|
|
56
|
+
stroke: "#3B3552",
|
|
57
|
+
strokeWidth: "1.5",
|
|
58
|
+
strokeLinecap: "round"
|
|
59
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
60
|
+
d: "M61.1431 82.4605H90.8574",
|
|
61
|
+
stroke: "#3B3552",
|
|
62
|
+
strokeWidth: "1.5",
|
|
63
|
+
strokeLinecap: "round"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
65
|
+
d: "M62.7935 90.7145H89.2062",
|
|
66
|
+
stroke: "#3B3552",
|
|
67
|
+
strokeWidth: "1.5",
|
|
68
|
+
strokeLinecap: "round"
|
|
69
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
70
|
+
d: "M21.2434 62.4001L20.5001 62.5001L20.5001 62.5001L21.2434 62.4001ZM20.4001 61.7568L20.5001 62.5001L20.5001 62.5001L20.4001 61.7568ZM24.0693 83.4152L24.8127 83.3152L24.0693 83.4152ZM23.426 84.2585L23.326 83.5152H23.326L23.426 84.2585ZM22.5827 83.6151L23.326 83.5152L22.5827 83.6151ZM19.7568 62.6L20.5001 62.5001V62.5001L19.7568 62.6ZM24.7781 88.6857L24.0348 88.7857L24.7781 88.6857ZM23.9348 88.0424L24.0348 88.7857L23.9348 88.0424ZM25.6568 95.2204L24.9135 95.3203L25.6568 95.2204ZM25.0135 96.0636L25.1134 96.8069L25.0135 96.0636ZM24.1702 95.4203L24.9135 95.3203L24.1702 95.4203ZM23.2915 88.8856L24.0348 88.7857L23.2915 88.8856ZM21.9867 62.3002C21.8763 61.4791 21.1212 60.9031 20.3002 61.0135L20.5001 62.5001L20.5001 62.5001L21.9867 62.3002ZM24.8127 83.3152L21.9867 62.3002L20.5001 62.5001L23.326 83.5152L24.8127 83.3152ZM23.5259 85.0018C24.347 84.8914 24.9231 84.1363 24.8127 83.3152L23.326 83.5152H23.326L23.5259 85.0018ZM21.8394 83.7151C21.9498 84.5361 22.7049 85.1122 23.5259 85.0018L23.326 83.5152H23.326L21.8394 83.7151ZM19.0135 62.7L21.8394 83.7151L23.326 83.5152L20.5001 62.5001L19.0135 62.7ZM20.3002 61.0135C19.4791 61.1239 18.9031 61.879 19.0135 62.7L20.5001 62.5001L20.5001 62.5001L20.3002 61.0135ZM25.5214 88.5858C25.411 87.7647 24.6559 87.1886 23.8349 87.299L24.0348 88.7857L25.5214 88.5858ZM26.4001 95.1204L25.5214 88.5858L24.0348 88.7857L24.9135 95.3203L26.4001 95.1204ZM25.1134 96.8069C25.9345 96.6965 26.5105 95.9414 26.4001 95.1204L24.9135 95.3203L25.1134 96.8069ZM23.4269 95.5202C23.5373 96.3413 24.2924 96.9173 25.1134 96.8069L24.9135 95.3203L23.4269 95.5202ZM22.5482 88.9856L23.4269 95.5202L24.9135 95.3203L24.0348 88.7857L22.5482 88.9856ZM23.8349 87.299C23.0138 87.4094 22.4378 88.1645 22.5482 88.9856L24.0348 88.7857L23.8349 87.299Z",
|
|
71
|
+
fill: "#3B3552"
|
|
72
|
+
}));
|
|
73
|
+
export default Folder;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const Folders = ({
|
|
3
|
+
width = 152,
|
|
4
|
+
height = 169
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 152 169",
|
|
9
|
+
version: "1.1",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
id: "Symbols",
|
|
13
|
+
stroke: "none",
|
|
14
|
+
strokeWidth: "1",
|
|
15
|
+
fill: "none",
|
|
16
|
+
fillRule: "evenodd"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
18
|
+
id: "Group",
|
|
19
|
+
transform: "translate(2.000000, 2.000000)"
|
|
20
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M74,124.060611 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663",
|
|
22
|
+
id: "Path-Copy-6",
|
|
23
|
+
stroke: "#3B3552",
|
|
24
|
+
strokeWidth: "3",
|
|
25
|
+
strokeLinecap: "round"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M80,75.4190948 C80,70.9185608 80,64.1677599 80,55.166692 L89.166692,46 L122.184615,46 C122.924232,46 123.52381,46.5995776 123.52381,47.3391941 C123.52381,68.5174474 123.52381,82.6975707 123.52381,89.8795641 L123.52381,98.4049324 C123.52381,98.9609384 123.52381,99.7949476 123.52381,100.90696 C123.52381,101.646576 122.924232,102.246154 122.184615,102.246154 C119.775905,102.246154 117.969372,102.246154 116.765016,102.246154 L107.980724,68.9485742 L80,75.4190948 Z",
|
|
28
|
+
id: "Path",
|
|
29
|
+
fill: "#3040D6",
|
|
30
|
+
fillOpacity: "0.2",
|
|
31
|
+
transform: "translate(101.761905, 74.123077) rotate(-345.000000) translate(-101.761905, -74.123077) "
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M80,75.4190948 C80,70.9185608 80,64.1677599 80,55.166692 L89.166692,46 L122.184615,46 C122.924232,46 123.52381,46.5995776 123.52381,47.3391941 C123.52381,68.5174474 123.52381,82.6975707 123.52381,89.8795641 L123.52381,98.4049324 L123.52381,98.4049324 C123.52381,98.9609384 123.52381,99.7949476 123.52381,100.90696 C123.52381,101.646576 122.924232,102.246154 122.184615,102.246154 C119.775905,102.246154 117.969372,102.246154 116.765016,102.246154",
|
|
34
|
+
id: "Path-Copy-7",
|
|
35
|
+
stroke: "#3B3552",
|
|
36
|
+
strokeWidth: "3",
|
|
37
|
+
transform: "translate(101.761905, 74.123077) rotate(-345.000000) translate(-101.761905, -74.123077) "
|
|
38
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39
|
+
d: "M96.001211,42.535856 L96.001211,50.4262472 C96.001211,51.1658637 95.4016334,51.7654413 94.6620169,51.7654413 L86.7369994,51.7654413",
|
|
40
|
+
id: "Path-Copy-10",
|
|
41
|
+
stroke: "#3B3552",
|
|
42
|
+
strokeWidth: "3",
|
|
43
|
+
transform: "translate(91.369105, 47.150649) rotate(-345.000000) translate(-91.369105, -47.150649) "
|
|
44
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
45
|
+
d: "M48.907368,38.345876 L48.907368,46.2362671 C48.907368,46.9758836 48.3077904,47.5754613 47.5681739,47.5754613 L39.6431564,47.5754613",
|
|
46
|
+
id: "Path-Copy-10",
|
|
47
|
+
stroke: "#3B3552",
|
|
48
|
+
strokeWidth: "3",
|
|
49
|
+
fill: "#3040D6",
|
|
50
|
+
fillOpacity: "0.2",
|
|
51
|
+
transform: "translate(44.275262, 42.960669) rotate(-15.000000) translate(-44.275262, -42.960669) "
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
d: "M40.6569874,54.4287231 C40.6569874,51.8308869 40.6569874,47.9341327 40.6569874,42.7384605 L49.8236794,33.5717685 L82.8416028,33.5717685 C83.5812193,33.5717685 84.1807969,34.1713461 84.1807969,34.9109626 C84.1807969,43.0635825 84.1807969,50.179161 84.1807969,56.257698",
|
|
54
|
+
id: "Path",
|
|
55
|
+
stroke: "#3B3552",
|
|
56
|
+
strokeWidth: "3",
|
|
57
|
+
transform: "translate(62.418892, 44.914733) rotate(-15.000000) translate(-62.418892, -44.914733) "
|
|
58
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
59
|
+
d: "M53.634268,124 L34,124 C32.8954305,124 32,123.104569 32,122 L32,62 C32,60.8954305 32.8954305,60 34,60 L53.5584816,60 C54.4193424,60 55.1836201,60.5508602 55.4558482,61.3675445 L58.3333333,70 L107,70 C108.104569,70 109,70.8954305 109,72 L109,122 C109,123.104569 108.104569,124 107,124 L74,124",
|
|
60
|
+
id: "Path",
|
|
61
|
+
stroke: "#3B3552",
|
|
62
|
+
strokeWidth: "3",
|
|
63
|
+
strokeLinecap: "round"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
65
|
+
x1: "32",
|
|
66
|
+
y1: "80.4611735",
|
|
67
|
+
x2: "96.5731",
|
|
68
|
+
y2: "80.4611735",
|
|
69
|
+
id: "Line-7",
|
|
70
|
+
stroke: "#3B3552",
|
|
71
|
+
strokeWidth: "3",
|
|
72
|
+
strokeLinecap: "round"
|
|
73
|
+
}))));
|
|
74
|
+
export default Folders;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const GithubLogo = ({
|
|
3
|
+
width = 72,
|
|
4
|
+
height = 71
|
|
5
|
+
}) => /*#__PURE__*/React.createElement("svg", {
|
|
6
|
+
width: width,
|
|
7
|
+
height: height,
|
|
8
|
+
viewBox: "0 0 72 71",
|
|
9
|
+
version: "1.1",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
id: "Symbols",
|
|
13
|
+
stroke: "none",
|
|
14
|
+
strokeWidth: "1",
|
|
15
|
+
fill: "none",
|
|
16
|
+
fillRule: "evenodd"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
18
|
+
id: "Atoms/Logotype/Github",
|
|
19
|
+
transform: "translate(0.000000, 1.000000)",
|
|
20
|
+
fill: "#0C1E29",
|
|
21
|
+
fillRule: "nonzero"
|
|
22
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M67.1013759,17.4238423 C63.8854852,11.9137922 59.5233349,7.55147781 54.0137768,4.33591517 C48.5033986,1.12018851 42.4877084,-0.487264789 35.9624419,-0.487264789 C29.4379954,-0.487264789 23.4203371,1.12068054 17.9111071,4.33591517 C12.4010569,7.5513138 8.03907062,11.9137922 4.82317995,17.4238423 C1.60778132,22.9337284 -4.26325641e-14,28.9505666 -4.26325641e-14,35.4741931 C-4.26325641e-14,43.3105484 2.28628702,50.3571999 6.86000911,56.6159516 C11.4332392,62.8751953 17.3411754,67.206348 24.5833257,69.6099015 C25.4263326,69.7663662 26.0503872,69.6563161 26.4561458,69.2825393 C26.8620683,68.9082705 27.0647836,68.4395325 27.0647836,67.8782933 C27.0647836,67.7846441 27.0567472,66.9421293 27.0411663,65.3497648 C27.0250934,63.7574004 27.017549,62.3682432 27.017549,61.1829493 L25.9405011,61.3692637 C25.253795,61.4950587 24.3874989,61.5483616 23.3416128,61.5332728 C22.2962187,61.518676 21.2109704,61.4091179 20.087344,61.2054186 C18.9632255,61.0035234 17.9176674,60.5352774 16.9498497,59.8016646 C15.9825239,59.0680518 15.2958178,58.1077785 14.8898952,56.9223206 L14.4216492,55.8447808 C14.1095399,55.1274049 13.6181686,54.3304846 12.9468793,53.4569721 C12.27559,52.5826395 11.5967563,51.9899106 10.9100501,51.6778013 L10.5821959,51.4431042 C10.3637358,51.2871316 10.1610205,51.0990131 9.97355809,50.880717 C9.78625968,50.6624209 9.64603189,50.4439607 9.55238269,50.2251726 C9.45856948,50.0062204 9.53630979,49.8266304 9.78642369,49.6857466 C10.0365376,49.5448628 10.4885467,49.476471 11.1444191,49.476471 L12.0805831,49.6163707 C12.7049658,49.7415097 13.4772847,50.1152865 14.3985239,50.7399972 C15.3192711,51.3642158 16.0761731,52.1757329 16.6693941,53.1742204 C17.387754,54.4544755 18.2532301,55.4300017 19.2682825,56.101291 C20.2825148,56.7725803 21.3051116,57.1076509 22.3350888,57.1076509 C23.3650661,57.1076509 24.2546515,57.0295826 25.0041731,56.874266 C25.7528747,56.7181293 26.4553257,56.4834322 27.1111982,56.1714869 C27.3921458,54.0790587 28.1570843,52.4716054 29.4053576,51.3479789 C27.6261868,51.1610086 26.0266059,50.8794049 24.605795,50.5049721 C23.1858041,50.1300473 21.7184146,49.5215735 20.2046105,48.6779106 C18.6899863,47.8353958 17.4335125,46.7891817 16.434861,45.5410723 C15.4360456,44.292307 14.616328,42.6528719 13.9768565,40.6242432 C13.3370569,38.5947944 13.0170752,36.2537284 13.0170752,33.600389 C13.0170752,29.8224391 14.2504237,26.6075325 16.7166287,23.9538651 C15.5613485,21.1135553 15.6704146,17.9294824 17.0441549,14.4019744 C17.9494852,14.1206988 19.2920638,14.3317785 21.0712346,15.0339015 C22.8507335,15.7363525 24.1536219,16.338102 24.9812118,16.8370177 C25.8088018,17.3357694 26.4718907,17.7584209 26.9714624,18.1011999 C29.8752437,17.2898468 32.8718542,16.8840883 35.9621139,16.8840883 C39.0523736,16.8840883 42.0496401,17.2898468 44.9535854,18.1011999 L46.7329203,16.9779015 C47.9497039,16.2283799 49.3865877,15.5415097 51.0401276,14.917127 C52.6946515,14.2930723 53.9598178,14.1211908 54.8343144,14.4024664 C56.2385604,17.9301384 56.3636993,21.1140473 55.2080911,23.9543571 C57.6741321,26.6080245 58.9079727,29.8237512 58.9079727,33.600881 C58.9079727,36.2542204 58.5868428,38.6026669 57.9480273,40.6476965 C57.3083918,42.6930541 56.4816219,44.3308491 55.4673895,45.5645256 C54.4520091,46.7980382 53.1874989,47.8360518 51.6736948,48.6784026 C50.1595626,49.5214095 48.6916811,50.1298833 47.2716902,50.5048081 C45.8510433,50.8797329 44.2514624,51.1615006 42.4722916,51.348799 C44.0949977,52.753045 44.9065148,54.9696281 44.9065148,57.9975644 L44.9065148,67.8769812 C44.9065148,68.4382204 45.1016856,68.9067944 45.4923554,69.2812272 C45.882533,69.655004 46.4987153,69.7650541 47.3417221,69.6084254 C54.5848565,67.2051999 60.4927927,62.8738833 65.0658588,56.6146395 C69.6384328,50.3558878 71.9255399,43.3092364 71.9255399,35.472881 C71.9238998,28.9500746 70.3152984,22.9337284 67.1013759,17.4238423 Z",
|
|
24
|
+
id: "Path"
|
|
25
|
+
}))));
|
|
26
|
+
export default GithubLogo;
|