@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,22 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const DocumentSearch: React.FC<Props> = ({ width = 152, height = 169 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 169" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<g id="Symbols" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
|
|
8
|
+
<g id="Group" transform="translate(2.000000, 2.000000)" stroke="#3B3552" strokeWidth="3">
|
|
9
|
+
<path d="M74,126.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" id="Path-Copy-4" strokeLinecap="round" />
|
|
10
|
+
<path d="M106,120.263384 C106,121.093743 106,122.339282 106,124 C106,125.104569 105.104569,126 104,126 L74,126" id="Path" strokeLinecap="round" />
|
|
11
|
+
<path d="M55,42.2162102 L55,54 C55,55.1045695 54.1045695,56 53,56 L41.1644979,56" id="Path" fill="#3040D6" fillOpacity="0.2" />
|
|
12
|
+
<path d="M56.5220968,126 L43,126 C41.8954305,126 41,125.104569 41,124 L41,55.6898628 L54.6898628,42 L104,42 C105.104569,42 106,42.8954305 106,44 C106,75.6283541 106,96.8054529 106,107.531297" id="Path" strokeLinecap="round" />
|
|
13
|
+
<circle id="Oval" fill="#3040D6" fillOpacity="0.2" cx="76" cy="84" r="18" />
|
|
14
|
+
<circle id="Oval-Copy-2" fill="#FFFFFFF" cx="76" cy="84" r="10" />
|
|
15
|
+
<rect id="Rectangle" fill="#3040D6" fillOpacity="0.2" transform="translate(105.316743, 113.185977) rotate(-315.000000) translate(-105.316743, -113.185977) " x="91.8167434" y="108.685977" width="27" height="9" rx="2" />
|
|
16
|
+
<line x1="88.5" y1="96.5" x2="95.4689509" y2="103.468951" id="Line-3" />
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
export default DocumentSearch
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const Drawer: React.FC<Props> = ({ width = 152, height = 152 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<circle cx="76" cy="76" r="76" fill="white" />
|
|
8
|
+
<circle cx="109.823" cy="58.5366" r="16.1772" fill="#3040D6" />
|
|
9
|
+
<circle cx="109.823" cy="58.5366" r="16.1772" fill="#3040D6" />
|
|
10
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" fill="white" stroke="#3B3552" strokeWidth="1.5" />
|
|
11
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" fill="#3040D6" fillOpacity="0.05" />
|
|
12
|
+
<path 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" fill="#3B3552" />
|
|
13
|
+
<mask id="path-7-inside-1_0_2344" fill="white">
|
|
14
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" />
|
|
15
|
+
</mask>
|
|
16
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" fill="white" />
|
|
17
|
+
<path 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" fill="#3B3552" mask="url(#path-7-inside-1_0_2344)" />
|
|
18
|
+
<path d="M76.3396 24V39.3495" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
19
|
+
<path d="M96.4296 30.4453L88.7549 43.7384" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
20
|
+
<path d="M56.25 30.4453L63.9248 43.7384" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
21
|
+
<path d="M70.5 125.5H87.5" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
22
|
+
<path d="M92.1944 125.5H98.8056" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
23
|
+
</svg>
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
export default Drawer
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const FileSearch: React.FC<Props> = ({ width = 152, height = 169 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 169" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<g id="Symbols" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd" strokeLinecap="round" strokeLinejoin="round">
|
|
8
|
+
<g id="Group-10" transform="translate(2.000000, 2.000000)">
|
|
9
|
+
<path 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" id="Path-Copy-5" stroke="#3B3552" strokeWidth="3" />
|
|
10
|
+
<g id="Group" transform="translate(26.000000, 44.000000)" fill="#3040D6" stroke="#3B3552" strokeWidth="0.5">
|
|
11
|
+
<path 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" id="Combined-Shape" />
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
export default FileSearch
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const FlagInCog: React.FC<Props> = ({ width = 152, height = 169 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 169" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<g id="Symbols" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
|
|
8
|
+
<g id="Group" transform="translate(2.000000, 2.000000)" stroke="#3B3552" strokeWidth="3">
|
|
9
|
+
<path 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" id="Path-Copy-3" strokeLinecap="round" />
|
|
10
|
+
<path 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" id="Path" fill="#3040D6" fillOpacity="0.2" />
|
|
11
|
+
<line x1="50.5" y1="117.664666" x2="50.5" y2="46" id="Line-2" strokeLinecap="round" />
|
|
12
|
+
<path 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" id="Path" fill="#FFFFFF" fillOpacity={0} />
|
|
13
|
+
<path 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" id="Path" strokeLinecap="round" />
|
|
14
|
+
<path 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" id="Path" strokeLinecap="round" />
|
|
15
|
+
<line x1="82.5" y1="19.5" x2="82.5" y2="32.5278784" id="Line-6" strokeLinecap="round" />
|
|
16
|
+
<line x1="82.5" y1="19.5" x2="82.5" y2="32.5278784" id="Line-6-Copy" strokeLinecap="round" transform="translate(82.500000, 26.000000) rotate(-270.000000) translate(-82.500000, -26.000000) " />
|
|
17
|
+
<line x1="30.5" y1="40.3" x2="30.5" y2="48.1167271" id="Line-6" strokeLinecap="round" />
|
|
18
|
+
<line x1="30.4916365" y1="40.2916365" x2="30.4916365" y2="48.1083635" id="Line-6-Copy" strokeLinecap="round" transform="translate(30.491636, 44.200000) rotate(-270.000000) translate(-30.491636, -44.200000) " />
|
|
19
|
+
<line x1="17.5" y1="78.4333333" x2="17.5" y2="89.7241613" id="Line-6" strokeLinecap="round" />
|
|
20
|
+
<line x1="17.4879193" y1="78.4212527" x2="17.4879193" y2="89.7120807" id="Line-6-Copy" strokeLinecap="round" transform="translate(17.487919, 84.066667) rotate(-270.000000) translate(-17.487919, -84.066667) " />
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
export default FlagInCog
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const Folder: React.FC<Props> = ({ width = 152, height = 152 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<circle cx="76" cy="76" r="76" fill="white" />
|
|
8
|
+
<mask id="path-2-inside-1_0_2389" fill="white">
|
|
9
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" />
|
|
10
|
+
</mask>
|
|
11
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" fill="white" />
|
|
12
|
+
<path 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" fill="#3B3552" mask="url(#path-2-inside-1_0_2389)" />
|
|
13
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" fill="#3040D6" fillOpacity="0.05" />
|
|
14
|
+
<circle cx="104.041" cy="53.9616" r="15.6598" fill="#3040D6" />
|
|
15
|
+
<path 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" fill="white" stroke="#3B3552" strokeWidth="1.5" />
|
|
16
|
+
<path fillRule="evenodd" clipRule="evenodd" 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" fill="#3040D6" fillOpacity="0.05" />
|
|
17
|
+
<path d="M60.3174 74.2066H91.6825" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
18
|
+
<path d="M61.1431 82.4605H90.8574" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
19
|
+
<path d="M62.7935 90.7145H89.2062" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
20
|
+
<path 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" fill="#3B3552" />
|
|
21
|
+
</svg>
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
export default Folder
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const Folders: React.FC<Props> = ({ width = 152, height = 169 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 169" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<g id="Symbols" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
|
|
8
|
+
<g id="Group" transform="translate(2.000000, 2.000000)">
|
|
9
|
+
<path 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" id="Path-Copy-6" stroke="#3B3552" strokeWidth="3" strokeLinecap="round" />
|
|
10
|
+
<path 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" id="Path" fill="#3040D6" fillOpacity="0.2" transform="translate(101.761905, 74.123077) rotate(-345.000000) translate(-101.761905, -74.123077) " />
|
|
11
|
+
<path 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" id="Path-Copy-7" stroke="#3B3552" strokeWidth="3" transform="translate(101.761905, 74.123077) rotate(-345.000000) translate(-101.761905, -74.123077) " />
|
|
12
|
+
<path 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" id="Path-Copy-10" stroke="#3B3552" strokeWidth="3" transform="translate(91.369105, 47.150649) rotate(-345.000000) translate(-91.369105, -47.150649) " />
|
|
13
|
+
<path 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" id="Path-Copy-10" stroke="#3B3552" strokeWidth="3" fill="#3040D6" fillOpacity="0.2" transform="translate(44.275262, 42.960669) rotate(-15.000000) translate(-44.275262, -42.960669) " />
|
|
14
|
+
<path 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" id="Path" stroke="#3B3552" strokeWidth="3" transform="translate(62.418892, 44.914733) rotate(-15.000000) translate(-62.418892, -44.914733) " />
|
|
15
|
+
<path 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" id="Path" stroke="#3B3552" strokeWidth="3" strokeLinecap="round" />
|
|
16
|
+
<line x1="32" y1="80.4611735" x2="96.5731" y2="80.4611735" id="Line-7" stroke="#3B3552" strokeWidth="3" strokeLinecap="round" />
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
export default Folders
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const GithubLogo: React.FC<Props> = ({ width = 72, height = 71 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 72 71" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<g id="Symbols" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
|
|
8
|
+
<g id="Atoms/Logotype/Github" transform="translate(0.000000, 1.000000)" fill="#0C1E29" fillRule="nonzero">
|
|
9
|
+
<path 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" id="Path" />
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
export default GithubLogo
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const IdentityCard: React.FC<Props> = ({ width = 152, height = 152 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<circle cx="76" cy="76" r="76" fill="white" />
|
|
8
|
+
<path d="M28.4179 58.2438C27.9534 56.51 28.9823 54.7279 30.716 54.2634L85.8189 39.4986C87.5527 39.034 89.3348 40.0629 89.7994 41.7967L108.142 110.251C108.606 111.985 107.577 113.767 105.844 114.231L50.7406 128.996C49.0069 129.461 47.2248 128.432 46.7602 126.698L28.4179 58.2438Z" fill="white" stroke="#3B3552" strokeWidth="1.5" />
|
|
9
|
+
<path d="M30.4691 85.2909L30.6632 86.0153L31.3877 85.8212L31.1935 85.0968L30.4691 85.2909ZM28.4416 77.7241L29.166 77.53L28.9719 76.8055L28.2475 76.9996L28.4416 77.7241ZM29.0202 85.6791L28.2958 85.8732L28.4899 86.5977L29.2143 86.4035L29.0202 85.6791ZM26.9927 78.1123L26.7986 77.3879L26.0741 77.582L26.2683 78.3064L26.9927 78.1123ZM23.4533 59.1076L24.1778 58.9135L23.4533 59.1076ZM28.5798 50.2282L28.7739 50.9526L29.4984 50.7585L29.3043 50.0341L28.5798 50.2282ZM25.6806 67.4201L24.9562 67.6142L25.6806 67.4201ZM27.2716 73.3575L27.4657 74.082L28.1901 73.8879L27.996 73.1634L27.2716 73.3575ZM25.8227 73.7458L25.0982 73.9399L25.2924 74.6643L26.0168 74.4702L25.8227 73.7458ZM24.2317 67.8083L24.9562 67.6142L24.2317 67.8083ZM22.0044 59.4958L21.28 59.6899L22.0044 59.4958ZM28.1916 48.7793L28.9161 48.5852L28.7219 47.8607L27.9975 48.0549L28.1916 48.7793ZM31.1935 85.0968L29.166 77.53L27.7171 77.9182L29.7447 85.485L31.1935 85.0968ZM29.2143 86.4035L30.6632 86.0153L30.275 84.5664L28.8261 84.9547L29.2143 86.4035ZM26.2683 78.3064L28.2958 85.8732L29.7447 85.485L27.7171 77.9182L26.2683 78.3064ZM28.2475 76.9996L26.7986 77.3879L27.1868 78.8368L28.6357 78.4485L28.2475 76.9996ZM24.1778 58.9135C23.2486 55.4459 25.3064 51.8818 28.7739 50.9526L28.3857 49.5037C24.118 50.6473 21.5853 55.034 22.7289 59.3017L24.1778 58.9135ZM26.4051 67.2259L24.1778 58.9135L22.7289 59.3017L24.9562 67.6142L26.4051 67.2259ZM27.996 73.1634L26.4051 67.2259L24.9562 67.6142L26.5471 73.5516L27.996 73.1634ZM26.0168 74.4702L27.4657 74.082L27.0775 72.6331L25.6286 73.0213L26.0168 74.4702ZM23.5073 68.0024L25.0982 73.9399L26.5471 73.5516L24.9562 67.6142L23.5073 68.0024ZM21.28 59.6899L23.5073 68.0024L24.9562 67.6142L22.7289 59.3017L21.28 59.6899ZM27.9975 48.0549C22.9296 49.4128 19.922 54.622 21.28 59.6899L22.7289 59.3017C21.5853 55.034 24.118 50.6473 28.3857 49.5037L27.9975 48.0549ZM29.3043 50.0341L28.9161 48.5852L27.4672 48.9734L27.8554 50.4223L29.3043 50.0341Z" fill="#3B3552" />
|
|
10
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M31.2413 58.9455C30.9554 57.8786 31.5886 56.7819 32.6555 56.496L86.1244 42.1691C87.1914 41.8832 88.288 42.5164 88.5739 43.5833L106.165 109.235C106.451 110.302 105.818 111.399 104.751 111.685L51.2822 126.012C50.2153 126.298 49.1186 125.665 48.8327 124.598L31.2413 58.9455Z" fill="#3040D6" fillOpacity="0.05" />
|
|
11
|
+
<mask id="path-5-inside-1_0_2335" fill="white">
|
|
12
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M68.2148 32.6172C66.0057 32.6172 64.2148 34.4081 64.2148 36.6172V40.748H51.9531C49.744 40.748 47.9531 42.5389 47.9531 44.748V115.617C47.9531 117.826 49.744 119.617 51.9531 119.617H109C111.209 119.617 113 117.826 113 115.617V44.748C113 42.5389 111.209 40.748 109 40.748H96.7382V36.6172C96.7382 34.408 94.9473 32.6172 92.7382 32.6172H68.2148Z" />
|
|
13
|
+
</mask>
|
|
14
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M68.2148 32.6172C66.0057 32.6172 64.2148 34.4081 64.2148 36.6172V40.748H51.9531C49.744 40.748 47.9531 42.5389 47.9531 44.748V115.617C47.9531 117.826 49.744 119.617 51.9531 119.617H109C111.209 119.617 113 117.826 113 115.617V44.748C113 42.5389 111.209 40.748 109 40.748H96.7382V36.6172C96.7382 34.408 94.9473 32.6172 92.7382 32.6172H68.2148Z" fill="white" />
|
|
15
|
+
<path d="M64.2148 40.748V42.248H65.7148V40.748H64.2148ZM96.7382 40.748H95.2382V42.248H96.7382V40.748ZM65.7148 36.6172C65.7148 35.2365 66.8341 34.1172 68.2148 34.1172V31.1172C65.1772 31.1172 62.7148 33.5796 62.7148 36.6172H65.7148ZM65.7148 40.748V36.6172H62.7148V40.748H65.7148ZM51.9531 42.248H64.2148V39.248H51.9531V42.248ZM49.4531 44.748C49.4531 43.3673 50.5724 42.248 51.9531 42.248V39.248C48.9156 39.248 46.4531 41.7105 46.4531 44.748H49.4531ZM49.4531 115.617V44.748H46.4531V115.617H49.4531ZM51.9531 118.117C50.5724 118.117 49.4531 116.998 49.4531 115.617H46.4531C46.4531 118.655 48.9156 121.117 51.9531 121.117V118.117ZM109 118.117H51.9531V121.117H109V118.117ZM111.5 115.617C111.5 116.998 110.381 118.117 109 118.117V121.117C112.037 121.117 114.5 118.655 114.5 115.617H111.5ZM111.5 44.748V115.617H114.5V44.748H111.5ZM109 42.248C110.381 42.248 111.5 43.3673 111.5 44.748H114.5C114.5 41.7105 112.037 39.248 109 39.248V42.248ZM96.7382 42.248H109V39.248H96.7382V42.248ZM95.2382 36.6172V40.748H98.2382V36.6172H95.2382ZM92.7382 34.1172C94.1189 34.1172 95.2382 35.2365 95.2382 36.6172H98.2382C98.2382 33.5796 95.7757 31.1172 92.7382 31.1172V34.1172ZM68.2148 34.1172H92.7382V31.1172H68.2148V34.1172Z" fill="#3B3552" mask="url(#path-5-inside-1_0_2335)" />
|
|
16
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M105.906 73.3885C107.826 72.8277 109.747 74.2677 109.747 76.2682V114.454C109.747 115.352 109.057 116.08 108.206 116.08H88.3546C86.6977 116.08 85.3545 114.737 85.3546 113.08L85.3551 95.1785C85.3551 93.8837 86.1866 92.7385 87.3983 92.2821C88.6032 91.8282 90.0603 91.2312 90.9438 90.6994C94.6727 88.4549 97.6224 85.0474 99.2908 80.979C99.7284 79.9121 100.131 78.1259 100.4 76.7646C100.625 75.6277 101.448 74.6906 102.56 74.3657L105.906 73.3885Z" fill="#3040D6" fillOpacity="0.05" />
|
|
17
|
+
<path d="M69.0928 97.2571H91.8591" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
18
|
+
<path d="M69.0928 105.388H91.8591" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
19
|
+
<circle cx="80.4762" cy="44.0006" r="4.8785" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
20
|
+
<circle cx="80.4765" cy="73.2714" r="16.2617" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
21
|
+
<path d="M98.9221 61.2555L98.2941 61.6655L98.9221 61.2555ZM101.341 66.2406L100.631 66.48L101.341 66.2406ZM100.87 67.1908L100.631 66.48L100.87 67.1908ZM99.9198 66.7195L99.209 66.9589H99.209L99.9198 66.7195ZM97.666 62.0754L97.038 62.4854L97.666 62.0754ZM88.6873 52.8425L88.4074 53.5383V53.5383L88.6873 52.8425ZM87.7116 53.2584L88.4074 53.5383L88.4074 53.5383L87.7116 53.2584ZM96.5617 58.2454L96.0138 58.7575L96.5617 58.2454ZM96.5259 59.3054L97.038 59.8534H97.038L96.5259 59.3054ZM95.4658 59.2696L96.0138 58.7575L96.0138 58.7575L95.4658 59.2696ZM88.1275 54.2341L88.4074 53.5383H88.4074L88.1275 54.2341ZM99.5502 60.8456C99.0974 60.1519 98.1679 59.9566 97.4742 60.4094L98.2941 61.6655L99.5502 60.8456ZM102.052 66.0012C101.434 64.1664 100.589 62.4367 99.5502 60.8456L98.2941 61.6655C99.2643 63.1519 100.054 64.7672 100.631 66.48L102.052 66.0012ZM101.109 67.9015C101.894 67.6371 102.316 66.7863 102.052 66.0012L100.631 66.48L101.109 67.9015ZM99.209 66.9589C99.4734 67.744 100.324 68.166 101.109 67.9015L100.631 66.48L99.209 66.9589ZM97.038 62.4854C97.9398 63.867 98.6731 65.3679 99.209 66.9589L100.631 66.48C100.054 64.7672 99.2643 63.1519 98.2941 61.6655L97.038 62.4854ZM97.4742 60.4094C96.7805 60.8622 96.5852 61.7916 97.038 62.4854L98.2941 61.6655L97.4742 60.4094ZM88.9672 52.1467C88.1987 51.8375 87.325 52.2099 87.0158 52.9785L88.4074 53.5383L88.4074 53.5383L88.9672 52.1467ZM97.1097 57.7333C94.8562 55.3219 92.0832 53.4001 88.9672 52.1467L88.4074 53.5383C91.3167 54.7086 93.9076 56.5037 96.0138 58.7575L97.1097 57.7333ZM97.038 59.8534C97.6432 59.2877 97.6753 58.3385 97.1097 57.7333L96.0138 58.7575L96.0138 58.7575L97.038 59.8534ZM94.9179 59.7816C95.4835 60.3869 96.4327 60.419 97.038 59.8534L96.0138 58.7575V58.7575L94.9179 59.7816ZM87.8476 54.9299C90.5503 56.0171 92.959 57.6856 94.9179 59.7816L96.0138 58.7575C93.9076 56.5037 91.3167 54.7086 88.4074 53.5383L87.8476 54.9299ZM87.0158 52.9785C86.7066 53.747 87.079 54.6207 87.8476 54.9299L88.4074 53.5383L88.4074 53.5383L87.0158 52.9785Z" fill="#3B3552" />
|
|
22
|
+
<circle cx="80.4763" cy="70.0193" r="6.50467" fill="#3040D6" />
|
|
23
|
+
<path d="M70.501 86.0272C71.947 81.9126 75.867 78.9629 80.4758 78.9629C85.0973 78.9629 89.0261 81.9288 90.4625 86.0611" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
24
|
+
<path d="M69.2607 23.6747L69.9119 23.3026L69.2607 23.6747ZM68.2374 23.3957L67.8653 22.7445H67.8653L68.2374 23.3957ZM79.0094 40.735L78.3582 41.1071H78.3582L79.0094 40.735ZM81.3142 41.3635L81.6863 42.0147H81.6863L81.3142 41.3635ZM81.9427 40.735L82.5939 41.1071L81.9427 40.735ZM82.3159 40.0819L81.6647 39.7098H81.6647L82.3159 40.0819ZM82.5825 39.6154L83.2337 39.9875H83.2337L82.5825 39.6154ZM83.6058 39.3363L83.9779 38.6851L83.6058 39.3363ZM83.8848 40.3596L84.536 40.7317V40.7317L83.8848 40.3596ZM83.6183 40.8261L82.9671 40.454H82.9671L83.6183 40.8261ZM83.2451 41.4792L82.5939 41.1071L83.2451 41.4792ZM82.0584 42.6659L82.4305 43.3171L82.0584 42.6659ZM77.707 41.4792L78.3582 41.1071L77.707 41.4792ZM67.9583 24.419L67.3071 24.7911H67.3071L67.9583 24.419ZM96.5049 18.2746L97.1561 18.6467V18.6467L96.5049 18.2746ZM96.2258 17.2513L96.5979 16.6001V16.6001L96.2258 17.2513ZM87.7652 33.5689L88.4164 33.941L87.7652 33.5689ZM86.742 33.848L87.1141 33.1968H87.1141L86.742 33.848ZM86.4629 32.8247L85.8117 32.4526L86.4629 32.8247ZM95.2025 17.5304L95.8537 17.9025V17.9025L95.2025 17.5304ZM69.9119 23.3026C69.5009 22.5834 68.5846 22.3335 67.8653 22.7445L68.6095 24.0468H68.6095L69.9119 23.3026ZM79.6606 40.3629L69.9119 23.3026L68.6095 24.0468L78.3582 41.1071L79.6606 40.3629ZM80.9421 40.7124C80.4917 40.9697 79.9179 40.8132 79.6606 40.3629L78.3582 41.1071C79.0266 42.2767 80.5166 42.6831 81.6863 42.0147L80.9421 40.7124ZM81.2916 40.3629C81.2084 40.5085 81.0877 40.6291 80.9421 40.7124L81.6863 42.0147C82.0644 41.7986 82.3778 41.4852 82.5939 41.1071L81.2916 40.3629ZM81.6647 39.7098L81.2916 40.3629L82.5939 41.1071L82.9671 40.454L81.6647 39.7098ZM81.9313 39.2433L81.6647 39.7098L82.9671 40.454L83.2337 39.9875L81.9313 39.2433ZM83.9779 38.6851C83.2586 38.2741 82.3423 38.524 81.9313 39.2433L83.2337 39.9875L83.9779 38.6851ZM84.536 40.7317C84.947 40.0124 84.6972 39.0962 83.9779 38.6851L83.2337 39.9875H83.2337L84.536 40.7317ZM84.2695 41.1982L84.536 40.7317L83.2337 39.9875L82.9671 40.454L84.2695 41.1982ZM83.8963 41.8513L84.2695 41.1982L82.9671 40.454L82.5939 41.1071L83.8963 41.8513ZM82.4305 43.3171C83.0412 42.9681 83.5473 42.462 83.8963 41.8513L82.5939 41.1071C82.3778 41.4852 82.0644 41.7986 81.6863 42.0147L82.4305 43.3171ZM77.0558 41.8513C78.1352 43.7402 80.5415 44.3965 82.4305 43.3171L81.6863 42.0147C80.5166 42.6831 79.0266 42.2767 78.3582 41.1071L77.0558 41.8513ZM67.3071 24.7911L77.0558 41.8513L78.3582 41.1071L68.6095 24.0468L67.3071 24.7911ZM67.8653 22.7445C67.146 23.1555 66.8961 24.0718 67.3071 24.7911L68.6095 24.0468L67.8653 22.7445ZM97.1561 18.6467C97.5671 17.9274 97.3172 17.0111 96.5979 16.6001L95.8537 17.9025V17.9025L97.1561 18.6467ZM88.4164 33.941L97.1561 18.6467L95.8537 17.9025L87.1141 33.1968L88.4164 33.941ZM86.3698 34.4992C87.0891 34.9102 88.0054 34.6603 88.4164 33.941L87.1141 33.1968H87.1141L86.3698 34.4992ZM85.8117 32.4526C85.4007 33.1719 85.6506 34.0882 86.3699 34.4992L87.1141 33.1968V33.1968L85.8117 32.4526ZM94.5513 17.1583L85.8117 32.4526L87.1141 33.1968L95.8537 17.9025L94.5513 17.1583ZM96.5979 16.6001C95.8786 16.1891 94.9623 16.439 94.5513 17.1583L95.8537 17.9025L95.8537 17.9025L96.5979 16.6001Z" fill="#3B3552" />
|
|
25
|
+
</svg>
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
export default IdentityCard
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export { default as Accept } from './accept.jsx'
|
|
2
|
+
export { default as AdminJSLogo } from './adminjs-logo.jsx'
|
|
3
|
+
export { default as Astronaut } from './astronaut.jsx'
|
|
4
|
+
export { default as Bag } from './bag.jsx'
|
|
5
|
+
export { default as Beware } from './beware.jsx'
|
|
6
|
+
export { default as Box } from './box.jsx'
|
|
7
|
+
export { default as Calendar } from './calendar.jsx'
|
|
8
|
+
export { default as Cancel } from './cancel.jsx'
|
|
9
|
+
export { default as Cards } from './cards.jsx'
|
|
10
|
+
export { default as Clip } from './clip.jsx'
|
|
11
|
+
export { default as Cloud } from './cloud.jsx'
|
|
12
|
+
export { default as Cup } from './cup.jsx'
|
|
13
|
+
export { default as Details } from './details.jsx'
|
|
14
|
+
export { default as Docs } from './docs.jsx'
|
|
15
|
+
export { default as DocumentCheck } from './document-check.jsx'
|
|
16
|
+
export { default as DocumentSearch } from './document-search.jsx'
|
|
17
|
+
export { default as Drawer } from './drawer.jsx'
|
|
18
|
+
export { default as FileSearch } from './file-search.jsx'
|
|
19
|
+
export { default as FlagInCog } from './flag-in-cog.jsx'
|
|
20
|
+
export { default as Folder } from './folder.jsx'
|
|
21
|
+
export { default as Folders } from './folders.jsx'
|
|
22
|
+
export { default as GithubLogo } from './github-logo.jsx'
|
|
23
|
+
export { default as IdentityCard } from './identity-card.jsx'
|
|
24
|
+
export { default as Launch } from './launch.jsx'
|
|
25
|
+
export { default as Moon } from './moon.jsx'
|
|
26
|
+
export { default as NotFound } from './not-found.jsx'
|
|
27
|
+
export { default as Notebook } from './notebook.jsx'
|
|
28
|
+
export { default as Padlock } from './padlock.jsx'
|
|
29
|
+
export { default as Photos } from './photos.jsx'
|
|
30
|
+
export { default as Planet } from './planet.jsx'
|
|
31
|
+
export { default as Plug } from './plug.jsx'
|
|
32
|
+
export { default as Rocket } from './rocket.jsx'
|
|
33
|
+
export { default as RocketNew } from './rocket-new.jsx'
|
|
34
|
+
export { default as SlackLogo } from './slack-logo.jsx'
|
|
35
|
+
export { default as Tags } from './tags.jsx'
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const Launch: React.FC<Props> = ({ width = 165, height = 184 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 165 184" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<g id="Symbols" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
|
|
8
|
+
<g id="Group" transform="translate(2.000000, 1.000000)" fillRule="nonzero">
|
|
9
|
+
<path d="M80.5,163.67556 L80.5,177.071797 C80.5,179.280936 78.709139,181.071797 76.5,181.071797 C75.7978533,181.071797 75.1080768,180.886972 74.5,180.535898 L5.39265015,140.636751 L5.39265015,140.636751 C2.29863938,138.850423 0.39265015,135.549153 0.39265015,131.976497 L0.39265015,51.0235027 C0.39265015,47.4508468 2.29863938,44.1495766 5.39265015,42.3632487 L75.5,1.88675135 C78.5940108,0.100423396 82.4059892,0.100423396 85.5,1.88675135 L155.60735,42.3632487 C158.701361,44.1495766 160.60735,47.4508468 160.60735,51.0235027 L160.60735,131.976497 C160.60735,135.549153 158.701361,138.850423 155.60735,140.636751 L94.0407624,176.182237" id="Path" stroke="#3B3552" strokeWidth="3" strokeLinecap="round" />
|
|
10
|
+
<g id="Group-11" transform="translate(47.000000, 21.000000)" stroke="#3B3552" strokeWidth="2">
|
|
11
|
+
<path d="M53.9942579,39.5219471 L55.8288797,35.8527035 C56.3228582,34.8647465 57.5242043,34.4642978 58.5121613,34.9582763 C58.8992161,35.1518037 59.2130611,35.4656487 59.4065885,35.8527035 L61.2412103,39.5219471 C62.5603369,42.1602003 63.2470936,45.0693486 63.2470936,48.0190054 L63.2470936,122.095329 C63.2470936,122.647613 62.7993784,123.095329 62.2470936,123.095329 L52.9883746,123.095329 C52.4360898,123.095329 51.9883746,122.647613 51.9883746,122.095329 L51.9883746,48.0190054 C51.9883746,45.0693486 52.6751313,42.1602003 53.9942579,39.5219471 Z" id="Rectangle" fill="#FFFFFF" strokeLinejoin="round" />
|
|
12
|
+
<path d="M5.75878973,39.5219471 L7.59341152,35.8527035 C8.08739002,34.8647465 9.2887361,34.4642978 10.2766931,34.9582763 C10.6637479,35.1518037 10.9775929,35.4656487 11.1711203,35.8527035 L13.0057421,39.5219471 C14.3248687,42.1602003 15.0116254,45.0693486 15.0116254,48.0190054 L15.0116254,122.095329 C15.0116254,122.647613 14.5639102,123.095329 14.0116254,123.095329 L4.75290636,123.095329 C4.20062161,123.095329 3.75290636,122.647613 3.75290636,122.095329 L3.75290636,48.0190054 C3.75290636,45.0693486 4.43966311,42.1602003 5.75878973,39.5219471 Z" id="Rectangle" fill="#FFFFFF" strokeLinejoin="round" />
|
|
13
|
+
<path d="M26.5571232,7.82445311 L30.2061982,2.5285507 C31.4596375,0.709434189 33.9504362,0.250862247 35.7695527,1.5043016 C36.1704572,1.78053976 36.5175637,2.12764628 36.7938018,2.5285507 L40.4428768,7.82445311 C44.9645408,14.386744 47.3857535,22.1679451 47.3857535,30.1372052 L47.3857535,93.8226591 L47.3857535,93.8226591 L19.6142465,93.8226591 L19.6142465,30.1372052 C19.6142465,22.1679451 22.0354592,14.386744 26.5571232,7.82445311 Z" id="Rectangle" fill="#3040D6" strokeLinejoin="round" />
|
|
14
|
+
<path d="M40.5745738,117.355362 L41.6399673,64.4923457 L45.0007027,77.8303078 C46.8757338,85.2718617 50.6334929,92.105976 55.9127551,97.6757028 L59.211122,101.155546 C62.0658223,104.167311 63.9962059,107.93508 64.7730365,112.011424 L65.5485066,116.080629 C65.5463599,116.477108 65.4504565,116.810566 65.2566953,117.04474 C65.0889845,117.247429 64.8478844,117.355362 64.582866,117.355362 L40.5745738,117.355362 Z" id="Path-3" fill="#3040D6" />
|
|
15
|
+
<path d="M1.02035692,117.355362 L2.08575042,64.4923457 L5.44648581,77.8303078 C7.32151692,85.2718617 11.079276,92.105976 16.3585383,97.6757028 L19.6569052,101.155546 C22.5116054,104.167311 24.441989,107.93508 25.2188196,112.011424 L25.9942897,116.080629 C25.992143,116.477108 25.8962396,116.810566 25.7024785,117.04474 C25.5347676,117.247429 25.2936675,117.355362 25.0286491,117.355362 L1.02035692,117.355362 Z" id="Path-3-Copy" fill="#3040D6" transform="translate(13.722892, 87.691223) scale(-1, 1) translate(-13.722892, -87.691223) " />
|
|
16
|
+
<path d="M26.9474568,46.6158047 L29.0688728,42.5574438 C30.348114,40.1101998 33.3690271,39.1633464 35.816271,40.4425876 C36.7204907,40.9152479 37.4584669,41.6532241 37.9311272,42.5574438 L40.0525432,46.6158047 C41.8462831,50.0473072 42.7831325,53.8618634 42.7831325,57.7339058 L42.7831325,122.875685 L42.7831325,122.875685 L24.2168675,122.875685 L24.2168675,57.7339058 C24.2168675,53.8618634 25.1537169,50.0473072 26.9474568,46.6158047 Z" id="Rectangle" fill="#FFFFFF" strokeLinejoin="round" />
|
|
17
|
+
<path d="M46.626506,125.104601 L20.373494,125.104601 L20.373494,118.032312 C20.373494,116.079353 21.1650869,114.311281 22.4449195,113.031448 C23.7247521,111.751616 25.4928244,110.960023 27.4457831,110.960023 L39.5542169,110.960023 C41.5071756,110.960023 43.2752479,111.751616 44.5550805,113.031448 C45.8349131,114.311281 46.626506,116.079353 46.626506,118.032312 L46.626506,125.104601 Z" id="Rectangle" fill="#FFFFFF" />
|
|
18
|
+
<line x1="33.5" y1="101.484119" x2="33.5" y2="129.203332" id="Line" fill="#3040D6" fillOpacity="0.2" strokeLinecap="round" />
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
23
|
+
)
|
|
24
|
+
export default Launch
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
const Moon: React.FC<Props> = ({ width = 260, height = 260 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 260 260" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<defs>
|
|
8
|
+
<circle id="path-1" cx="106" cy="106" r="106" />
|
|
9
|
+
<filter x="-17.0%" y="-17.0%" width="134.0%" height="134.0%" filterUnits="objectBoundingBox" id="filter-2">
|
|
10
|
+
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1" />
|
|
11
|
+
<feGaussianBlur stdDeviation="12" in="shadowOffsetOuter1" result="shadowBlurOuter1" />
|
|
12
|
+
<feColorMatrix values="0 0 0 0 0.958112299 0 0 0 0 0.910577834 0 0 0 0 0.855913579 0 0 0 1 0" type="matrix" in="shadowBlurOuter1" />
|
|
13
|
+
</filter>
|
|
14
|
+
<circle id="path-3" cx="106" cy="106" r="106" />
|
|
15
|
+
</defs>
|
|
16
|
+
<g id="Main-Templates" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
|
|
17
|
+
<g id="Group-12" transform="translate(24.000000, 24.000000)">
|
|
18
|
+
<g id="Oval">
|
|
19
|
+
<use fill="black" fillOpacity="1" filter="url(#filter-2)" href="#path-1" />
|
|
20
|
+
<use fill="#F4E8DB" fillRule="evenodd" href="#path-1" />
|
|
21
|
+
</g>
|
|
22
|
+
<g id="Path-7">
|
|
23
|
+
<mask id="mask-4" fill="white">
|
|
24
|
+
<use href="#path-3" />
|
|
25
|
+
</mask>
|
|
26
|
+
<use id="Mask" fill="#F4E8DB" href="#path-3" />
|
|
27
|
+
<path d="M39.8069626,3.76747066 C45.3021184,115.593145 97.2894125,176.043124 195.768845,185.117407 C294.248278,194.191689 253.575457,215.872553 73.750384,250.16 L-33.92,160.780637 L-25.2907546,24.0909209 L26.5457822,-4.24 L39.8069626,3.76747066 Z" fill="#C8BBB2" mask="url(#mask-4)" />
|
|
28
|
+
</g>
|
|
29
|
+
<circle id="Oval" fill="#C8BBB2" cx="80.5" cy="37.5" r="22.5" />
|
|
30
|
+
<circle id="Oval-Copy-3" fill="#C8BBB2" cx="158" cy="66" r="17" />
|
|
31
|
+
<circle id="Oval-Copy-4" stroke="#F4E8DB" strokeWidth="3" fill="#C8BBB2" cx="124" cy="166" r="17" />
|
|
32
|
+
<circle id="Oval-Copy-5" stroke="#F4E8DB" strokeWidth="1.6875" fill="#C8BBB2" cx="58.5" cy="92.5" r="9.5" />
|
|
33
|
+
<circle id="Oval-Copy" fill="#C8BBB2" cx="157.5" cy="124.5" r="8.5" />
|
|
34
|
+
<circle id="Oval-Copy-6" fill="#C8BBB2" cx="190" cy="96" r="3" />
|
|
35
|
+
<circle id="Oval-Copy-8" fill="#C8BBB2" cx="81" cy="113" r="3" />
|
|
36
|
+
<circle id="Oval-Copy-7" fill="#C8BBB2" cx="126" cy="29" r="3" />
|
|
37
|
+
<circle id="Oval-Copy-2" fill="#C8BBB2" cx="97.5" cy="101.5" r="8.5" />
|
|
38
|
+
</g>
|
|
39
|
+
</g>
|
|
40
|
+
</svg>
|
|
41
|
+
)
|
|
42
|
+
export default Moon
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const NotFound: React.FC<Props> = ({ width = 152, height = 152 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<circle cx="76" cy="76" r="76" fill="white" />
|
|
8
|
+
<path d="M45.9805 86.9152C48.9413 103.963 63.8085 116.927 81.7035 116.927C101.729 116.927 117.963 100.693 117.963 80.6675C117.963 60.642 101.729 44.4082 81.7035 44.4082C78.8369 44.4082 76.0481 44.7408 73.3734 45.3696" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
9
|
+
<path d="M105.906 118.934L105.505 118.3L105.906 118.934ZM106.139 117.9L106.774 117.5L106.774 117.499L106.139 117.9ZM95.4697 123.763L95.2458 123.047L95.4697 123.763ZM94.53 123.271L95.2458 123.047H95.2458L94.53 123.271ZM95.0219 122.331L94.7979 121.616H94.7979L95.0219 122.331ZM105.105 117.666L104.705 117.032L105.105 117.666ZM124.32 95.669L123.61 95.426L123.61 95.426L124.32 95.669ZM110.656 115.479L110.176 114.902H110.176L110.656 115.479ZM109.6 115.383L109.024 115.863L109.024 115.863L109.6 115.383ZM109.696 114.326L110.176 114.902L110.176 114.902L109.696 114.326ZM122.9 95.183L123.61 95.426V95.426L122.9 95.183ZM106.306 119.569C107.007 119.126 107.216 118.2 106.774 117.5L105.505 118.3L106.306 119.569ZM95.6937 124.479C99.4677 123.298 103.029 121.637 106.306 119.569L105.505 118.3C102.337 120.301 98.8938 121.906 95.2458 123.047L95.6937 124.479ZM93.8142 123.495C94.0616 124.286 94.903 124.726 95.6937 124.479L95.2458 123.047H95.2458L93.8142 123.495ZM94.7979 121.616C94.0073 121.863 93.5669 122.704 93.8142 123.495L95.2458 123.047H95.2458L94.7979 121.616ZM104.705 117.032C101.644 118.964 98.3199 120.514 94.7979 121.616L95.2458 123.047C98.8938 121.906 102.337 120.301 105.505 118.3L104.705 117.032ZM106.774 117.499C106.331 116.799 105.405 116.59 104.705 117.032L105.505 118.3L106.774 117.499ZM125.029 95.912C125.298 95.1282 124.88 94.2753 124.096 94.0069L123.61 95.426V95.426L125.029 95.912ZM111.136 116.055C117.448 110.796 122.31 103.853 125.029 95.912L123.61 95.426C120.981 103.102 116.281 109.816 110.176 114.902L111.136 116.055ZM109.024 115.863C109.554 116.499 110.5 116.585 111.136 116.055L110.176 114.902H110.176L109.024 115.863ZM109.216 113.75C108.579 114.28 108.493 115.226 109.024 115.863L110.176 114.902H110.176L109.216 113.75ZM122.191 94.94C119.653 102.351 115.114 108.837 109.216 113.75L110.176 114.902C116.281 109.816 120.981 103.102 123.61 95.426L122.191 94.94ZM124.096 94.0069C123.312 93.7385 122.459 94.1563 122.191 94.94L123.61 95.426V95.426L124.096 94.0069Z" fill="#3B3552" />
|
|
10
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M102.531 59.8962C102.06 58.8657 103.349 57.9209 104.122 58.7499C106.278 61.0638 108.662 63.8966 109.789 66.1713C111.892 70.417 113.074 75.2 113.074 80.2592C113.074 97.8096 98.8467 112.037 81.2963 112.037C76.2969 112.037 71.5671 110.882 67.359 108.826C65.1089 107.726 62.3224 105.412 60.0117 103.281C59.1726 102.507 60.137 101.197 61.1738 101.674C63.5052 102.748 66.1159 103.795 68.1113 104.166C70.008 104.519 71.964 104.704 73.963 104.704C91.5134 104.704 105.741 90.4763 105.741 72.9259C105.741 71.209 105.605 69.5238 105.342 67.8807C104.987 65.6535 103.748 62.5573 102.531 59.8962Z" fill="#3040D6" fillOpacity="0.05" />
|
|
11
|
+
<path d="M49.7112 97.7701C42.3619 108.603 39.2213 117.118 42.2366 120.134C47.487 125.384 69.4133 111.97 91.2103 90.1732C113.007 68.3762 126.421 46.4499 121.171 41.1995C118.144 38.1731 109.577 41.3481 98.6873 48.7555" stroke="#3B3552" strokeWidth="1.5" />
|
|
12
|
+
<path d="M34.8519 58.2595V69.6669H23C21.8954 69.6669 21 68.7715 21 67.6669V50.1113" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
13
|
+
<circle cx="51.9631" cy="68.8517" r="11.4074" fill="#3040D6" />
|
|
14
|
+
<path d="M51.9631 53.4443C49.0216 53.4443 46.2726 54.2686 43.9346 55.6988" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
15
|
+
<path d="M34.8517 68.8525V80.2599" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
16
|
+
<path d="M81.2962 58.2595V69.6669H69.4443C68.3398 69.6669 67.4443 68.7715 67.4443 67.6669V50.1113" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
17
|
+
<path d="M81.2961 68.8525V80.2599" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
18
|
+
<path d="M71.7411 93.834C70.3091 92.4021 67.9875 92.4021 66.5556 93.834C65.1237 95.266 65.1237 97.5876 66.5556 99.0195" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
19
|
+
<path d="M105.099 92.8995C103.985 91.7857 102.18 91.7857 101.066 92.8995C99.9522 94.0132 99.9522 95.8189 101.066 96.9326" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
20
|
+
<path d="M100.557 61.0148C99.3196 58.8714 96.5787 58.137 94.4353 59.3745C92.2918 60.612 91.5574 63.3529 92.7949 65.4963" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
21
|
+
</svg>
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
export default NotFound
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { Props } from './props.type.js'
|
|
4
|
+
|
|
5
|
+
export const Notebook: React.FC<Props> = ({ width = 152, height = 152 }) => (
|
|
6
|
+
<svg width={width} height={height} viewBox="0 0 152 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
+
<circle cx="76" cy="76" r="76" fill="white" />
|
|
8
|
+
<rect x="23.75" y="39.75" width="104.5" height="72.4535" rx="3.25" fill="white" stroke="#3B3552" strokeWidth="1.5" />
|
|
9
|
+
<rect x="25.6924" y="41.1094" width="100.612" height="69.6979" rx="2" fill="#3040D6" fillOpacity="0.05" />
|
|
10
|
+
<path d="M33.6104 44.2871C33.6104 43.5968 34.17 43.0371 34.8604 43.0371H118.389V107.667C118.389 108.357 117.83 108.917 117.139 108.917H34.8604C34.17 108.917 33.6104 108.357 33.6104 107.667V44.2871Z" fill="white" stroke="#3B3552" strokeWidth="1.5" />
|
|
11
|
+
<path d="M38.5 49.5V63.5" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
12
|
+
<path d="M38.5 68.1667V72.8333" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
13
|
+
<rect x="50.1162" y="45.5732" width="23.0078" height="60.8062" rx="2" fill="#3040D6" fillOpacity="0.05" />
|
|
14
|
+
<path d="M87.0928 64.0622H110.101" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
15
|
+
<path d="M87.0928 70.6355H110.101" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
16
|
+
<circle cx="106.814" cy="55.4337" r="4.10853" fill="#3040D6" />
|
|
17
|
+
<path d="M87.0928 89.5349H110.101" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
18
|
+
<path d="M87.0928 96.1081H110.101" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
19
|
+
<circle cx="106.814" cy="80.9074" r="4.10853" fill="#3040D6" />
|
|
20
|
+
<path d="M118.657 43.0371H123.303C123.993 43.0371 124.553 43.5968 124.553 44.2871V65.76C124.553 66.4503 123.993 67.01 123.303 67.01H118.657V43.0371Z" fill="white" stroke="#3B3552" strokeWidth="1.5" />
|
|
21
|
+
<path d="M118.728 55.0232H124.48" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
22
|
+
<path d="M75.9997 43.5466V108.407" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
23
|
+
<path d="M80.5192 55.0233C80.5192 52.5273 78.4958 50.5039 75.9998 50.5039C73.5039 50.5039 71.4805 52.5273 71.4805 55.0233" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
24
|
+
<path d="M80.5192 63.2401C80.5192 60.7441 78.4958 58.7207 75.9998 58.7207C73.5039 58.7207 71.4805 60.7441 71.4805 63.2401" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
25
|
+
<path d="M80.5192 92.8221C80.5192 90.3261 78.4958 88.3027 75.9998 88.3027C73.5039 88.3027 71.4805 90.3261 71.4805 92.8221" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
26
|
+
<path d="M80.5192 101.039C80.5192 98.5429 78.4958 96.5195 75.9998 96.5195C73.5039 96.5195 71.4805 98.5429 71.4805 101.039" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
27
|
+
<path d="M56.5 119.5H73.5" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
28
|
+
<path d="M78.1944 119.5H84.8056" stroke="#3B3552" strokeWidth="1.5" strokeLinecap="round" />
|
|
29
|
+
</svg>
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
export default Notebook
|