one-design-next 0.0.4-alpha.100
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/LICENSE +21 -0
- package/README.md +134 -0
- package/dist/_util/canUseDom.d.ts +1 -0
- package/dist/_util/canUseDom.js +3 -0
- package/dist/_util/color.d.ts +103 -0
- package/dist/_util/color.js +250 -0
- package/dist/_util/date.d.ts +53 -0
- package/dist/_util/date.js +657 -0
- package/dist/_util/focusManager.d.ts +12 -0
- package/dist/_util/focusManager.js +56 -0
- package/dist/_util/queueMtPolyfill.d.ts +5 -0
- package/dist/_util/queueMtPolyfill.js +19 -0
- package/dist/_util/time.d.ts +44 -0
- package/dist/_util/time.js +150 -0
- package/dist/_util/useActive.d.ts +6 -0
- package/dist/_util/useActive.js +25 -0
- package/dist/_util/useControlledState.d.ts +8 -0
- package/dist/_util/useControlledState.js +30 -0
- package/dist/_util/useLayoutEffect.d.ts +4 -0
- package/dist/_util/useLayoutEffect.js +30 -0
- package/dist/alert/index.d.ts +63 -0
- package/dist/alert/index.js +137 -0
- package/dist/alert/style/index.css +184 -0
- package/dist/alert/style/index.d.ts +2 -0
- package/dist/alert/style/index.js +2 -0
- package/dist/auto-complete/index.d.ts +64 -0
- package/dist/auto-complete/index.js +149 -0
- package/dist/avatar/index.d.ts +68 -0
- package/dist/avatar/index.js +177 -0
- package/dist/avatar/primitive.d.ts +6 -0
- package/dist/avatar/primitive.js +23 -0
- package/dist/avatar/style/index.css +74 -0
- package/dist/avatar/style/index.d.ts +2 -0
- package/dist/avatar/style/index.js +2 -0
- package/dist/button/index.d.ts +15 -0
- package/dist/button/index.js +64 -0
- package/dist/button/style/index.css +338 -0
- package/dist/button/style/index.d.ts +2 -0
- package/dist/button/style/index.js +2 -0
- package/dist/calendar/index.d.ts +25 -0
- package/dist/calendar/index.js +379 -0
- package/dist/calendar/style/index.css +5 -0
- package/dist/calendar/style/index.d.ts +2 -0
- package/dist/calendar/style/index.js +2 -0
- package/dist/card/header.d.ts +26 -0
- package/dist/card/header.js +37 -0
- package/dist/card/index.d.ts +24 -0
- package/dist/card/index.js +31 -0
- package/dist/card/style/index.css +141 -0
- package/dist/card/style/index.d.ts +1 -0
- package/dist/card/style/index.js +1 -0
- package/dist/cascader/CascaderOptionContent.d.ts +20 -0
- package/dist/cascader/CascaderOptionContent.js +85 -0
- package/dist/cascader/Panel.d.ts +53 -0
- package/dist/cascader/Panel.js +131 -0
- package/dist/cascader/index.d.ts +59 -0
- package/dist/cascader/index.js +436 -0
- package/dist/cascader/style/index.css +414 -0
- package/dist/cascader/style/index.d.ts +2 -0
- package/dist/cascader/style/index.js +2 -0
- package/dist/cascader/utils.d.ts +14 -0
- package/dist/cascader/utils.js +109 -0
- package/dist/chart/index.d.ts +14 -0
- package/dist/chart/index.js +11 -0
- package/dist/chart/style/index.css +1 -0
- package/dist/chart/style/index.d.ts +2 -0
- package/dist/chart/style/index.js +2 -0
- package/dist/checkbox/Checkbox.d.ts +77 -0
- package/dist/checkbox/Checkbox.js +178 -0
- package/dist/checkbox/Context.d.ts +35 -0
- package/dist/checkbox/Context.js +2 -0
- package/dist/checkbox/Group.d.ts +68 -0
- package/dist/checkbox/Group.js +151 -0
- package/dist/checkbox/index.d.ts +5 -0
- package/dist/checkbox/index.js +3 -0
- package/dist/checkbox/style/index.css +330 -0
- package/dist/checkbox/style/index.d.ts +2 -0
- package/dist/checkbox/style/index.js +2 -0
- package/dist/collapse/index.d.ts +43 -0
- package/dist/collapse/index.js +111 -0
- package/dist/collapse/primitive.d.ts +21 -0
- package/dist/collapse/primitive.js +103 -0
- package/dist/collapse/style/index.css +59 -0
- package/dist/collapse/style/index.d.ts +2 -0
- package/dist/collapse/style/index.js +2 -0
- package/dist/color-picker/index.d.ts +55 -0
- package/dist/color-picker/index.js +588 -0
- package/dist/color-picker/style/index.css +135 -0
- package/dist/color-picker/style/index.d.ts +2 -0
- package/dist/color-picker/style/index.js +2 -0
- package/dist/config-provider/index.d.ts +46 -0
- package/dist/config-provider/index.js +37 -0
- package/dist/date-picker/MonthPicker.d.ts +31 -0
- package/dist/date-picker/MonthPicker.js +161 -0
- package/dist/date-picker/QuarterPicker.d.ts +36 -0
- package/dist/date-picker/QuarterPicker.js +168 -0
- package/dist/date-picker/YearPicker.d.ts +13 -0
- package/dist/date-picker/YearPicker.js +84 -0
- package/dist/date-picker/index.d.ts +240 -0
- package/dist/date-picker/index.js +1249 -0
- package/dist/date-picker/style/index.css +511 -0
- package/dist/date-picker/style/index.d.ts +2 -0
- package/dist/date-picker/style/index.js +2 -0
- package/dist/date-range-picker/index.d.ts +58 -0
- package/dist/date-range-picker/index.js +1043 -0
- package/dist/dialog/index.d.ts +139 -0
- package/dist/dialog/index.js +300 -0
- package/dist/dialog/style/index.css +228 -0
- package/dist/dialog/style/index.d.ts +2 -0
- package/dist/dialog/style/index.js +2 -0
- package/dist/dialog/useModalPosition.d.ts +6 -0
- package/dist/dialog/useModalPosition.js +34 -0
- package/dist/drawer/index.d.ts +92 -0
- package/dist/drawer/index.js +214 -0
- package/dist/drawer/style/index.css +244 -0
- package/dist/drawer/style/index.d.ts +2 -0
- package/dist/drawer/style/index.js +2 -0
- package/dist/dropdown/index.d.ts +91 -0
- package/dist/dropdown/index.js +846 -0
- package/dist/dropdown/style/index.css +206 -0
- package/dist/dropdown/style/index.d.ts +2 -0
- package/dist/dropdown/style/index.js +2 -0
- package/dist/ellipsis-text/index.d.ts +19 -0
- package/dist/ellipsis-text/index.js +97 -0
- package/dist/ellipsis-text/style/index.css +1 -0
- package/dist/ellipsis-text/style/index.d.ts +2 -0
- package/dist/ellipsis-text/style/index.js +2 -0
- package/dist/empty/index.d.ts +20 -0
- package/dist/empty/index.js +2398 -0
- package/dist/empty/style/index.css +80 -0
- package/dist/empty/style/index.d.ts +2 -0
- package/dist/empty/style/index.js +2 -0
- package/dist/form/index.d.ts +106 -0
- package/dist/form/index.js +272 -0
- package/dist/form/style/index.css +84 -0
- package/dist/form/style/index.d.ts +2 -0
- package/dist/form/style/index.js +2 -0
- package/dist/hover-fill/index.d.ts +50 -0
- package/dist/hover-fill/index.js +258 -0
- package/dist/hover-fill/style/index.css +35 -0
- package/dist/hover-fill/style/index.d.ts +2 -0
- package/dist/hover-fill/style/index.js +2 -0
- package/dist/icon/index.d.ts +11 -0
- package/dist/icon/index.js +102 -0
- package/dist/icon/style/index.css +15 -0
- package/dist/icon/style/index.d.ts +2 -0
- package/dist/icon/style/index.js +2 -0
- package/dist/icon/svg/alert/alert-circle-filled.svg +1 -0
- package/dist/icon/svg/alert/alert-circle.svg +1 -0
- package/dist/icon/svg/alert/help-circle-filled.svg +1 -0
- package/dist/icon/svg/alert/help-circle.svg +1 -0
- package/dist/icon/svg/alert/info-circle-filled.svg +1 -0
- package/dist/icon/svg/alert/info-circle.svg +1 -0
- package/dist/icon/svg/alert/stop.svg +1 -0
- package/dist/icon/svg/alert/warning-filled.svg +1 -0
- package/dist/icon/svg/alert/warning.svg +1 -0
- package/dist/icon/svg/content/QRcode.svg +1 -0
- package/dist/icon/svg/content/bell-filled.svg +1 -0
- package/dist/icon/svg/content/bell.svg +1 -0
- package/dist/icon/svg/content/bidding.svg +1 -0
- package/dist/icon/svg/content/calendar.svg +1 -0
- package/dist/icon/svg/content/code.svg +1 -0
- package/dist/icon/svg/content/customColumn.svg +1 -0
- package/dist/icon/svg/content/data.svg +1 -0
- package/dist/icon/svg/content/dataReport-filled.svg +1 -0
- package/dist/icon/svg/content/dataReport.svg +1 -0
- package/dist/icon/svg/content/download-1.svg +1 -0
- package/dist/icon/svg/content/download-filled.svg +1 -0
- package/dist/icon/svg/content/download.svg +1 -0
- package/dist/icon/svg/content/exchange.svg +1 -0
- package/dist/icon/svg/content/filter-filled.svg +1 -0
- package/dist/icon/svg/content/filter.svg +1 -0
- package/dist/icon/svg/content/hot-filled.svg +1 -0
- package/dist/icon/svg/content/hot.svg +1 -0
- package/dist/icon/svg/content/link.svg +1 -0
- package/dist/icon/svg/content/location.svg +1 -0
- package/dist/icon/svg/content/maxSize.svg +1 -0
- package/dist/icon/svg/content/mobile-filled.svg +1 -0
- package/dist/icon/svg/content/mobile.svg +1 -0
- package/dist/icon/svg/content/mute.svg +1 -0
- package/dist/icon/svg/content/mutiImage-filled.svg +1 -0
- package/dist/icon/svg/content/mutiImage.svg +1 -0
- package/dist/icon/svg/content/refresh.svg +1 -0
- package/dist/icon/svg/content/report.svg +1 -0
- package/dist/icon/svg/content/save.svg +1 -0
- package/dist/icon/svg/content/search-bold.svg +1 -0
- package/dist/icon/svg/content/search-filled.svg +1 -0
- package/dist/icon/svg/content/search.svg +1 -0
- package/dist/icon/svg/content/setting.svg +1 -0
- package/dist/icon/svg/content/share.svg +1 -0
- package/dist/icon/svg/content/sort.svg +1 -0
- package/dist/icon/svg/content/sound.svg +1 -0
- package/dist/icon/svg/content/sticker-filled.svg +1 -0
- package/dist/icon/svg/content/sticker.svg +1 -0
- package/dist/icon/svg/content/tag-filled.svg +1 -0
- package/dist/icon/svg/content/tag.svg +1 -0
- package/dist/icon/svg/content/thumbDown-filled.svg +1 -0
- package/dist/icon/svg/content/thumbDown.svg +1 -0
- package/dist/icon/svg/content/thumbUp-filled.svg +1 -0
- package/dist/icon/svg/content/thumbUp.svg +1 -0
- package/dist/icon/svg/content/time-bold.svg +1 -0
- package/dist/icon/svg/content/time.svg +1 -0
- package/dist/icon/svg/content/verify.svg +1 -0
- package/dist/icon/svg/content/video.svg +1 -0
- package/dist/icon/svg/content/videoScreenshot.svg +1 -0
- package/dist/icon/svg/content/zoomIn.svg +1 -0
- package/dist/icon/svg/content/zoomOut.svg +1 -0
- package/dist/icon/svg/data/compare.svg +1 -0
- package/dist/icon/svg/data/histogram.svg +1 -0
- package/dist/icon/svg/editor/cancel-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/cancel-circle.svg +1 -0
- package/dist/icon/svg/editor/cancel.svg +1 -0
- package/dist/icon/svg/editor/check-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/check-circle.svg +1 -0
- package/dist/icon/svg/editor/check.svg +1 -0
- package/dist/icon/svg/editor/copy.svg +1 -0
- package/dist/icon/svg/editor/custom-filled.svg +1 -0
- package/dist/icon/svg/editor/custom.svg +1 -0
- package/dist/icon/svg/editor/delete.svg +1 -0
- package/dist/icon/svg/editor/deleteAD-filled.svg +1 -0
- package/dist/icon/svg/editor/draggable.svg +1 -0
- package/dist/icon/svg/editor/edit.svg +1 -0
- package/dist/icon/svg/editor/import.svg +1 -0
- package/dist/icon/svg/editor/minus-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/minus-circle.svg +1 -0
- package/dist/icon/svg/editor/minus.svg +1 -0
- package/dist/icon/svg/editor/modify-bold.svg +1 -0
- package/dist/icon/svg/editor/modify.svg +1 -0
- package/dist/icon/svg/editor/multiCreate.svg +1 -0
- package/dist/icon/svg/editor/mutiSelect-filled.svg +1 -0
- package/dist/icon/svg/editor/mutiSelect.svg +1 -0
- package/dist/icon/svg/editor/pause-filled.svg +1 -0
- package/dist/icon/svg/editor/play-filled.svg +1 -0
- package/dist/icon/svg/editor/plus-circle-filled.svg +1 -0
- package/dist/icon/svg/editor/plus-circle.svg +1 -0
- package/dist/icon/svg/editor/plus.svg +1 -0
- package/dist/icon/svg/editor/send.svg +1 -0
- package/dist/icon/svg/editor/subdivide.svg +1 -0
- package/dist/icon/svg/navigation/arrowDown-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowDown.svg +1 -0
- package/dist/icon/svg/navigation/arrowLeft-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowLeft.svg +1 -0
- package/dist/icon/svg/navigation/arrowRight-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowRight.svg +1 -0
- package/dist/icon/svg/navigation/arrowUp-filled.svg +1 -0
- package/dist/icon/svg/navigation/arrowUp.svg +1 -0
- package/dist/icon/svg/navigation/bottom-filled.svg +1 -0
- package/dist/icon/svg/navigation/bottom.svg +1 -0
- package/dist/icon/svg/navigation/doubleLeft-filled.svg +1 -0
- package/dist/icon/svg/navigation/doubleLeft.svg +1 -0
- package/dist/icon/svg/navigation/doubleRight-filled.svg +1 -0
- package/dist/icon/svg/navigation/doubleRight.svg +1 -0
- package/dist/icon/svg/navigation/down-bold.svg +1 -0
- package/dist/icon/svg/navigation/down-filled.svg +1 -0
- package/dist/icon/svg/navigation/down.svg +1 -0
- package/dist/icon/svg/navigation/fall-filled.svg +1 -0
- package/dist/icon/svg/navigation/fold.svg +1 -0
- package/dist/icon/svg/navigation/fullScreen.svg +1 -0
- package/dist/icon/svg/navigation/left-bold.svg +1 -0
- package/dist/icon/svg/navigation/left-filled.svg +1 -0
- package/dist/icon/svg/navigation/left.svg +1 -0
- package/dist/icon/svg/navigation/leftFirst-filled.svg +1 -0
- package/dist/icon/svg/navigation/leftFirst.svg +1 -0
- package/dist/icon/svg/navigation/logout.svg +1 -0
- package/dist/icon/svg/navigation/menu.svg +1 -0
- package/dist/icon/svg/navigation/menuLeft-bold.svg +1 -0
- package/dist/icon/svg/navigation/menuLeft.svg +1 -0
- package/dist/icon/svg/navigation/menuRight-bold.svg +1 -0
- package/dist/icon/svg/navigation/menuRight.svg +1 -0
- package/dist/icon/svg/navigation/more-vertical.svg +1 -0
- package/dist/icon/svg/navigation/more.svg +1 -0
- package/dist/icon/svg/navigation/pointerLeft-filled.svg +1 -0
- package/dist/icon/svg/navigation/pointerRight-filled.svg +1 -0
- package/dist/icon/svg/navigation/right-bold.svg +1 -0
- package/dist/icon/svg/navigation/right-filled.svg +1 -0
- package/dist/icon/svg/navigation/right.svg +1 -0
- package/dist/icon/svg/navigation/rightLast-filled.svg +1 -0
- package/dist/icon/svg/navigation/rightLast.svg +1 -0
- package/dist/icon/svg/navigation/rise-filled.svg +1 -0
- package/dist/icon/svg/navigation/top-filled.svg +1 -0
- package/dist/icon/svg/navigation/top.svg +1 -0
- package/dist/icon/svg/navigation/unfold-filled.svg +1 -0
- package/dist/icon/svg/navigation/unfold.svg +1 -0
- package/dist/icon/svg/navigation/up-bold.svg +1 -0
- package/dist/icon/svg/navigation/up-filled.svg +1 -0
- package/dist/icon/svg/navigation/up.svg +1 -0
- package/dist/icon/svg/product/AIFile.svg +1 -0
- package/dist/icon/svg/product/LandingPage.svg +1 -0
- package/dist/icon/svg/product/addressBook.svg +1 -0
- package/dist/icon/svg/product/alarmClock.svg +1 -0
- package/dist/icon/svg/product/asset-square.svg +1 -0
- package/dist/icon/svg/product/assetProtecting.svg +1 -0
- package/dist/icon/svg/product/autoAD-square-filled.svg +1 -0
- package/dist/icon/svg/product/card-distribute.svg +1 -0
- package/dist/icon/svg/product/channels-square-filled.svg +1 -0
- package/dist/icon/svg/product/channels.svg +1 -0
- package/dist/icon/svg/product/chart.svg +3 -0
- package/dist/icon/svg/product/chatBubble-filled.svg +1 -0
- package/dist/icon/svg/product/checkBadge.svg +1 -0
- package/dist/icon/svg/product/comments.svg +1 -0
- package/dist/icon/svg/product/container.svg +1 -0
- package/dist/icon/svg/product/dataAuth.svg +1 -0
- package/dist/icon/svg/product/dataBoard.svg +1 -0
- package/dist/icon/svg/product/dataBox.svg +1 -0
- package/dist/icon/svg/product/dataFolder.svg +1 -0
- package/dist/icon/svg/product/dataRising.svg +1 -0
- package/dist/icon/svg/product/detect.svg +1 -0
- package/dist/icon/svg/product/exposure-filled.svg +1 -0
- package/dist/icon/svg/product/extendedConfig.svg +1 -0
- package/dist/icon/svg/product/file-filled.svg +1 -0
- package/dist/icon/svg/product/flag.svg +1 -0
- package/dist/icon/svg/product/flame.svg +1 -0
- package/dist/icon/svg/product/folderZip.svg +1 -0
- package/dist/icon/svg/product/folderzip-bold.svg +1 -0
- package/dist/icon/svg/product/guideBook.svg +1 -0
- package/dist/icon/svg/product/hosting.svg +1 -0
- package/dist/icon/svg/product/icon-outlined.svg +1 -0
- package/dist/icon/svg/product/idea-bold.svg +1 -0
- package/dist/icon/svg/product/idea.svg +1 -0
- package/dist/icon/svg/product/image-bold.svg +1 -0
- package/dist/icon/svg/product/image-filled.svg +1 -0
- package/dist/icon/svg/product/image.svg +1 -0
- package/dist/icon/svg/product/images.svg +1 -0
- package/dist/icon/svg/product/keyword.svg +1 -0
- package/dist/icon/svg/product/linkSquare.svg +1 -0
- package/dist/icon/svg/product/lock.svg +1 -0
- package/dist/icon/svg/product/magic-filled.svg +1 -0
- package/dist/icon/svg/product/magic.svg +1 -0
- package/dist/icon/svg/product/miniProgram.svg +1 -0
- package/dist/icon/svg/product/minigame-filled.svg +1 -0
- package/dist/icon/svg/product/mobilePage.svg +1 -0
- package/dist/icon/svg/product/moments-filled.svg +1 -0
- package/dist/icon/svg/product/notepad-bold.svg +1 -0
- package/dist/icon/svg/product/notepad.svg +1 -0
- package/dist/icon/svg/product/offiaccount-filled.svg +1 -0
- package/dist/icon/svg/product/playing.svg +1 -0
- package/dist/icon/svg/product/qualification.svg +1 -0
- package/dist/icon/svg/product/quickFile.svg +1 -0
- package/dist/icon/svg/product/ringStruckture.svg +1 -0
- package/dist/icon/svg/product/searchAD-filled.svg +1 -0
- package/dist/icon/svg/product/searchAD.svg +1 -0
- package/dist/icon/svg/product/shield-filled.svg +1 -0
- package/dist/icon/svg/product/shield.svg +1 -0
- package/dist/icon/svg/product/shop.svg +1 -0
- package/dist/icon/svg/product/shopping.svg +1 -0
- package/dist/icon/svg/product/star-filled.svg +1 -0
- package/dist/icon/svg/product/star.svg +1 -0
- package/dist/icon/svg/product/support-bold.svg +1 -0
- package/dist/icon/svg/product/target.svg +1 -0
- package/dist/icon/svg/product/targeting.svg +1 -0
- package/dist/icon/svg/product/task-filled.svg +1 -0
- package/dist/icon/svg/product/task.svg +1 -0
- package/dist/icon/svg/product/template.svg +1 -0
- package/dist/icon/svg/product/templateBag.svg +1 -0
- package/dist/icon/svg/product/text.svg +1 -0
- package/dist/icon/svg/product/treeStructure.svg +1 -0
- package/dist/icon/svg/product/user-add.svg +3 -0
- package/dist/icon/svg/product/user-circle.svg +1 -0
- package/dist/icon/svg/product/user-edit.svg +1 -0
- package/dist/icon/svg/product/user-pack.svg +1 -0
- package/dist/icon/svg/product/userList.svg +1 -0
- package/dist/icon/svg/product/userPack.svg +1 -0
- package/dist/icon/svg/product/users-bold.svg +1 -0
- package/dist/icon/svg/product/users.svg +1 -0
- package/dist/icon/svg/product/videoBag-filled.svg +1 -0
- package/dist/icon/svg/product/viewMask.svg +1 -0
- package/dist/icon/svg/product/wallet.svg +1 -0
- package/dist/icon/svg/product/wechatBubble-filled.svg +1 -0
- package/dist/icon/svg/product/wechatBubble.svg +1 -0
- package/dist/icon/svg/product/wechatSearch.svg +1 -0
- package/dist/icon/svg/product/writing.svg +1 -0
- package/dist/icon/svg-data.d.ts +479 -0
- package/dist/icon/svg-data.js +481 -0
- package/dist/icon/test-icons.html +122 -0
- package/dist/icon/types.d.ts +3 -0
- package/dist/icon/types.js +5 -0
- package/dist/index.d.ts +52 -0
- package/dist/index.js +57 -0
- package/dist/input/index.d.ts +82 -0
- package/dist/input/index.js +451 -0
- package/dist/input/style/index.css +244 -0
- package/dist/input/style/index.d.ts +2 -0
- package/dist/input/style/index.js +2 -0
- package/dist/input-number/index.d.ts +41 -0
- package/dist/input-number/index.js +431 -0
- package/dist/input-number/style/index.css +65 -0
- package/dist/input-number/style/index.d.ts +2 -0
- package/dist/input-number/style/index.js +2 -0
- package/dist/input-otp/index.d.ts +71 -0
- package/dist/input-otp/index.js +87 -0
- package/dist/input-otp/style/index.css +110 -0
- package/dist/input-otp/style/index.d.ts +2 -0
- package/dist/input-otp/style/index.js +2 -0
- package/dist/layout/index.d.ts +3 -0
- package/dist/layout/index.js +3 -0
- package/dist/layout/layout.d.ts +32 -0
- package/dist/layout/layout.js +203 -0
- package/dist/layout/mp-layout.d.ts +68 -0
- package/dist/layout/mp-layout.js +204 -0
- package/dist/layout/style/index.css +464 -0
- package/dist/layout/style/index.d.ts +2 -0
- package/dist/layout/style/index.js +2 -0
- package/dist/link/index.d.ts +37 -0
- package/dist/link/index.js +46 -0
- package/dist/link/style/index.css +39 -0
- package/dist/link/style/index.d.ts +2 -0
- package/dist/link/style/index.js +2 -0
- package/dist/loading/index.d.ts +11 -0
- package/dist/loading/index.js +46 -0
- package/dist/loading/style/index.css +84 -0
- package/dist/loading/style/index.d.ts +2 -0
- package/dist/loading/style/index.js +2 -0
- package/dist/message/MessageBase.d.ts +86 -0
- package/dist/message/MessageBase.js +395 -0
- package/dist/message/MessageReact16.d.ts +2 -0
- package/dist/message/MessageReact16.js +86 -0
- package/dist/message/MessageReact18.d.ts +2 -0
- package/dist/message/MessageReact18.js +98 -0
- package/dist/message/index.d.ts +3 -0
- package/dist/message/index.js +7 -0
- package/dist/message/style/index.css +121 -0
- package/dist/message/style/index.d.ts +2 -0
- package/dist/message/style/index.js +2 -0
- package/dist/modal-base/gap.d.ts +14 -0
- package/dist/modal-base/gap.js +31 -0
- package/dist/modal-base/index.d.ts +26 -0
- package/dist/modal-base/index.js +114 -0
- package/dist/number-flow/index.d.ts +13 -0
- package/dist/number-flow/index.js +25 -0
- package/dist/number-flow/style/index.css +1 -0
- package/dist/number-flow/style/index.d.ts +2 -0
- package/dist/number-flow/style/index.js +2 -0
- package/dist/pagination/index.d.ts +63 -0
- package/dist/pagination/index.js +424 -0
- package/dist/pagination/style/index.css +135 -0
- package/dist/pagination/style/index.d.ts +2 -0
- package/dist/pagination/style/index.js +2 -0
- package/dist/pop-base/index.d.ts +143 -0
- package/dist/pop-base/index.js +381 -0
- package/dist/pop-base/mergeProps.d.ts +37 -0
- package/dist/pop-base/mergeProps.js +144 -0
- package/dist/pop-base/style/index.css +123 -0
- package/dist/pop-base/style/index.d.ts +2 -0
- package/dist/pop-base/style/index.js +2 -0
- package/dist/pop-base/useForkRef.d.ts +5 -0
- package/dist/pop-base/useForkRef.js +52 -0
- package/dist/popover/index.d.ts +4 -0
- package/dist/popover/index.js +9 -0
- package/dist/radio/index.d.ts +35 -0
- package/dist/radio/index.js +77 -0
- package/dist/radio/primitive.d.ts +5 -0
- package/dist/radio/primitive.js +28 -0
- package/dist/radio/style/index.css +224 -0
- package/dist/radio/style/index.d.ts +2 -0
- package/dist/radio/style/index.js +2 -0
- package/dist/scroll-area/index.d.ts +29 -0
- package/dist/scroll-area/index.js +118 -0
- package/dist/scroll-area/style/index.css +107 -0
- package/dist/scroll-area/style/index.d.ts +2 -0
- package/dist/scroll-area/style/index.js +2 -0
- package/dist/select/index.d.ts +86 -0
- package/dist/select/index.js +275 -0
- package/dist/select/style/index.css +1473 -0
- package/dist/select/style/index.d.ts +2 -0
- package/dist/select/style/index.js +2 -0
- package/dist/select/useIcons.d.ts +25 -0
- package/dist/select/useIcons.js +80 -0
- package/dist/select/utils.d.ts +9 -0
- package/dist/select/utils.js +40 -0
- package/dist/slider/index.d.ts +69 -0
- package/dist/slider/index.js +264 -0
- package/dist/slider/style/index.css +210 -0
- package/dist/slider/style/index.d.ts +2 -0
- package/dist/slider/style/index.js +2 -0
- package/dist/style/base.css +296 -0
- package/dist/style/index.d.ts +7 -0
- package/dist/style/index.js +18 -0
- package/dist/style/theme-adui.css +352 -0
- package/dist/switch/index.d.ts +12 -0
- package/dist/switch/index.js +55 -0
- package/dist/switch/style/index.css +149 -0
- package/dist/switch/style/index.d.ts +2 -0
- package/dist/switch/style/index.js +2 -0
- package/dist/table/TableCellContent.d.ts +20 -0
- package/dist/table/TableCellContent.js +82 -0
- package/dist/table/index.d.ts +97 -0
- package/dist/table/index.js +796 -0
- package/dist/table/style/index.css +301 -0
- package/dist/table/style/index.d.ts +2 -0
- package/dist/table/style/index.js +2 -0
- package/dist/table/useSelection.d.ts +13 -0
- package/dist/table/useSelection.js +268 -0
- package/dist/tabs/index.d.ts +51 -0
- package/dist/tabs/index.js +697 -0
- package/dist/tabs/style/index.css +305 -0
- package/dist/tabs/style/index.d.ts +2 -0
- package/dist/tabs/style/index.js +2 -0
- package/dist/text-swap/index.d.ts +58 -0
- package/dist/text-swap/index.js +280 -0
- package/dist/text-swap/style/index.css +29 -0
- package/dist/text-swap/style/index.d.ts +2 -0
- package/dist/text-swap/style/index.js +2 -0
- package/dist/time-picker/index.d.ts +67 -0
- package/dist/time-picker/index.js +945 -0
- package/dist/time-picker/style/index.css +153 -0
- package/dist/time-picker/style/index.d.ts +2 -0
- package/dist/time-picker/style/index.js +2 -0
- package/dist/tooltip/index.d.ts +10 -0
- package/dist/tooltip/index.js +178 -0
- package/dist/tree-select/index.d.ts +25 -0
- package/dist/tree-select/index.js +140 -0
- package/dist/tree-select/style/index.css +180 -0
- package/dist/tree-select/style/index.d.ts +1 -0
- package/dist/tree-select/style/index.js +1 -0
- package/dist/virtual-list/index.d.ts +98 -0
- package/dist/virtual-list/index.js +56 -0
- package/dist/virtual-list/style/index.css +9 -0
- package/dist/virtual-list/style/index.d.ts +2 -0
- package/dist/virtual-list/style/index.js +2 -0
- package/package.json +132 -0
|
@@ -0,0 +1,2398 @@
|
|
|
1
|
+
var _excluded = ["className", "type", "size", "title", "description", "extra", "image"];
|
|
2
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
+
import clsx from 'clsx';
|
|
6
|
+
import * as React from 'react';
|
|
7
|
+
import "./style";
|
|
8
|
+
// ─── SVG 占位插槽 ────────────────────────────────────────────────────────────
|
|
9
|
+
// 每个类型对应一个独立的 SVG 组件,size 可取 'large' | 'medium' | 'small'
|
|
10
|
+
|
|
11
|
+
var EmptySvgSearch = function EmptySvgSearch(_ref) {
|
|
12
|
+
var _ = _ref.size;
|
|
13
|
+
// TODO: 填入搜索为空 SVG
|
|
14
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
+
width: "72",
|
|
16
|
+
height: "68",
|
|
17
|
+
viewBox: "0 0 72 68",
|
|
18
|
+
fill: "none",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
21
|
+
filter: "url(#filter0_d_932_410506)"
|
|
22
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
clipRule: "evenodd",
|
|
25
|
+
d: "M6 20.75C6 18.5409 7.79086 16.75 10 16.75H47C49.2091 16.75 51 18.5409 51 20.75V48.75C51 50.9591 49.2091 52.75 47 52.75H10C7.79086 52.75 6 50.9591 6 48.75V20.75Z",
|
|
26
|
+
fill: "url(#paint0_linear_932_410506)"
|
|
27
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
28
|
+
filter: "url(#filter1_d_932_410506)"
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "M14.25 8C14.25 5.79086 16.0409 4 18.25 4H55.25C57.4591 4 59.25 5.79086 59.25 8V55.5C59.25 57.7091 57.4591 59.5 55.25 59.5H18.25C16.0409 59.5 14.25 57.7091 14.25 55.5V8Z",
|
|
33
|
+
fill: "url(#paint1_linear_932_410506)"
|
|
34
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M48.375 46.75C53.5527 46.75 57.75 42.5527 57.75 37.375C57.75 32.1973 53.5527 28 48.375 28C43.1973 28 39 32.1973 39 37.375C39 42.5527 43.1973 46.75 48.375 46.75Z",
|
|
38
|
+
fill: "url(#paint2_linear_932_410506)"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
40
|
+
filter: "url(#filter2_d_932_410506)"
|
|
41
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
42
|
+
fillRule: "evenodd",
|
|
43
|
+
clipRule: "evenodd",
|
|
44
|
+
d: "M64.6349 53.8468C65.4393 53.0861 65.4726 51.8167 64.7093 51.0148L59.0249 45.0429C60.5838 42.9174 61.4611 40.3773 61.5344 37.691C61.6283 34.1957 60.3511 30.8714 57.9353 28.3352C55.5196 25.7951 52.255 24.3483 48.7456 24.2548C45.2322 24.1613 41.8983 25.4334 39.3518 27.8395C36.8014 30.2455 35.3487 33.4968 35.2548 36.992C35.161 40.4871 36.4382 43.8116 38.8541 46.3477C41.2699 48.8878 44.5344 50.3345 48.0438 50.4279C48.1662 50.4321 48.2845 50.4321 48.4069 50.4321C50.9737 50.4321 53.4344 49.7007 55.5481 48.3268L61.2415 54.3115C62.0013 55.1101 63.2639 55.1434 64.0648 54.386L64.6349 53.8468ZM48.1458 46.5184C45.6851 46.4533 43.3959 45.4372 41.6982 43.653C40.0048 41.873 39.107 39.5403 39.1723 37.0895C39.2377 34.6388 40.2579 32.3587 42.0491 30.6681C43.7753 29.0383 46.0157 28.1483 48.3865 28.1483C48.4722 28.1483 48.5579 28.1483 48.6396 28.1525C51.1002 28.2174 53.3894 29.2334 55.087 31.0176C56.7805 32.7977 57.6783 35.1306 57.6129 37.5812C57.5476 40.032 56.5274 42.312 54.7362 44.0027C52.9489 45.6932 50.6064 46.5833 48.1458 46.5184Z",
|
|
45
|
+
fill: "url(#paint3_linear_932_410506)"
|
|
46
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
47
|
+
filter: "url(#filter3_d_932_410506)"
|
|
48
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
49
|
+
x: "18.75",
|
|
50
|
+
y: "8.5",
|
|
51
|
+
width: "10.5",
|
|
52
|
+
height: "10.5",
|
|
53
|
+
rx: "2",
|
|
54
|
+
fill: "url(#paint4_linear_932_410506)"
|
|
55
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
56
|
+
filter: "url(#filter4_d_932_410506)"
|
|
57
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
58
|
+
x: "33",
|
|
59
|
+
y: "10",
|
|
60
|
+
width: "21.75",
|
|
61
|
+
height: "3",
|
|
62
|
+
rx: "1",
|
|
63
|
+
fill: "url(#paint5_linear_932_410506)"
|
|
64
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
65
|
+
filter: "url(#filter5_d_932_410506)"
|
|
66
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
67
|
+
x: "33",
|
|
68
|
+
y: "15.25",
|
|
69
|
+
width: "12.75",
|
|
70
|
+
height: "3",
|
|
71
|
+
rx: "1",
|
|
72
|
+
fill: "url(#paint6_linear_932_410506)"
|
|
73
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
74
|
+
id: "filter0_d_932_410506",
|
|
75
|
+
x: "0",
|
|
76
|
+
y: "12.75",
|
|
77
|
+
width: "57",
|
|
78
|
+
height: "48",
|
|
79
|
+
filterUnits: "userSpaceOnUse",
|
|
80
|
+
colorInterpolationFilters: "sRGB"
|
|
81
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
82
|
+
floodOpacity: "0",
|
|
83
|
+
result: "BackgroundImageFix"
|
|
84
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
85
|
+
in: "SourceAlpha",
|
|
86
|
+
type: "matrix",
|
|
87
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
88
|
+
result: "hardAlpha"
|
|
89
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
90
|
+
dy: "2"
|
|
91
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
92
|
+
stdDeviation: "3"
|
|
93
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
94
|
+
type: "matrix",
|
|
95
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
96
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
97
|
+
mode: "normal",
|
|
98
|
+
in2: "BackgroundImageFix",
|
|
99
|
+
result: "effect1_dropShadow_932_410506"
|
|
100
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
101
|
+
mode: "normal",
|
|
102
|
+
in: "SourceGraphic",
|
|
103
|
+
in2: "effect1_dropShadow_932_410506",
|
|
104
|
+
result: "shape"
|
|
105
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
106
|
+
id: "filter1_d_932_410506",
|
|
107
|
+
x: "8.25",
|
|
108
|
+
y: "0",
|
|
109
|
+
width: "57",
|
|
110
|
+
height: "67.5",
|
|
111
|
+
filterUnits: "userSpaceOnUse",
|
|
112
|
+
colorInterpolationFilters: "sRGB"
|
|
113
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
114
|
+
floodOpacity: "0",
|
|
115
|
+
result: "BackgroundImageFix"
|
|
116
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
117
|
+
in: "SourceAlpha",
|
|
118
|
+
type: "matrix",
|
|
119
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
120
|
+
result: "hardAlpha"
|
|
121
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
122
|
+
dy: "2"
|
|
123
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
124
|
+
stdDeviation: "3"
|
|
125
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
126
|
+
type: "matrix",
|
|
127
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
128
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
129
|
+
mode: "normal",
|
|
130
|
+
in2: "BackgroundImageFix",
|
|
131
|
+
result: "effect1_dropShadow_932_410506"
|
|
132
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
133
|
+
mode: "normal",
|
|
134
|
+
in: "SourceGraphic",
|
|
135
|
+
in2: "effect1_dropShadow_932_410506",
|
|
136
|
+
result: "shape"
|
|
137
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
138
|
+
id: "filter2_d_932_410506",
|
|
139
|
+
x: "29.25",
|
|
140
|
+
y: "20.25",
|
|
141
|
+
width: "42.0107",
|
|
142
|
+
height: "42.6829",
|
|
143
|
+
filterUnits: "userSpaceOnUse",
|
|
144
|
+
colorInterpolationFilters: "sRGB"
|
|
145
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
146
|
+
floodOpacity: "0",
|
|
147
|
+
result: "BackgroundImageFix"
|
|
148
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
149
|
+
in: "SourceAlpha",
|
|
150
|
+
type: "matrix",
|
|
151
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
152
|
+
result: "hardAlpha"
|
|
153
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
154
|
+
dy: "2"
|
|
155
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
156
|
+
stdDeviation: "3"
|
|
157
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
158
|
+
type: "matrix",
|
|
159
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
160
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
161
|
+
mode: "normal",
|
|
162
|
+
in2: "BackgroundImageFix",
|
|
163
|
+
result: "effect1_dropShadow_932_410506"
|
|
164
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
165
|
+
mode: "normal",
|
|
166
|
+
in: "SourceGraphic",
|
|
167
|
+
in2: "effect1_dropShadow_932_410506",
|
|
168
|
+
result: "shape"
|
|
169
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
170
|
+
id: "filter3_d_932_410506",
|
|
171
|
+
x: "12.75",
|
|
172
|
+
y: "4.5",
|
|
173
|
+
width: "22.5",
|
|
174
|
+
height: "22.5",
|
|
175
|
+
filterUnits: "userSpaceOnUse",
|
|
176
|
+
colorInterpolationFilters: "sRGB"
|
|
177
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
178
|
+
floodOpacity: "0",
|
|
179
|
+
result: "BackgroundImageFix"
|
|
180
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
181
|
+
in: "SourceAlpha",
|
|
182
|
+
type: "matrix",
|
|
183
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
184
|
+
result: "hardAlpha"
|
|
185
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
186
|
+
dy: "2"
|
|
187
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
188
|
+
stdDeviation: "3"
|
|
189
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
190
|
+
type: "matrix",
|
|
191
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
192
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
193
|
+
mode: "normal",
|
|
194
|
+
in2: "BackgroundImageFix",
|
|
195
|
+
result: "effect1_dropShadow_932_410506"
|
|
196
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
197
|
+
mode: "normal",
|
|
198
|
+
in: "SourceGraphic",
|
|
199
|
+
in2: "effect1_dropShadow_932_410506",
|
|
200
|
+
result: "shape"
|
|
201
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
202
|
+
id: "filter4_d_932_410506",
|
|
203
|
+
x: "27",
|
|
204
|
+
y: "6",
|
|
205
|
+
width: "33.75",
|
|
206
|
+
height: "15",
|
|
207
|
+
filterUnits: "userSpaceOnUse",
|
|
208
|
+
colorInterpolationFilters: "sRGB"
|
|
209
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
210
|
+
floodOpacity: "0",
|
|
211
|
+
result: "BackgroundImageFix"
|
|
212
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
213
|
+
in: "SourceAlpha",
|
|
214
|
+
type: "matrix",
|
|
215
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
216
|
+
result: "hardAlpha"
|
|
217
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
218
|
+
dy: "2"
|
|
219
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
220
|
+
stdDeviation: "3"
|
|
221
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
222
|
+
type: "matrix",
|
|
223
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
224
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
225
|
+
mode: "normal",
|
|
226
|
+
in2: "BackgroundImageFix",
|
|
227
|
+
result: "effect1_dropShadow_932_410506"
|
|
228
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
229
|
+
mode: "normal",
|
|
230
|
+
in: "SourceGraphic",
|
|
231
|
+
in2: "effect1_dropShadow_932_410506",
|
|
232
|
+
result: "shape"
|
|
233
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
234
|
+
id: "filter5_d_932_410506",
|
|
235
|
+
x: "27",
|
|
236
|
+
y: "11.25",
|
|
237
|
+
width: "24.75",
|
|
238
|
+
height: "15",
|
|
239
|
+
filterUnits: "userSpaceOnUse",
|
|
240
|
+
colorInterpolationFilters: "sRGB"
|
|
241
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
242
|
+
floodOpacity: "0",
|
|
243
|
+
result: "BackgroundImageFix"
|
|
244
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
245
|
+
in: "SourceAlpha",
|
|
246
|
+
type: "matrix",
|
|
247
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
248
|
+
result: "hardAlpha"
|
|
249
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
250
|
+
dy: "2"
|
|
251
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
252
|
+
stdDeviation: "3"
|
|
253
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
254
|
+
type: "matrix",
|
|
255
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
256
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
257
|
+
mode: "normal",
|
|
258
|
+
in2: "BackgroundImageFix",
|
|
259
|
+
result: "effect1_dropShadow_932_410506"
|
|
260
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
261
|
+
mode: "normal",
|
|
262
|
+
in: "SourceGraphic",
|
|
263
|
+
in2: "effect1_dropShadow_932_410506",
|
|
264
|
+
result: "shape"
|
|
265
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
266
|
+
id: "paint0_linear_932_410506",
|
|
267
|
+
x1: "50.9543",
|
|
268
|
+
y1: "52.6768",
|
|
269
|
+
x2: "50.9543",
|
|
270
|
+
y2: "16.75",
|
|
271
|
+
gradientUnits: "userSpaceOnUse"
|
|
272
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
273
|
+
stopColor: "#EDEFF2"
|
|
274
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
275
|
+
offset: "1",
|
|
276
|
+
stopColor: "#DFE1E6"
|
|
277
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
278
|
+
id: "paint1_linear_932_410506",
|
|
279
|
+
x1: "14.3302",
|
|
280
|
+
y1: "4",
|
|
281
|
+
x2: "14.3302",
|
|
282
|
+
y2: "59.3022",
|
|
283
|
+
gradientUnits: "userSpaceOnUse"
|
|
284
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
285
|
+
stopColor: "#E6E8ED"
|
|
286
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
287
|
+
offset: "1",
|
|
288
|
+
stopColor: "#F2F4F7"
|
|
289
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
290
|
+
id: "paint2_linear_932_410506",
|
|
291
|
+
x1: "39",
|
|
292
|
+
y1: "28",
|
|
293
|
+
x2: "39",
|
|
294
|
+
y2: "46.75",
|
|
295
|
+
gradientUnits: "userSpaceOnUse"
|
|
296
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
297
|
+
stopColor: "#F7F9FC"
|
|
298
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
299
|
+
offset: "1",
|
|
300
|
+
stopColor: "white"
|
|
301
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
302
|
+
id: "paint3_linear_932_410506",
|
|
303
|
+
x1: "65.2302",
|
|
304
|
+
y1: "54.8706",
|
|
305
|
+
x2: "65.2302",
|
|
306
|
+
y2: "24.25",
|
|
307
|
+
gradientUnits: "userSpaceOnUse"
|
|
308
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
309
|
+
stopColor: "#DFE1E6"
|
|
310
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
311
|
+
offset: "1",
|
|
312
|
+
stopColor: "#C4C7CC"
|
|
313
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
314
|
+
id: "paint4_linear_932_410506",
|
|
315
|
+
x1: "29.2393",
|
|
316
|
+
y1: "18.9787",
|
|
317
|
+
x2: "29.2393",
|
|
318
|
+
y2: "8.5",
|
|
319
|
+
gradientUnits: "userSpaceOnUse"
|
|
320
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
321
|
+
stopColor: "#DFE1E6"
|
|
322
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
323
|
+
offset: "1",
|
|
324
|
+
stopColor: "#C4C7CC"
|
|
325
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
326
|
+
id: "paint5_linear_932_410506",
|
|
327
|
+
x1: "54.7279",
|
|
328
|
+
y1: "12.9939",
|
|
329
|
+
x2: "54.7279",
|
|
330
|
+
y2: "10",
|
|
331
|
+
gradientUnits: "userSpaceOnUse"
|
|
332
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
333
|
+
stopColor: "#D2D4D9"
|
|
334
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
335
|
+
offset: "1",
|
|
336
|
+
stopColor: "#C4C7CC"
|
|
337
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
338
|
+
id: "paint6_linear_932_410506",
|
|
339
|
+
x1: "45.737",
|
|
340
|
+
y1: "18.2439",
|
|
341
|
+
x2: "45.737",
|
|
342
|
+
y2: "15.25",
|
|
343
|
+
gradientUnits: "userSpaceOnUse"
|
|
344
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
345
|
+
stopColor: "#D2D4D9"
|
|
346
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
347
|
+
offset: "1",
|
|
348
|
+
stopColor: "#C4C7CC"
|
|
349
|
+
}))));
|
|
350
|
+
};
|
|
351
|
+
var EmptySvgData = function EmptySvgData(_ref2) {
|
|
352
|
+
var _ = _ref2.size;
|
|
353
|
+
// TODO: 填入数据为空 SVG
|
|
354
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
355
|
+
width: "66",
|
|
356
|
+
height: "68",
|
|
357
|
+
viewBox: "0 0 66 68",
|
|
358
|
+
fill: "none",
|
|
359
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
360
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
361
|
+
filter: "url(#filter0_d_932_410528)"
|
|
362
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
363
|
+
fillRule: "evenodd",
|
|
364
|
+
clipRule: "evenodd",
|
|
365
|
+
d: "M6 20.75C6 18.5409 7.79086 16.75 10 16.75H47C49.2091 16.75 51 18.5409 51 20.75V48.75C51 50.9591 49.2091 52.75 47 52.75H10C7.79086 52.75 6 50.9591 6 48.75V20.75Z",
|
|
366
|
+
fill: "url(#paint0_linear_932_410528)"
|
|
367
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
368
|
+
filter: "url(#filter1_d_932_410528)"
|
|
369
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
370
|
+
fillRule: "evenodd",
|
|
371
|
+
clipRule: "evenodd",
|
|
372
|
+
d: "M15 8C15 5.79086 16.7909 4 19 4H56C58.2091 4 60 5.79086 60 8V55.5C60 57.7091 58.2091 59.5 56 59.5H19C16.7909 59.5 15 57.7091 15 55.5V8Z",
|
|
373
|
+
fill: "url(#paint1_linear_932_410528)"
|
|
374
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
375
|
+
filter: "url(#filter2_d_932_410528)"
|
|
376
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
377
|
+
x: "21.75",
|
|
378
|
+
y: "32.5",
|
|
379
|
+
width: "4.5",
|
|
380
|
+
height: "18.75",
|
|
381
|
+
rx: "2",
|
|
382
|
+
fill: "url(#paint2_linear_932_410528)"
|
|
383
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
384
|
+
filter: "url(#filter3_d_932_410528)"
|
|
385
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
386
|
+
x: "30.75",
|
|
387
|
+
y: "27.25",
|
|
388
|
+
width: "4.5",
|
|
389
|
+
height: "24",
|
|
390
|
+
rx: "2",
|
|
391
|
+
fill: "url(#paint3_linear_932_410528)"
|
|
392
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
393
|
+
filter: "url(#filter4_d_932_410528)"
|
|
394
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
395
|
+
x: "39.75",
|
|
396
|
+
y: "37",
|
|
397
|
+
width: "4.5",
|
|
398
|
+
height: "14.25",
|
|
399
|
+
rx: "2",
|
|
400
|
+
fill: "url(#paint4_linear_932_410528)"
|
|
401
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
402
|
+
filter: "url(#filter5_d_932_410528)"
|
|
403
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
404
|
+
x: "48.75",
|
|
405
|
+
y: "34.75",
|
|
406
|
+
width: "4.5",
|
|
407
|
+
height: "16.5",
|
|
408
|
+
rx: "2",
|
|
409
|
+
fill: "url(#paint5_linear_932_410528)"
|
|
410
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
411
|
+
id: "filter0_d_932_410528",
|
|
412
|
+
x: "0",
|
|
413
|
+
y: "12.75",
|
|
414
|
+
width: "57",
|
|
415
|
+
height: "48",
|
|
416
|
+
filterUnits: "userSpaceOnUse",
|
|
417
|
+
colorInterpolationFilters: "sRGB"
|
|
418
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
419
|
+
floodOpacity: "0",
|
|
420
|
+
result: "BackgroundImageFix"
|
|
421
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
422
|
+
in: "SourceAlpha",
|
|
423
|
+
type: "matrix",
|
|
424
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
425
|
+
result: "hardAlpha"
|
|
426
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
427
|
+
dy: "2"
|
|
428
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
429
|
+
stdDeviation: "3"
|
|
430
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
431
|
+
type: "matrix",
|
|
432
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
433
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
434
|
+
mode: "normal",
|
|
435
|
+
in2: "BackgroundImageFix",
|
|
436
|
+
result: "effect1_dropShadow_932_410528"
|
|
437
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
438
|
+
mode: "normal",
|
|
439
|
+
in: "SourceGraphic",
|
|
440
|
+
in2: "effect1_dropShadow_932_410528",
|
|
441
|
+
result: "shape"
|
|
442
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
443
|
+
id: "filter1_d_932_410528",
|
|
444
|
+
x: "9",
|
|
445
|
+
y: "0",
|
|
446
|
+
width: "57",
|
|
447
|
+
height: "67.5",
|
|
448
|
+
filterUnits: "userSpaceOnUse",
|
|
449
|
+
colorInterpolationFilters: "sRGB"
|
|
450
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
451
|
+
floodOpacity: "0",
|
|
452
|
+
result: "BackgroundImageFix"
|
|
453
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
454
|
+
in: "SourceAlpha",
|
|
455
|
+
type: "matrix",
|
|
456
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
457
|
+
result: "hardAlpha"
|
|
458
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
459
|
+
dy: "2"
|
|
460
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
461
|
+
stdDeviation: "3"
|
|
462
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
463
|
+
type: "matrix",
|
|
464
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
465
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
466
|
+
mode: "normal",
|
|
467
|
+
in2: "BackgroundImageFix",
|
|
468
|
+
result: "effect1_dropShadow_932_410528"
|
|
469
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
470
|
+
mode: "normal",
|
|
471
|
+
in: "SourceGraphic",
|
|
472
|
+
in2: "effect1_dropShadow_932_410528",
|
|
473
|
+
result: "shape"
|
|
474
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
475
|
+
id: "filter2_d_932_410528",
|
|
476
|
+
x: "15.75",
|
|
477
|
+
y: "28.5",
|
|
478
|
+
width: "16.5",
|
|
479
|
+
height: "30.75",
|
|
480
|
+
filterUnits: "userSpaceOnUse",
|
|
481
|
+
colorInterpolationFilters: "sRGB"
|
|
482
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
483
|
+
floodOpacity: "0",
|
|
484
|
+
result: "BackgroundImageFix"
|
|
485
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
486
|
+
in: "SourceAlpha",
|
|
487
|
+
type: "matrix",
|
|
488
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
489
|
+
result: "hardAlpha"
|
|
490
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
491
|
+
dy: "2"
|
|
492
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
493
|
+
stdDeviation: "3"
|
|
494
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
495
|
+
type: "matrix",
|
|
496
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
497
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
498
|
+
mode: "normal",
|
|
499
|
+
in2: "BackgroundImageFix",
|
|
500
|
+
result: "effect1_dropShadow_932_410528"
|
|
501
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
502
|
+
mode: "normal",
|
|
503
|
+
in: "SourceGraphic",
|
|
504
|
+
in2: "effect1_dropShadow_932_410528",
|
|
505
|
+
result: "shape"
|
|
506
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
507
|
+
id: "filter3_d_932_410528",
|
|
508
|
+
x: "24.75",
|
|
509
|
+
y: "23.25",
|
|
510
|
+
width: "16.5",
|
|
511
|
+
height: "36",
|
|
512
|
+
filterUnits: "userSpaceOnUse",
|
|
513
|
+
colorInterpolationFilters: "sRGB"
|
|
514
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
515
|
+
floodOpacity: "0",
|
|
516
|
+
result: "BackgroundImageFix"
|
|
517
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
518
|
+
in: "SourceAlpha",
|
|
519
|
+
type: "matrix",
|
|
520
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
521
|
+
result: "hardAlpha"
|
|
522
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
523
|
+
dy: "2"
|
|
524
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
525
|
+
stdDeviation: "3"
|
|
526
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
527
|
+
type: "matrix",
|
|
528
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
529
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
530
|
+
mode: "normal",
|
|
531
|
+
in2: "BackgroundImageFix",
|
|
532
|
+
result: "effect1_dropShadow_932_410528"
|
|
533
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
534
|
+
mode: "normal",
|
|
535
|
+
in: "SourceGraphic",
|
|
536
|
+
in2: "effect1_dropShadow_932_410528",
|
|
537
|
+
result: "shape"
|
|
538
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
539
|
+
id: "filter4_d_932_410528",
|
|
540
|
+
x: "33.75",
|
|
541
|
+
y: "33",
|
|
542
|
+
width: "16.5",
|
|
543
|
+
height: "26.25",
|
|
544
|
+
filterUnits: "userSpaceOnUse",
|
|
545
|
+
colorInterpolationFilters: "sRGB"
|
|
546
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
547
|
+
floodOpacity: "0",
|
|
548
|
+
result: "BackgroundImageFix"
|
|
549
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
550
|
+
in: "SourceAlpha",
|
|
551
|
+
type: "matrix",
|
|
552
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
553
|
+
result: "hardAlpha"
|
|
554
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
555
|
+
dy: "2"
|
|
556
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
557
|
+
stdDeviation: "3"
|
|
558
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
559
|
+
type: "matrix",
|
|
560
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
561
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
562
|
+
mode: "normal",
|
|
563
|
+
in2: "BackgroundImageFix",
|
|
564
|
+
result: "effect1_dropShadow_932_410528"
|
|
565
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
566
|
+
mode: "normal",
|
|
567
|
+
in: "SourceGraphic",
|
|
568
|
+
in2: "effect1_dropShadow_932_410528",
|
|
569
|
+
result: "shape"
|
|
570
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
571
|
+
id: "filter5_d_932_410528",
|
|
572
|
+
x: "42.75",
|
|
573
|
+
y: "30.75",
|
|
574
|
+
width: "16.5",
|
|
575
|
+
height: "28.5",
|
|
576
|
+
filterUnits: "userSpaceOnUse",
|
|
577
|
+
colorInterpolationFilters: "sRGB"
|
|
578
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
579
|
+
floodOpacity: "0",
|
|
580
|
+
result: "BackgroundImageFix"
|
|
581
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
582
|
+
in: "SourceAlpha",
|
|
583
|
+
type: "matrix",
|
|
584
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
585
|
+
result: "hardAlpha"
|
|
586
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
587
|
+
dy: "2"
|
|
588
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
589
|
+
stdDeviation: "3"
|
|
590
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
591
|
+
type: "matrix",
|
|
592
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
593
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
594
|
+
mode: "normal",
|
|
595
|
+
in2: "BackgroundImageFix",
|
|
596
|
+
result: "effect1_dropShadow_932_410528"
|
|
597
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
598
|
+
mode: "normal",
|
|
599
|
+
in: "SourceGraphic",
|
|
600
|
+
in2: "effect1_dropShadow_932_410528",
|
|
601
|
+
result: "shape"
|
|
602
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
603
|
+
id: "paint0_linear_932_410528",
|
|
604
|
+
x1: "50.9543",
|
|
605
|
+
y1: "52.6768",
|
|
606
|
+
x2: "50.9543",
|
|
607
|
+
y2: "16.75",
|
|
608
|
+
gradientUnits: "userSpaceOnUse"
|
|
609
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
610
|
+
stopColor: "#EDEFF2"
|
|
611
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
612
|
+
offset: "1",
|
|
613
|
+
stopColor: "#DFE1E6"
|
|
614
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
615
|
+
id: "paint1_linear_932_410528",
|
|
616
|
+
x1: "15.0802",
|
|
617
|
+
y1: "4",
|
|
618
|
+
x2: "15.0802",
|
|
619
|
+
y2: "59.3022",
|
|
620
|
+
gradientUnits: "userSpaceOnUse"
|
|
621
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
622
|
+
stopColor: "#E6E8ED"
|
|
623
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
624
|
+
offset: "1",
|
|
625
|
+
stopColor: "#F2F4F7"
|
|
626
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
627
|
+
id: "paint2_linear_932_410528",
|
|
628
|
+
x1: "26.2454",
|
|
629
|
+
y1: "51.2119",
|
|
630
|
+
x2: "26.2454",
|
|
631
|
+
y2: "32.5",
|
|
632
|
+
gradientUnits: "userSpaceOnUse"
|
|
633
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
634
|
+
stopColor: "#DFE1E6"
|
|
635
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
636
|
+
offset: "1",
|
|
637
|
+
stopColor: "#C4C7CC"
|
|
638
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
639
|
+
id: "paint3_linear_932_410528",
|
|
640
|
+
x1: "35.2454",
|
|
641
|
+
y1: "51.2012",
|
|
642
|
+
x2: "35.2454",
|
|
643
|
+
y2: "27.25",
|
|
644
|
+
gradientUnits: "userSpaceOnUse"
|
|
645
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
646
|
+
stopColor: "#DFE1E6"
|
|
647
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
648
|
+
offset: "1",
|
|
649
|
+
stopColor: "#C4C7CC"
|
|
650
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
651
|
+
id: "paint4_linear_932_410528",
|
|
652
|
+
x1: "44.2454",
|
|
653
|
+
y1: "51.221",
|
|
654
|
+
x2: "44.2454",
|
|
655
|
+
y2: "37",
|
|
656
|
+
gradientUnits: "userSpaceOnUse"
|
|
657
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
658
|
+
stopColor: "#DFE1E6"
|
|
659
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
660
|
+
offset: "1",
|
|
661
|
+
stopColor: "#C4C7CC"
|
|
662
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
663
|
+
id: "paint5_linear_932_410528",
|
|
664
|
+
x1: "53.2454",
|
|
665
|
+
y1: "51.2165",
|
|
666
|
+
x2: "53.2454",
|
|
667
|
+
y2: "34.75",
|
|
668
|
+
gradientUnits: "userSpaceOnUse"
|
|
669
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
670
|
+
stopColor: "#DFE1E6"
|
|
671
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
672
|
+
offset: "1",
|
|
673
|
+
stopColor: "#C4C7CC"
|
|
674
|
+
}))));
|
|
675
|
+
};
|
|
676
|
+
var EmptySvgCrowd = function EmptySvgCrowd(_ref3) {
|
|
677
|
+
var _ = _ref3.size;
|
|
678
|
+
// TODO: 填入人群为空 SVG
|
|
679
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
680
|
+
width: "72",
|
|
681
|
+
height: "69",
|
|
682
|
+
viewBox: "0 0 72 69",
|
|
683
|
+
fill: "none",
|
|
684
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
685
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
686
|
+
filter: "url(#filter0_d_932_410569)"
|
|
687
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
688
|
+
fillRule: "evenodd",
|
|
689
|
+
clipRule: "evenodd",
|
|
690
|
+
d: "M36 61C52.5685 61 66 56.8027 66 51.625C66 46.4473 52.5685 42.25 36 42.25C19.4315 42.25 6 46.4473 6 51.625C6 56.8027 19.4315 61 36 61Z",
|
|
691
|
+
fill: "url(#paint0_linear_932_410569)"
|
|
692
|
+
})), /*#__PURE__*/React.createElement("mask", {
|
|
693
|
+
id: "mask0_932_410569",
|
|
694
|
+
style: {
|
|
695
|
+
maskType: 'luminance'
|
|
696
|
+
},
|
|
697
|
+
maskUnits: "userSpaceOnUse",
|
|
698
|
+
x: "6",
|
|
699
|
+
y: "4",
|
|
700
|
+
width: "60",
|
|
701
|
+
height: "57"
|
|
702
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
703
|
+
fillRule: "evenodd",
|
|
704
|
+
clipRule: "evenodd",
|
|
705
|
+
d: "M38.7921 4L61.2913 8.5L66 22.7652V35.8913L60.9016 46.395C64.121 47.889 66 49.6884 66 51.625C66 56.8027 52.5685 61 36 61C19.4315 61 6 56.8027 6 51.625C6 49.5611 8.13414 47.653 11.7504 46.1044L9.75 37.7246L7.021 26.5L16.2548 8.5L38.7921 4Z",
|
|
706
|
+
fill: "white"
|
|
707
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
708
|
+
mask: "url(#mask0_932_410569)"
|
|
709
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
710
|
+
filter: "url(#filter1_d_932_410569)"
|
|
711
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
712
|
+
fillRule: "evenodd",
|
|
713
|
+
clipRule: "evenodd",
|
|
714
|
+
d: "M24.6469 37.0324C27.4106 35.3113 29.25 32.2455 29.25 28.75C29.25 23.3652 24.8848 19 19.5 19C14.1152 19 9.75 23.3652 9.75 28.75C9.75 33.152 12.6673 36.8727 16.6739 38.0841C14.2059 43.3677 13.5 52.4165 13.5 56.8344C13.5 63.297 24.4352 62.8983 26.7111 61.994C28.514 61.2777 28.059 44.1297 24.6469 37.0324Z",
|
|
715
|
+
fill: "url(#paint1_linear_932_410569)"
|
|
716
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
717
|
+
filter: "url(#filter2_d_932_410569)"
|
|
718
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
719
|
+
fillRule: "evenodd",
|
|
720
|
+
clipRule: "evenodd",
|
|
721
|
+
d: "M18.375 35.5C21.0674 35.5 23.25 33.8379 23.25 31.7877C23.25 29.7374 13.5 29.7374 13.5 31.7877C13.5 33.8379 15.6826 35.5 18.375 35.5Z",
|
|
722
|
+
fill: "url(#paint2_linear_932_410569)"
|
|
723
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
724
|
+
filter: "url(#filter3_d_932_410569)"
|
|
725
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
726
|
+
fillRule: "evenodd",
|
|
727
|
+
clipRule: "evenodd",
|
|
728
|
+
d: "M48.1031 37.0324C45.3394 35.3113 43.5 32.2455 43.5 28.75C43.5 23.3652 47.8652 19 53.25 19C58.6348 19 63 23.3652 63 28.75C63 33.152 60.0827 36.8727 56.0761 38.0841C58.5441 43.3677 59.25 52.4165 59.25 56.8344C59.25 63.297 48.3148 62.8983 46.0389 61.994C44.236 61.2777 44.691 44.1297 48.1031 37.0324Z",
|
|
729
|
+
fill: "url(#paint3_linear_932_410569)"
|
|
730
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
731
|
+
filter: "url(#filter4_d_932_410569)"
|
|
732
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
733
|
+
fillRule: "evenodd",
|
|
734
|
+
clipRule: "evenodd",
|
|
735
|
+
d: "M54.375 35.5C57.0674 35.5 59.25 33.8379 59.25 31.7877C59.25 29.7374 49.5 29.7374 49.5 31.7877C49.5 33.8379 51.6826 35.5 54.375 35.5Z",
|
|
736
|
+
fill: "url(#paint4_linear_932_410569)"
|
|
737
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
738
|
+
filter: "url(#filter5_d_932_410569)"
|
|
739
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
740
|
+
fillRule: "evenodd",
|
|
741
|
+
clipRule: "evenodd",
|
|
742
|
+
d: "M29.2557 34.3972C25.2174 31.999 22.5 27.5131 22.5 22.375C22.5 14.712 28.5442 8.5 36 8.5C43.4558 8.5 49.5 14.712 49.5 22.375C49.5 27.4116 46.8889 31.8214 42.9821 34.2526C46.8842 41.3686 48 53.5099 48 59.0935C48.9584 65.0755 36.4102 63.1929 29.7614 62.1955C28.0905 61.9448 26.7922 61.75 26.1745 61.75C23.9079 61.75 24.6889 43.8255 29.2557 34.3972Z",
|
|
743
|
+
fill: "url(#paint5_linear_932_410569)"
|
|
744
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
745
|
+
filter: "url(#filter6_d_932_410569)"
|
|
746
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
747
|
+
fillRule: "evenodd",
|
|
748
|
+
clipRule: "evenodd",
|
|
749
|
+
d: "M34.8901 36.25C34.2505 36.25 33.7813 36.851 33.9364 37.4715L34.1821 38.4545C34.2907 38.8888 34.6788 39.1945 35.1255 39.1991H35.1056L33.84 42.9957C33.7136 43.3749 33.8294 43.7929 34.1329 44.053L35.5718 45.2863C35.9399 45.6019 36.4831 45.6019 36.8513 45.2863L38.2902 44.053C38.5936 43.7929 38.7094 43.3749 38.583 42.9957L37.3175 39.1991H37.2975C37.7443 39.1945 38.1323 38.8888 38.2409 38.4545L38.4867 37.4715C38.6418 36.851 38.1725 36.25 37.533 36.25H34.8901Z",
|
|
750
|
+
fill: "url(#paint6_linear_932_410569)"
|
|
751
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
752
|
+
filter: "url(#filter7_d_932_410569)"
|
|
753
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
754
|
+
fillRule: "evenodd",
|
|
755
|
+
clipRule: "evenodd",
|
|
756
|
+
d: "M59.25 4C59.6642 4 60 4.33579 60 4.75V8.5H63.75C64.1642 8.5 64.5 8.83579 64.5 9.25V10.75C64.5 11.1642 64.1642 11.5 63.75 11.5H60V15.25C60 15.6642 59.6642 16 59.25 16H57.75C57.3358 16 57 15.6642 57 15.25V11.5H53.25C52.8358 11.5 52.5 11.1642 52.5 10.75V9.25C52.5 8.83579 52.8358 8.5 53.25 8.5H57V4.75C57 4.33579 57.3358 4 57.75 4H59.25Z",
|
|
757
|
+
fill: "url(#paint7_linear_932_410569)"
|
|
758
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
759
|
+
filter: "url(#filter8_d_932_410569)"
|
|
760
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
761
|
+
fillRule: "evenodd",
|
|
762
|
+
clipRule: "evenodd",
|
|
763
|
+
d: "M18.375 16C20.239 16 21.75 14.489 21.75 12.625C21.75 10.761 20.239 9.25 18.375 9.25C16.511 9.25 15 10.761 15 12.625C15 14.489 16.511 16 18.375 16Z",
|
|
764
|
+
fill: "url(#paint8_linear_932_410569)"
|
|
765
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
766
|
+
fillRule: "evenodd",
|
|
767
|
+
clipRule: "evenodd",
|
|
768
|
+
d: "M36 31C39.7279 31 42.75 28.6256 42.75 25.6967C42.75 22.7678 29.25 22.7678 29.25 25.6967C29.25 28.6256 32.2721 31 36 31Z",
|
|
769
|
+
fill: "url(#paint9_linear_932_410569)"
|
|
770
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
771
|
+
id: "filter0_d_932_410569",
|
|
772
|
+
x: "0",
|
|
773
|
+
y: "38.25",
|
|
774
|
+
width: "72",
|
|
775
|
+
height: "30.75",
|
|
776
|
+
filterUnits: "userSpaceOnUse",
|
|
777
|
+
colorInterpolationFilters: "sRGB"
|
|
778
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
779
|
+
floodOpacity: "0",
|
|
780
|
+
result: "BackgroundImageFix"
|
|
781
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
782
|
+
in: "SourceAlpha",
|
|
783
|
+
type: "matrix",
|
|
784
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
785
|
+
result: "hardAlpha"
|
|
786
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
787
|
+
dy: "2"
|
|
788
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
789
|
+
stdDeviation: "3"
|
|
790
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
791
|
+
type: "matrix",
|
|
792
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
793
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
794
|
+
mode: "normal",
|
|
795
|
+
in2: "BackgroundImageFix",
|
|
796
|
+
result: "effect1_dropShadow_932_410569"
|
|
797
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
798
|
+
mode: "normal",
|
|
799
|
+
in: "SourceGraphic",
|
|
800
|
+
in2: "effect1_dropShadow_932_410569",
|
|
801
|
+
result: "shape"
|
|
802
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
803
|
+
id: "filter1_d_932_410569",
|
|
804
|
+
x: "3.75",
|
|
805
|
+
y: "15",
|
|
806
|
+
width: "31.5",
|
|
807
|
+
height: "55.5",
|
|
808
|
+
filterUnits: "userSpaceOnUse",
|
|
809
|
+
colorInterpolationFilters: "sRGB"
|
|
810
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
811
|
+
floodOpacity: "0",
|
|
812
|
+
result: "BackgroundImageFix"
|
|
813
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
814
|
+
in: "SourceAlpha",
|
|
815
|
+
type: "matrix",
|
|
816
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
817
|
+
result: "hardAlpha"
|
|
818
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
819
|
+
dy: "2"
|
|
820
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
821
|
+
stdDeviation: "3"
|
|
822
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
823
|
+
type: "matrix",
|
|
824
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
825
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
826
|
+
mode: "normal",
|
|
827
|
+
in2: "BackgroundImageFix",
|
|
828
|
+
result: "effect1_dropShadow_932_410569"
|
|
829
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
830
|
+
mode: "normal",
|
|
831
|
+
in: "SourceGraphic",
|
|
832
|
+
in2: "effect1_dropShadow_932_410569",
|
|
833
|
+
result: "shape"
|
|
834
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
835
|
+
id: "filter2_d_932_410569",
|
|
836
|
+
x: "7.5",
|
|
837
|
+
y: "26.25",
|
|
838
|
+
width: "21.75",
|
|
839
|
+
height: "17.25",
|
|
840
|
+
filterUnits: "userSpaceOnUse",
|
|
841
|
+
colorInterpolationFilters: "sRGB"
|
|
842
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
843
|
+
floodOpacity: "0",
|
|
844
|
+
result: "BackgroundImageFix"
|
|
845
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
846
|
+
in: "SourceAlpha",
|
|
847
|
+
type: "matrix",
|
|
848
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
849
|
+
result: "hardAlpha"
|
|
850
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
851
|
+
dy: "2"
|
|
852
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
853
|
+
stdDeviation: "3"
|
|
854
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
855
|
+
type: "matrix",
|
|
856
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
857
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
858
|
+
mode: "normal",
|
|
859
|
+
in2: "BackgroundImageFix",
|
|
860
|
+
result: "effect1_dropShadow_932_410569"
|
|
861
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
862
|
+
mode: "normal",
|
|
863
|
+
in: "SourceGraphic",
|
|
864
|
+
in2: "effect1_dropShadow_932_410569",
|
|
865
|
+
result: "shape"
|
|
866
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
867
|
+
id: "filter3_d_932_410569",
|
|
868
|
+
x: "37.5",
|
|
869
|
+
y: "15",
|
|
870
|
+
width: "31.5",
|
|
871
|
+
height: "55.5",
|
|
872
|
+
filterUnits: "userSpaceOnUse",
|
|
873
|
+
colorInterpolationFilters: "sRGB"
|
|
874
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
875
|
+
floodOpacity: "0",
|
|
876
|
+
result: "BackgroundImageFix"
|
|
877
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
878
|
+
in: "SourceAlpha",
|
|
879
|
+
type: "matrix",
|
|
880
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
881
|
+
result: "hardAlpha"
|
|
882
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
883
|
+
dy: "2"
|
|
884
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
885
|
+
stdDeviation: "3"
|
|
886
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
887
|
+
type: "matrix",
|
|
888
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
889
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
890
|
+
mode: "normal",
|
|
891
|
+
in2: "BackgroundImageFix",
|
|
892
|
+
result: "effect1_dropShadow_932_410569"
|
|
893
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
894
|
+
mode: "normal",
|
|
895
|
+
in: "SourceGraphic",
|
|
896
|
+
in2: "effect1_dropShadow_932_410569",
|
|
897
|
+
result: "shape"
|
|
898
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
899
|
+
id: "filter4_d_932_410569",
|
|
900
|
+
x: "43.5",
|
|
901
|
+
y: "26.25",
|
|
902
|
+
width: "21.75",
|
|
903
|
+
height: "17.25",
|
|
904
|
+
filterUnits: "userSpaceOnUse",
|
|
905
|
+
colorInterpolationFilters: "sRGB"
|
|
906
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
907
|
+
floodOpacity: "0",
|
|
908
|
+
result: "BackgroundImageFix"
|
|
909
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
910
|
+
in: "SourceAlpha",
|
|
911
|
+
type: "matrix",
|
|
912
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
913
|
+
result: "hardAlpha"
|
|
914
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
915
|
+
dy: "2"
|
|
916
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
917
|
+
stdDeviation: "3"
|
|
918
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
919
|
+
type: "matrix",
|
|
920
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
921
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
922
|
+
mode: "normal",
|
|
923
|
+
in2: "BackgroundImageFix",
|
|
924
|
+
result: "effect1_dropShadow_932_410569"
|
|
925
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
926
|
+
mode: "normal",
|
|
927
|
+
in: "SourceGraphic",
|
|
928
|
+
in2: "effect1_dropShadow_932_410569",
|
|
929
|
+
result: "shape"
|
|
930
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
931
|
+
id: "filter5_d_932_410569",
|
|
932
|
+
x: "16.5",
|
|
933
|
+
y: "4.5",
|
|
934
|
+
width: "39",
|
|
935
|
+
height: "66.7826",
|
|
936
|
+
filterUnits: "userSpaceOnUse",
|
|
937
|
+
colorInterpolationFilters: "sRGB"
|
|
938
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
939
|
+
floodOpacity: "0",
|
|
940
|
+
result: "BackgroundImageFix"
|
|
941
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
942
|
+
in: "SourceAlpha",
|
|
943
|
+
type: "matrix",
|
|
944
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
945
|
+
result: "hardAlpha"
|
|
946
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
947
|
+
dy: "2"
|
|
948
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
949
|
+
stdDeviation: "3"
|
|
950
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
951
|
+
type: "matrix",
|
|
952
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
953
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
954
|
+
mode: "normal",
|
|
955
|
+
in2: "BackgroundImageFix",
|
|
956
|
+
result: "effect1_dropShadow_932_410569"
|
|
957
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
958
|
+
mode: "normal",
|
|
959
|
+
in: "SourceGraphic",
|
|
960
|
+
in2: "effect1_dropShadow_932_410569",
|
|
961
|
+
result: "shape"
|
|
962
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
963
|
+
id: "filter6_d_932_410569",
|
|
964
|
+
x: "27.7896",
|
|
965
|
+
y: "32.25",
|
|
966
|
+
width: "16.844",
|
|
967
|
+
height: "21.273",
|
|
968
|
+
filterUnits: "userSpaceOnUse",
|
|
969
|
+
colorInterpolationFilters: "sRGB"
|
|
970
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
971
|
+
floodOpacity: "0",
|
|
972
|
+
result: "BackgroundImageFix"
|
|
973
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
974
|
+
in: "SourceAlpha",
|
|
975
|
+
type: "matrix",
|
|
976
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
977
|
+
result: "hardAlpha"
|
|
978
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
979
|
+
dy: "2"
|
|
980
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
981
|
+
stdDeviation: "3"
|
|
982
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
983
|
+
type: "matrix",
|
|
984
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
985
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
986
|
+
mode: "normal",
|
|
987
|
+
in2: "BackgroundImageFix",
|
|
988
|
+
result: "effect1_dropShadow_932_410569"
|
|
989
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
990
|
+
mode: "normal",
|
|
991
|
+
in: "SourceGraphic",
|
|
992
|
+
in2: "effect1_dropShadow_932_410569",
|
|
993
|
+
result: "shape"
|
|
994
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
995
|
+
id: "filter7_d_932_410569",
|
|
996
|
+
x: "46.5",
|
|
997
|
+
y: "0",
|
|
998
|
+
width: "24",
|
|
999
|
+
height: "24",
|
|
1000
|
+
filterUnits: "userSpaceOnUse",
|
|
1001
|
+
colorInterpolationFilters: "sRGB"
|
|
1002
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1003
|
+
floodOpacity: "0",
|
|
1004
|
+
result: "BackgroundImageFix"
|
|
1005
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1006
|
+
in: "SourceAlpha",
|
|
1007
|
+
type: "matrix",
|
|
1008
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1009
|
+
result: "hardAlpha"
|
|
1010
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1011
|
+
dy: "2"
|
|
1012
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1013
|
+
stdDeviation: "3"
|
|
1014
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1015
|
+
type: "matrix",
|
|
1016
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1017
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1018
|
+
mode: "normal",
|
|
1019
|
+
in2: "BackgroundImageFix",
|
|
1020
|
+
result: "effect1_dropShadow_932_410569"
|
|
1021
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1022
|
+
mode: "normal",
|
|
1023
|
+
in: "SourceGraphic",
|
|
1024
|
+
in2: "effect1_dropShadow_932_410569",
|
|
1025
|
+
result: "shape"
|
|
1026
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1027
|
+
id: "filter8_d_932_410569",
|
|
1028
|
+
x: "9",
|
|
1029
|
+
y: "5.25",
|
|
1030
|
+
width: "18.75",
|
|
1031
|
+
height: "18.75",
|
|
1032
|
+
filterUnits: "userSpaceOnUse",
|
|
1033
|
+
colorInterpolationFilters: "sRGB"
|
|
1034
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1035
|
+
floodOpacity: "0",
|
|
1036
|
+
result: "BackgroundImageFix"
|
|
1037
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1038
|
+
in: "SourceAlpha",
|
|
1039
|
+
type: "matrix",
|
|
1040
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1041
|
+
result: "hardAlpha"
|
|
1042
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1043
|
+
dy: "2"
|
|
1044
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1045
|
+
stdDeviation: "3"
|
|
1046
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1047
|
+
type: "matrix",
|
|
1048
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1049
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1050
|
+
mode: "normal",
|
|
1051
|
+
in2: "BackgroundImageFix",
|
|
1052
|
+
result: "effect1_dropShadow_932_410569"
|
|
1053
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1054
|
+
mode: "normal",
|
|
1055
|
+
in: "SourceGraphic",
|
|
1056
|
+
in2: "effect1_dropShadow_932_410569",
|
|
1057
|
+
result: "shape"
|
|
1058
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1059
|
+
id: "paint0_linear_932_410569",
|
|
1060
|
+
x1: "65.939",
|
|
1061
|
+
y1: "60.9619",
|
|
1062
|
+
x2: "65.939",
|
|
1063
|
+
y2: "42.25",
|
|
1064
|
+
gradientUnits: "userSpaceOnUse"
|
|
1065
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1066
|
+
stopColor: "#DFE1E6"
|
|
1067
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1068
|
+
offset: "1",
|
|
1069
|
+
stopColor: "#C4C7CC"
|
|
1070
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1071
|
+
id: "paint1_linear_932_410569",
|
|
1072
|
+
x1: "29.2302",
|
|
1073
|
+
y1: "62.4116",
|
|
1074
|
+
x2: "29.2302",
|
|
1075
|
+
y2: "19",
|
|
1076
|
+
gradientUnits: "userSpaceOnUse"
|
|
1077
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1078
|
+
stopColor: "#EDEFF2"
|
|
1079
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1080
|
+
offset: "1",
|
|
1081
|
+
stopColor: "#DFE1E6"
|
|
1082
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1083
|
+
id: "paint2_linear_932_410569",
|
|
1084
|
+
x1: "13.5174",
|
|
1085
|
+
y1: "30.25",
|
|
1086
|
+
x2: "13.5174",
|
|
1087
|
+
y2: "35.4813",
|
|
1088
|
+
gradientUnits: "userSpaceOnUse"
|
|
1089
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1090
|
+
stopColor: "#E6E8ED"
|
|
1091
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1092
|
+
offset: "1",
|
|
1093
|
+
stopColor: "#F2F4F7"
|
|
1094
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1095
|
+
id: "paint3_linear_932_410569",
|
|
1096
|
+
x1: "43.5198",
|
|
1097
|
+
y1: "62.4116",
|
|
1098
|
+
x2: "43.5198",
|
|
1099
|
+
y2: "19",
|
|
1100
|
+
gradientUnits: "userSpaceOnUse"
|
|
1101
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1102
|
+
stopColor: "#EDEFF2"
|
|
1103
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1104
|
+
offset: "1",
|
|
1105
|
+
stopColor: "#DFE1E6"
|
|
1106
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1107
|
+
id: "paint4_linear_932_410569",
|
|
1108
|
+
x1: "49.5174",
|
|
1109
|
+
y1: "30.25",
|
|
1110
|
+
x2: "49.5174",
|
|
1111
|
+
y2: "35.4813",
|
|
1112
|
+
gradientUnits: "userSpaceOnUse"
|
|
1113
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1114
|
+
stopColor: "#E6E8ED"
|
|
1115
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1116
|
+
offset: "1",
|
|
1117
|
+
stopColor: "#F2F4F7"
|
|
1118
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1119
|
+
id: "paint5_linear_932_410569",
|
|
1120
|
+
x1: "22.5481",
|
|
1121
|
+
y1: "8.5",
|
|
1122
|
+
x2: "22.5481",
|
|
1123
|
+
y2: "63.0874",
|
|
1124
|
+
gradientUnits: "userSpaceOnUse"
|
|
1125
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1126
|
+
stopColor: "#E6E8ED"
|
|
1127
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1128
|
+
offset: "1",
|
|
1129
|
+
stopColor: "#F2F4F7"
|
|
1130
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1131
|
+
id: "paint6_linear_932_410569",
|
|
1132
|
+
x1: "38.6286",
|
|
1133
|
+
y1: "45.5042",
|
|
1134
|
+
x2: "38.6286",
|
|
1135
|
+
y2: "36.25",
|
|
1136
|
+
gradientUnits: "userSpaceOnUse"
|
|
1137
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1138
|
+
stopColor: "#DFE1E6"
|
|
1139
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1140
|
+
offset: "1",
|
|
1141
|
+
stopColor: "#C4C7CC"
|
|
1142
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1143
|
+
id: "paint7_linear_932_410569",
|
|
1144
|
+
x1: "64.4878",
|
|
1145
|
+
y1: "15.9756",
|
|
1146
|
+
x2: "64.4878",
|
|
1147
|
+
y2: "4",
|
|
1148
|
+
gradientUnits: "userSpaceOnUse"
|
|
1149
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1150
|
+
stopColor: "#DFE1E6"
|
|
1151
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1152
|
+
offset: "1",
|
|
1153
|
+
stopColor: "#C4C7CC"
|
|
1154
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1155
|
+
id: "paint8_linear_932_410569",
|
|
1156
|
+
x1: "21.7431",
|
|
1157
|
+
y1: "15.9863",
|
|
1158
|
+
x2: "21.7431",
|
|
1159
|
+
y2: "9.25",
|
|
1160
|
+
gradientUnits: "userSpaceOnUse"
|
|
1161
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1162
|
+
stopColor: "#DFE1E6"
|
|
1163
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1164
|
+
offset: "1",
|
|
1165
|
+
stopColor: "#C4C7CC"
|
|
1166
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1167
|
+
id: "paint9_linear_932_410569",
|
|
1168
|
+
x1: "29.25",
|
|
1169
|
+
y1: "23.5",
|
|
1170
|
+
x2: "29.25",
|
|
1171
|
+
y2: "31",
|
|
1172
|
+
gradientUnits: "userSpaceOnUse"
|
|
1173
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1174
|
+
stopColor: "#F7F9FC"
|
|
1175
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1176
|
+
offset: "1",
|
|
1177
|
+
stopColor: "white"
|
|
1178
|
+
}))));
|
|
1179
|
+
};
|
|
1180
|
+
var EmptySvgAddress = function EmptySvgAddress(_ref4) {
|
|
1181
|
+
var _ = _ref4.size;
|
|
1182
|
+
// TODO: 填入地址为空 SVG
|
|
1183
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1184
|
+
width: "72",
|
|
1185
|
+
height: "70",
|
|
1186
|
+
viewBox: "0 0 72 70",
|
|
1187
|
+
fill: "none",
|
|
1188
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1189
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1190
|
+
filter: "url(#filter0_d_932_410590)"
|
|
1191
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1192
|
+
fillRule: "evenodd",
|
|
1193
|
+
clipRule: "evenodd",
|
|
1194
|
+
d: "M6 23C6 20.7909 7.79086 19 10 19H47C49.2091 19 51 20.7909 51 23V51C51 53.2091 49.2091 55 47 55H10C7.79086 55 6 53.2091 6 51V23Z",
|
|
1195
|
+
fill: "url(#paint0_linear_932_410590)"
|
|
1196
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1197
|
+
filter: "url(#filter1_d_932_410590)"
|
|
1198
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1199
|
+
fillRule: "evenodd",
|
|
1200
|
+
clipRule: "evenodd",
|
|
1201
|
+
d: "M11.25 10.25C11.25 8.04086 13.0409 6.25 15.25 6.25H55.25C57.4591 6.25 59.25 8.04086 59.25 10.25V57.75C59.25 59.9591 57.4591 61.75 55.25 61.75H15.25C13.0409 61.75 11.25 59.9591 11.25 57.75V10.25Z",
|
|
1202
|
+
fill: "url(#paint1_linear_932_410590)"
|
|
1203
|
+
})), /*#__PURE__*/React.createElement("mask", {
|
|
1204
|
+
id: "mask0_932_410590",
|
|
1205
|
+
style: {
|
|
1206
|
+
maskType: 'luminance'
|
|
1207
|
+
},
|
|
1208
|
+
maskUnits: "userSpaceOnUse",
|
|
1209
|
+
x: "11",
|
|
1210
|
+
y: "6",
|
|
1211
|
+
width: "49",
|
|
1212
|
+
height: "56"
|
|
1213
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1214
|
+
fillRule: "evenodd",
|
|
1215
|
+
clipRule: "evenodd",
|
|
1216
|
+
d: "M11.25 10.25C11.25 8.04086 13.0409 6.25 15.25 6.25H55.25C57.4591 6.25 59.25 8.04086 59.25 10.25V57.75C59.25 59.9591 57.4591 61.75 55.25 61.75H15.25C13.0409 61.75 11.25 59.9591 11.25 57.75V10.25Z",
|
|
1217
|
+
fill: "white"
|
|
1218
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1219
|
+
mask: "url(#mask0_932_410590)"
|
|
1220
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1221
|
+
fillRule: "evenodd",
|
|
1222
|
+
clipRule: "evenodd",
|
|
1223
|
+
d: "M75.7776 19.2108C76.1918 19.9282 75.946 20.8456 75.2285 21.2598L32.3603 46.0098L52.6103 81.0839C53.0245 81.8013 52.7787 82.7187 52.0613 83.1329C51.3438 83.5471 50.4264 83.3013 50.0122 82.5839L29.7622 47.5098L-16.3536 74.1348C-17.0711 74.5491 -17.9885 74.3032 -18.4027 73.5858C-18.8169 72.8684 -18.5711 71.951 -17.8536 71.5368L17.8699 50.9118L13.3699 43.1175C12.9557 42.4001 13.2015 41.4827 13.919 41.0685L23.0122 35.8185L5.38722 5.2911C4.973 4.57366 5.21882 3.65628 5.93626 3.24206C6.65369 2.82785 7.57108 3.07366 7.98529 3.7911L30.8603 43.4118L73.7285 18.6618C74.446 18.2476 75.3634 18.4934 75.7776 19.2108ZM16.718 42.9166L20.468 49.4118L28.2622 44.9118L24.5122 38.4166L16.718 42.9166Z",
|
|
1224
|
+
fill: "url(#paint2_linear_932_410590)"
|
|
1225
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1226
|
+
filter: "url(#filter2_d_932_410590)"
|
|
1227
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1228
|
+
fillRule: "evenodd",
|
|
1229
|
+
clipRule: "evenodd",
|
|
1230
|
+
d: "M24.7344 4.00002C29.2979 3.99066 33 7.57787 33 12.0032C33.0026 14.2285 32.0478 16.3539 30.3658 17.8668L25.2111 22.5684C24.9464 22.8105 24.5329 22.8105 24.2682 22.5684L19.0885 17.8292C17.453 16.3341 16.5162 14.2527 16.5003 12.0697C16.4624 7.64047 20.1685 4.00788 24.7344 4.00002Z",
|
|
1231
|
+
fill: "url(#paint3_linear_932_410590)"
|
|
1232
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
1233
|
+
fillRule: "evenodd",
|
|
1234
|
+
clipRule: "evenodd",
|
|
1235
|
+
d: "M24.75 14.5C26.4069 14.5 27.75 13.1569 27.75 11.5C27.75 9.84315 26.4069 8.5 24.75 8.5C23.0931 8.5 21.75 9.84315 21.75 11.5C21.75 13.1569 23.0931 14.5 24.75 14.5Z",
|
|
1236
|
+
fill: "url(#paint4_linear_932_410590)"
|
|
1237
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
1238
|
+
filter: "url(#filter3_d_932_410590)"
|
|
1239
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1240
|
+
fillRule: "evenodd",
|
|
1241
|
+
clipRule: "evenodd",
|
|
1242
|
+
d: "M47.2401 43C50.1441 42.994 52.5 45.2898 52.5 48.122C52.5016 49.5462 51.894 50.9065 50.8237 51.8748L47.5434 54.8838C47.375 55.0387 47.1119 55.0387 46.9434 54.8838L43.6472 51.8507C42.6065 50.8938 42.0103 49.5617 42.0002 48.1646C41.9761 45.3299 44.3345 43.005 47.2401 43Z",
|
|
1243
|
+
fill: "url(#paint5_linear_932_410590)"
|
|
1244
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1245
|
+
filter: "url(#filter4_d_932_410590)"
|
|
1246
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1247
|
+
fillRule: "evenodd",
|
|
1248
|
+
clipRule: "evenodd",
|
|
1249
|
+
d: "M64.6349 41.0968C65.4393 40.3361 65.4726 39.0667 64.7093 38.2648L59.0249 32.2929C60.5838 30.1674 61.4611 27.6273 61.5344 24.941C61.6283 21.4457 60.3511 18.1214 57.9353 15.5852C55.5196 13.0451 52.255 11.5983 48.7456 11.5048C45.2322 11.4113 41.8983 12.6834 39.3518 15.0895C36.8014 17.4955 35.3487 20.7468 35.2548 24.242C35.161 27.7371 36.4382 31.0616 38.8541 33.5977C41.2699 36.1378 44.5344 37.5845 48.0438 37.6779C48.1662 37.6821 48.2845 37.6821 48.4069 37.6821C50.9737 37.6821 53.4344 36.9507 55.5481 35.5768L61.2415 41.5615C62.0013 42.3601 63.2639 42.3934 64.0648 41.636L64.6349 41.0968ZM48.1458 33.7684C45.6851 33.7033 43.3959 32.6872 41.6982 30.903C40.0048 29.123 39.1069 26.7903 39.1723 24.3395C39.2377 21.8888 40.2579 19.6087 42.0491 17.9181C43.7753 16.2883 46.0157 15.3983 48.3865 15.3983C48.4722 15.3983 48.5579 15.3983 48.6396 15.4025C51.1002 15.4674 53.3894 16.4834 55.087 18.2676C56.7805 20.0477 57.6783 22.3806 57.6129 24.8312C57.5476 27.282 56.5274 29.562 54.7362 31.2527C52.9489 32.9432 50.6064 33.8333 48.1458 33.7684Z",
|
|
1250
|
+
fill: "url(#paint6_linear_932_410590)"
|
|
1251
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
1252
|
+
fillRule: "evenodd",
|
|
1253
|
+
clipRule: "evenodd",
|
|
1254
|
+
d: "M48.375 34C53.5527 34 57.75 29.8027 57.75 24.625C57.75 19.4473 53.5527 15.25 48.375 15.25C43.1973 15.25 39 19.4473 39 24.625C39 29.8027 43.1973 34 48.375 34Z",
|
|
1255
|
+
fill: "url(#paint7_linear_932_410590)"
|
|
1256
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
1257
|
+
id: "filter0_d_932_410590",
|
|
1258
|
+
x: "0",
|
|
1259
|
+
y: "15",
|
|
1260
|
+
width: "57",
|
|
1261
|
+
height: "48",
|
|
1262
|
+
filterUnits: "userSpaceOnUse",
|
|
1263
|
+
colorInterpolationFilters: "sRGB"
|
|
1264
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1265
|
+
floodOpacity: "0",
|
|
1266
|
+
result: "BackgroundImageFix"
|
|
1267
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1268
|
+
in: "SourceAlpha",
|
|
1269
|
+
type: "matrix",
|
|
1270
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1271
|
+
result: "hardAlpha"
|
|
1272
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1273
|
+
dy: "2"
|
|
1274
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1275
|
+
stdDeviation: "3"
|
|
1276
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1277
|
+
type: "matrix",
|
|
1278
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1279
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1280
|
+
mode: "normal",
|
|
1281
|
+
in2: "BackgroundImageFix",
|
|
1282
|
+
result: "effect1_dropShadow_932_410590"
|
|
1283
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1284
|
+
mode: "normal",
|
|
1285
|
+
in: "SourceGraphic",
|
|
1286
|
+
in2: "effect1_dropShadow_932_410590",
|
|
1287
|
+
result: "shape"
|
|
1288
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1289
|
+
id: "filter1_d_932_410590",
|
|
1290
|
+
x: "5.25",
|
|
1291
|
+
y: "2.25",
|
|
1292
|
+
width: "60",
|
|
1293
|
+
height: "67.5",
|
|
1294
|
+
filterUnits: "userSpaceOnUse",
|
|
1295
|
+
colorInterpolationFilters: "sRGB"
|
|
1296
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1297
|
+
floodOpacity: "0",
|
|
1298
|
+
result: "BackgroundImageFix"
|
|
1299
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1300
|
+
in: "SourceAlpha",
|
|
1301
|
+
type: "matrix",
|
|
1302
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1303
|
+
result: "hardAlpha"
|
|
1304
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1305
|
+
dy: "2"
|
|
1306
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1307
|
+
stdDeviation: "3"
|
|
1308
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1309
|
+
type: "matrix",
|
|
1310
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1311
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1312
|
+
mode: "normal",
|
|
1313
|
+
in2: "BackgroundImageFix",
|
|
1314
|
+
result: "effect1_dropShadow_932_410590"
|
|
1315
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1316
|
+
mode: "normal",
|
|
1317
|
+
in: "SourceGraphic",
|
|
1318
|
+
in2: "effect1_dropShadow_932_410590",
|
|
1319
|
+
result: "shape"
|
|
1320
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1321
|
+
id: "filter2_d_932_410590",
|
|
1322
|
+
x: "10.5",
|
|
1323
|
+
y: "0",
|
|
1324
|
+
width: "28.5",
|
|
1325
|
+
height: "30.75",
|
|
1326
|
+
filterUnits: "userSpaceOnUse",
|
|
1327
|
+
colorInterpolationFilters: "sRGB"
|
|
1328
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1329
|
+
floodOpacity: "0",
|
|
1330
|
+
result: "BackgroundImageFix"
|
|
1331
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1332
|
+
in: "SourceAlpha",
|
|
1333
|
+
type: "matrix",
|
|
1334
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1335
|
+
result: "hardAlpha"
|
|
1336
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1337
|
+
dy: "2"
|
|
1338
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1339
|
+
stdDeviation: "3"
|
|
1340
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1341
|
+
type: "matrix",
|
|
1342
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1343
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1344
|
+
mode: "normal",
|
|
1345
|
+
in2: "BackgroundImageFix",
|
|
1346
|
+
result: "effect1_dropShadow_932_410590"
|
|
1347
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1348
|
+
mode: "normal",
|
|
1349
|
+
in: "SourceGraphic",
|
|
1350
|
+
in2: "effect1_dropShadow_932_410590",
|
|
1351
|
+
result: "shape"
|
|
1352
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1353
|
+
id: "filter3_d_932_410590",
|
|
1354
|
+
x: "36",
|
|
1355
|
+
y: "39",
|
|
1356
|
+
width: "22.5",
|
|
1357
|
+
height: "24",
|
|
1358
|
+
filterUnits: "userSpaceOnUse",
|
|
1359
|
+
colorInterpolationFilters: "sRGB"
|
|
1360
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1361
|
+
floodOpacity: "0",
|
|
1362
|
+
result: "BackgroundImageFix"
|
|
1363
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1364
|
+
in: "SourceAlpha",
|
|
1365
|
+
type: "matrix",
|
|
1366
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1367
|
+
result: "hardAlpha"
|
|
1368
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1369
|
+
dy: "2"
|
|
1370
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1371
|
+
stdDeviation: "3"
|
|
1372
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1373
|
+
type: "matrix",
|
|
1374
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1375
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1376
|
+
mode: "normal",
|
|
1377
|
+
in2: "BackgroundImageFix",
|
|
1378
|
+
result: "effect1_dropShadow_932_410590"
|
|
1379
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1380
|
+
mode: "normal",
|
|
1381
|
+
in: "SourceGraphic",
|
|
1382
|
+
in2: "effect1_dropShadow_932_410590",
|
|
1383
|
+
result: "shape"
|
|
1384
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1385
|
+
id: "filter4_d_932_410590",
|
|
1386
|
+
x: "29.25",
|
|
1387
|
+
y: "7.5",
|
|
1388
|
+
width: "42.0107",
|
|
1389
|
+
height: "42.6829",
|
|
1390
|
+
filterUnits: "userSpaceOnUse",
|
|
1391
|
+
colorInterpolationFilters: "sRGB"
|
|
1392
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1393
|
+
floodOpacity: "0",
|
|
1394
|
+
result: "BackgroundImageFix"
|
|
1395
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1396
|
+
in: "SourceAlpha",
|
|
1397
|
+
type: "matrix",
|
|
1398
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1399
|
+
result: "hardAlpha"
|
|
1400
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1401
|
+
dy: "2"
|
|
1402
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1403
|
+
stdDeviation: "3"
|
|
1404
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1405
|
+
type: "matrix",
|
|
1406
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1407
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1408
|
+
mode: "normal",
|
|
1409
|
+
in2: "BackgroundImageFix",
|
|
1410
|
+
result: "effect1_dropShadow_932_410590"
|
|
1411
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1412
|
+
mode: "normal",
|
|
1413
|
+
in: "SourceGraphic",
|
|
1414
|
+
in2: "effect1_dropShadow_932_410590",
|
|
1415
|
+
result: "shape"
|
|
1416
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1417
|
+
id: "paint0_linear_932_410590",
|
|
1418
|
+
x1: "50.9543",
|
|
1419
|
+
y1: "54.9268",
|
|
1420
|
+
x2: "50.9543",
|
|
1421
|
+
y2: "19",
|
|
1422
|
+
gradientUnits: "userSpaceOnUse"
|
|
1423
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1424
|
+
stopColor: "#EDEFF2"
|
|
1425
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1426
|
+
offset: "1",
|
|
1427
|
+
stopColor: "#DFE1E6"
|
|
1428
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1429
|
+
id: "paint1_linear_932_410590",
|
|
1430
|
+
x1: "11.3355",
|
|
1431
|
+
y1: "6.25",
|
|
1432
|
+
x2: "11.3355",
|
|
1433
|
+
y2: "61.5522",
|
|
1434
|
+
gradientUnits: "userSpaceOnUse"
|
|
1435
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1436
|
+
stopColor: "#E6E8ED"
|
|
1437
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1438
|
+
offset: "1",
|
|
1439
|
+
stopColor: "#F2F4F7"
|
|
1440
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1441
|
+
id: "paint2_linear_932_410590",
|
|
1442
|
+
x1: "51.4026",
|
|
1443
|
+
y1: "-23.0079",
|
|
1444
|
+
x2: "-42.7777",
|
|
1445
|
+
y2: "31.3671",
|
|
1446
|
+
gradientUnits: "userSpaceOnUse"
|
|
1447
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1448
|
+
stopColor: "#F7F9FC"
|
|
1449
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1450
|
+
offset: "1",
|
|
1451
|
+
stopColor: "white"
|
|
1452
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1453
|
+
id: "paint3_linear_932_410590",
|
|
1454
|
+
x1: "32.9832",
|
|
1455
|
+
y1: "22.7119",
|
|
1456
|
+
x2: "32.9832",
|
|
1457
|
+
y2: "4",
|
|
1458
|
+
gradientUnits: "userSpaceOnUse"
|
|
1459
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1460
|
+
stopColor: "#DFE1E6"
|
|
1461
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1462
|
+
offset: "1",
|
|
1463
|
+
stopColor: "#C4C7CC"
|
|
1464
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1465
|
+
id: "paint4_linear_932_410590",
|
|
1466
|
+
x1: "21.75",
|
|
1467
|
+
y1: "8.5",
|
|
1468
|
+
x2: "21.75",
|
|
1469
|
+
y2: "14.5",
|
|
1470
|
+
gradientUnits: "userSpaceOnUse"
|
|
1471
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1472
|
+
stopColor: "#F7F9FC"
|
|
1473
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1474
|
+
offset: "1",
|
|
1475
|
+
stopColor: "white"
|
|
1476
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1477
|
+
id: "paint5_linear_932_410590",
|
|
1478
|
+
x1: "52.4893",
|
|
1479
|
+
y1: "54.9756",
|
|
1480
|
+
x2: "52.4893",
|
|
1481
|
+
y2: "43",
|
|
1482
|
+
gradientUnits: "userSpaceOnUse"
|
|
1483
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1484
|
+
stopColor: "#DFE1E6"
|
|
1485
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1486
|
+
offset: "1",
|
|
1487
|
+
stopColor: "#C4C7CC"
|
|
1488
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1489
|
+
id: "paint6_linear_932_410590",
|
|
1490
|
+
x1: "65.2302",
|
|
1491
|
+
y1: "42.1206",
|
|
1492
|
+
x2: "65.2302",
|
|
1493
|
+
y2: "11.5",
|
|
1494
|
+
gradientUnits: "userSpaceOnUse"
|
|
1495
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1496
|
+
stopColor: "#DFE1E6"
|
|
1497
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1498
|
+
offset: "1",
|
|
1499
|
+
stopColor: "#C4C7CC"
|
|
1500
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1501
|
+
id: "paint7_linear_932_410590",
|
|
1502
|
+
x1: "39",
|
|
1503
|
+
y1: "15.25",
|
|
1504
|
+
x2: "39",
|
|
1505
|
+
y2: "34",
|
|
1506
|
+
gradientUnits: "userSpaceOnUse"
|
|
1507
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1508
|
+
stopColor: "#F7F9FC"
|
|
1509
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1510
|
+
offset: "1",
|
|
1511
|
+
stopColor: "white"
|
|
1512
|
+
}))));
|
|
1513
|
+
};
|
|
1514
|
+
var EmptySvgMessage = function EmptySvgMessage(_ref5) {
|
|
1515
|
+
var _ = _ref5.size;
|
|
1516
|
+
// TODO: 填入消息为空 SVG
|
|
1517
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1518
|
+
width: "72",
|
|
1519
|
+
height: "70",
|
|
1520
|
+
viewBox: "0 0 72 70",
|
|
1521
|
+
fill: "none",
|
|
1522
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1523
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1524
|
+
filter: "url(#filter0_d_932_410636)"
|
|
1525
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1526
|
+
fillRule: "evenodd",
|
|
1527
|
+
clipRule: "evenodd",
|
|
1528
|
+
d: "M37.8066 8.65274C36.3262 7.44909 34.1977 7.44909 32.7177 8.65274L7.67601 28.9788C6.62329 29.8333 6.01196 31.1168 6.01196 32.4727V60.25C6.01196 61.0784 6.68354 61.75 7.51196 61.75H63.012C63.8404 61.75 64.512 61.0784 64.512 60.25V32.4727C64.512 31.1168 63.9006 29.8333 62.8479 28.9788L37.8066 8.65274Z",
|
|
1529
|
+
fill: "url(#paint0_linear_932_410636)"
|
|
1530
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1531
|
+
filter: "url(#filter1_d_932_410636)"
|
|
1532
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
1533
|
+
x: "12.012",
|
|
1534
|
+
y: "6.25",
|
|
1535
|
+
width: "46.5",
|
|
1536
|
+
height: "49.5",
|
|
1537
|
+
rx: "4",
|
|
1538
|
+
fill: "url(#paint1_linear_932_410636)"
|
|
1539
|
+
})), /*#__PURE__*/React.createElement("rect", {
|
|
1540
|
+
x: "18.012",
|
|
1541
|
+
y: "12.25",
|
|
1542
|
+
width: "34.5",
|
|
1543
|
+
height: "9",
|
|
1544
|
+
rx: "2",
|
|
1545
|
+
fill: "url(#paint2_linear_932_410636)"
|
|
1546
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
1547
|
+
x: "18.012",
|
|
1548
|
+
y: "27.25",
|
|
1549
|
+
width: "34.5",
|
|
1550
|
+
height: "3",
|
|
1551
|
+
rx: "1",
|
|
1552
|
+
fill: "url(#paint3_linear_932_410636)"
|
|
1553
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
1554
|
+
filter: "url(#filter2_d_932_410636)"
|
|
1555
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1556
|
+
fillRule: "evenodd",
|
|
1557
|
+
clipRule: "evenodd",
|
|
1558
|
+
d: "M6.28456 30.9395C6.2293 31.9267 6.48204 32.6422 7.04279 33.0859L24.6962 43.1135L6.01196 60.0965V32.5C6.01196 31.9552 6.10283 31.435 6.28456 30.9395Z",
|
|
1559
|
+
fill: "url(#paint4_linear_932_410636)"
|
|
1560
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1561
|
+
filter: "url(#filter3_d_932_410636)"
|
|
1562
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1563
|
+
fillRule: "evenodd",
|
|
1564
|
+
clipRule: "evenodd",
|
|
1565
|
+
d: "M64.2384 31C64.2939 31.9904 64.0402 32.7082 63.4775 33.1533L45.762 43.2128L64.512 60.25V32.5655C64.512 32.0189 64.4208 31.4971 64.2384 31Z",
|
|
1566
|
+
fill: "url(#paint5_linear_932_410636)"
|
|
1567
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1568
|
+
filter: "url(#filter4_d_932_410636)"
|
|
1569
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1570
|
+
fillRule: "evenodd",
|
|
1571
|
+
clipRule: "evenodd",
|
|
1572
|
+
d: "M6.51039 59.1254C5.47438 60.0398 6.12116 61.75 7.50301 61.75H63.0084C64.3901 61.75 65.037 60.0402 64.0013 59.1256L38.6422 36.7313C36.7637 35.0896 33.7607 35.0896 31.8818 36.7313L6.51039 59.1254Z",
|
|
1573
|
+
fill: "url(#paint6_linear_932_410636)"
|
|
1574
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1575
|
+
filter: "url(#filter5_d_932_410636)"
|
|
1576
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1577
|
+
fillRule: "evenodd",
|
|
1578
|
+
clipRule: "evenodd",
|
|
1579
|
+
d: "M65.262 14.125C65.262 19.7169 59.7215 24.25 52.887 24.25C52.742 24.25 52.5976 24.248 52.4538 24.2439L52.4708 24.25H43.6866C45.1713 23.2968 44.1285 21.2804 44.1285 21.2804L44.1339 21.2823C41.896 19.4502 40.512 16.9199 40.512 14.125C40.512 8.53312 46.0524 4 52.887 4C59.7215 4 65.262 8.53312 65.262 14.125Z",
|
|
1580
|
+
fill: "url(#paint7_linear_932_410636)"
|
|
1581
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
1582
|
+
fillRule: "evenodd",
|
|
1583
|
+
clipRule: "evenodd",
|
|
1584
|
+
d: "M46.887 16C47.9225 16 48.762 15.1605 48.762 14.125C48.762 13.0895 47.9225 12.25 46.887 12.25C45.8514 12.25 45.012 13.0895 45.012 14.125C45.012 15.1605 45.8514 16 46.887 16Z",
|
|
1585
|
+
fill: "url(#paint8_linear_932_410636)"
|
|
1586
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1587
|
+
fillRule: "evenodd",
|
|
1588
|
+
clipRule: "evenodd",
|
|
1589
|
+
d: "M52.887 16C53.9225 16 54.762 15.1605 54.762 14.125C54.762 13.0895 53.9225 12.25 52.887 12.25C51.8514 12.25 51.012 13.0895 51.012 14.125C51.012 15.1605 51.8514 16 52.887 16Z",
|
|
1590
|
+
fill: "url(#paint9_linear_932_410636)"
|
|
1591
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1592
|
+
fillRule: "evenodd",
|
|
1593
|
+
clipRule: "evenodd",
|
|
1594
|
+
d: "M58.887 16C59.9225 16 60.762 15.1605 60.762 14.125C60.762 13.0895 59.9225 12.25 58.887 12.25C57.8514 12.25 57.012 13.0895 57.012 14.125C57.012 15.1605 57.8514 16 58.887 16Z",
|
|
1595
|
+
fill: "url(#paint10_linear_932_410636)"
|
|
1596
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
1597
|
+
id: "filter0_d_932_410636",
|
|
1598
|
+
x: "0.0119629",
|
|
1599
|
+
y: "3.75",
|
|
1600
|
+
width: "70.5",
|
|
1601
|
+
height: "66",
|
|
1602
|
+
filterUnits: "userSpaceOnUse",
|
|
1603
|
+
colorInterpolationFilters: "sRGB"
|
|
1604
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1605
|
+
floodOpacity: "0",
|
|
1606
|
+
result: "BackgroundImageFix"
|
|
1607
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1608
|
+
in: "SourceAlpha",
|
|
1609
|
+
type: "matrix",
|
|
1610
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1611
|
+
result: "hardAlpha"
|
|
1612
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1613
|
+
dy: "2"
|
|
1614
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1615
|
+
stdDeviation: "3"
|
|
1616
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1617
|
+
type: "matrix",
|
|
1618
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1619
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1620
|
+
mode: "normal",
|
|
1621
|
+
in2: "BackgroundImageFix",
|
|
1622
|
+
result: "effect1_dropShadow_932_410636"
|
|
1623
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1624
|
+
mode: "normal",
|
|
1625
|
+
in: "SourceGraphic",
|
|
1626
|
+
in2: "effect1_dropShadow_932_410636",
|
|
1627
|
+
result: "shape"
|
|
1628
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1629
|
+
id: "filter1_d_932_410636",
|
|
1630
|
+
x: "6.01196",
|
|
1631
|
+
y: "2.25",
|
|
1632
|
+
width: "58.5",
|
|
1633
|
+
height: "61.5",
|
|
1634
|
+
filterUnits: "userSpaceOnUse",
|
|
1635
|
+
colorInterpolationFilters: "sRGB"
|
|
1636
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1637
|
+
floodOpacity: "0",
|
|
1638
|
+
result: "BackgroundImageFix"
|
|
1639
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1640
|
+
in: "SourceAlpha",
|
|
1641
|
+
type: "matrix",
|
|
1642
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1643
|
+
result: "hardAlpha"
|
|
1644
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1645
|
+
dy: "2"
|
|
1646
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1647
|
+
stdDeviation: "3"
|
|
1648
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1649
|
+
type: "matrix",
|
|
1650
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1651
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1652
|
+
mode: "normal",
|
|
1653
|
+
in2: "BackgroundImageFix",
|
|
1654
|
+
result: "effect1_dropShadow_932_410636"
|
|
1655
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1656
|
+
mode: "normal",
|
|
1657
|
+
in: "SourceGraphic",
|
|
1658
|
+
in2: "effect1_dropShadow_932_410636",
|
|
1659
|
+
result: "shape"
|
|
1660
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1661
|
+
id: "filter2_d_932_410636",
|
|
1662
|
+
x: "0.0119629",
|
|
1663
|
+
y: "26.9395",
|
|
1664
|
+
width: "30.6843",
|
|
1665
|
+
height: "41.1571",
|
|
1666
|
+
filterUnits: "userSpaceOnUse",
|
|
1667
|
+
colorInterpolationFilters: "sRGB"
|
|
1668
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1669
|
+
floodOpacity: "0",
|
|
1670
|
+
result: "BackgroundImageFix"
|
|
1671
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1672
|
+
in: "SourceAlpha",
|
|
1673
|
+
type: "matrix",
|
|
1674
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1675
|
+
result: "hardAlpha"
|
|
1676
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1677
|
+
dy: "2"
|
|
1678
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1679
|
+
stdDeviation: "3"
|
|
1680
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1681
|
+
type: "matrix",
|
|
1682
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1683
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1684
|
+
mode: "normal",
|
|
1685
|
+
in2: "BackgroundImageFix",
|
|
1686
|
+
result: "effect1_dropShadow_932_410636"
|
|
1687
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1688
|
+
mode: "normal",
|
|
1689
|
+
in: "SourceGraphic",
|
|
1690
|
+
in2: "effect1_dropShadow_932_410636",
|
|
1691
|
+
result: "shape"
|
|
1692
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1693
|
+
id: "filter3_d_932_410636",
|
|
1694
|
+
x: "39.762",
|
|
1695
|
+
y: "27",
|
|
1696
|
+
width: "30.75",
|
|
1697
|
+
height: "41.25",
|
|
1698
|
+
filterUnits: "userSpaceOnUse",
|
|
1699
|
+
colorInterpolationFilters: "sRGB"
|
|
1700
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1701
|
+
floodOpacity: "0",
|
|
1702
|
+
result: "BackgroundImageFix"
|
|
1703
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1704
|
+
in: "SourceAlpha",
|
|
1705
|
+
type: "matrix",
|
|
1706
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1707
|
+
result: "hardAlpha"
|
|
1708
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1709
|
+
dy: "2"
|
|
1710
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1711
|
+
stdDeviation: "3"
|
|
1712
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1713
|
+
type: "matrix",
|
|
1714
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1715
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1716
|
+
mode: "normal",
|
|
1717
|
+
in2: "BackgroundImageFix",
|
|
1718
|
+
result: "effect1_dropShadow_932_410636"
|
|
1719
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1720
|
+
mode: "normal",
|
|
1721
|
+
in: "SourceGraphic",
|
|
1722
|
+
in2: "effect1_dropShadow_932_410636",
|
|
1723
|
+
result: "shape"
|
|
1724
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1725
|
+
id: "filter4_d_932_410636",
|
|
1726
|
+
x: "0",
|
|
1727
|
+
y: "31.5",
|
|
1728
|
+
width: "70.5115",
|
|
1729
|
+
height: "38.25",
|
|
1730
|
+
filterUnits: "userSpaceOnUse",
|
|
1731
|
+
colorInterpolationFilters: "sRGB"
|
|
1732
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1733
|
+
floodOpacity: "0",
|
|
1734
|
+
result: "BackgroundImageFix"
|
|
1735
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1736
|
+
in: "SourceAlpha",
|
|
1737
|
+
type: "matrix",
|
|
1738
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1739
|
+
result: "hardAlpha"
|
|
1740
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1741
|
+
dy: "2"
|
|
1742
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1743
|
+
stdDeviation: "3"
|
|
1744
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1745
|
+
type: "matrix",
|
|
1746
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1747
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1748
|
+
mode: "normal",
|
|
1749
|
+
in2: "BackgroundImageFix",
|
|
1750
|
+
result: "effect1_dropShadow_932_410636"
|
|
1751
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1752
|
+
mode: "normal",
|
|
1753
|
+
in: "SourceGraphic",
|
|
1754
|
+
in2: "effect1_dropShadow_932_410636",
|
|
1755
|
+
result: "shape"
|
|
1756
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1757
|
+
id: "filter5_d_932_410636",
|
|
1758
|
+
x: "34.512",
|
|
1759
|
+
y: "0",
|
|
1760
|
+
width: "36.75",
|
|
1761
|
+
height: "32.25",
|
|
1762
|
+
filterUnits: "userSpaceOnUse",
|
|
1763
|
+
colorInterpolationFilters: "sRGB"
|
|
1764
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1765
|
+
floodOpacity: "0",
|
|
1766
|
+
result: "BackgroundImageFix"
|
|
1767
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1768
|
+
in: "SourceAlpha",
|
|
1769
|
+
type: "matrix",
|
|
1770
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1771
|
+
result: "hardAlpha"
|
|
1772
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1773
|
+
dy: "2"
|
|
1774
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1775
|
+
stdDeviation: "3"
|
|
1776
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1777
|
+
type: "matrix",
|
|
1778
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1779
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1780
|
+
mode: "normal",
|
|
1781
|
+
in2: "BackgroundImageFix",
|
|
1782
|
+
result: "effect1_dropShadow_932_410636"
|
|
1783
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1784
|
+
mode: "normal",
|
|
1785
|
+
in: "SourceGraphic",
|
|
1786
|
+
in2: "effect1_dropShadow_932_410636",
|
|
1787
|
+
result: "shape"
|
|
1788
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1789
|
+
id: "paint0_linear_932_410636",
|
|
1790
|
+
x1: "64.4525",
|
|
1791
|
+
y1: "61.6403",
|
|
1792
|
+
x2: "64.4525",
|
|
1793
|
+
y2: "7.75",
|
|
1794
|
+
gradientUnits: "userSpaceOnUse"
|
|
1795
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1796
|
+
stopColor: "#DFE1E6"
|
|
1797
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1798
|
+
offset: "1",
|
|
1799
|
+
stopColor: "#C4C7CC"
|
|
1800
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1801
|
+
id: "paint1_linear_932_410636",
|
|
1802
|
+
x1: "12.0948",
|
|
1803
|
+
y1: "6.25",
|
|
1804
|
+
x2: "12.0948",
|
|
1805
|
+
y2: "55.5736",
|
|
1806
|
+
gradientUnits: "userSpaceOnUse"
|
|
1807
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1808
|
+
stopColor: "#E6E8ED"
|
|
1809
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1810
|
+
offset: "1",
|
|
1811
|
+
stopColor: "#F2F4F7"
|
|
1812
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1813
|
+
id: "paint2_linear_932_410636",
|
|
1814
|
+
x1: "18.012",
|
|
1815
|
+
y1: "12.25",
|
|
1816
|
+
x2: "18.012",
|
|
1817
|
+
y2: "21.25",
|
|
1818
|
+
gradientUnits: "userSpaceOnUse"
|
|
1819
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1820
|
+
stopColor: "#F7F9FC"
|
|
1821
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1822
|
+
offset: "1",
|
|
1823
|
+
stopColor: "white"
|
|
1824
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1825
|
+
id: "paint3_linear_932_410636",
|
|
1826
|
+
x1: "18.012",
|
|
1827
|
+
y1: "27.25",
|
|
1828
|
+
x2: "18.012",
|
|
1829
|
+
y2: "30.25",
|
|
1830
|
+
gradientUnits: "userSpaceOnUse"
|
|
1831
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1832
|
+
stopColor: "#F7F9FC"
|
|
1833
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1834
|
+
offset: "1",
|
|
1835
|
+
stopColor: "white"
|
|
1836
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1837
|
+
id: "paint4_linear_932_410636",
|
|
1838
|
+
x1: "24.6772",
|
|
1839
|
+
y1: "60.0373",
|
|
1840
|
+
x2: "24.6772",
|
|
1841
|
+
y2: "30.9395",
|
|
1842
|
+
gradientUnits: "userSpaceOnUse"
|
|
1843
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1844
|
+
stopColor: "#EDEFF2"
|
|
1845
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1846
|
+
offset: "1",
|
|
1847
|
+
stopColor: "#DFE1E6"
|
|
1848
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1849
|
+
id: "paint5_linear_932_410636",
|
|
1850
|
+
x1: "45.781",
|
|
1851
|
+
y1: "60.1906",
|
|
1852
|
+
x2: "45.781",
|
|
1853
|
+
y2: "31",
|
|
1854
|
+
gradientUnits: "userSpaceOnUse"
|
|
1855
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1856
|
+
stopColor: "#EDEFF2"
|
|
1857
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1858
|
+
offset: "1",
|
|
1859
|
+
stopColor: "#DFE1E6"
|
|
1860
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1861
|
+
id: "paint6_linear_932_410636",
|
|
1862
|
+
x1: "66.9087",
|
|
1863
|
+
y1: "61.6966",
|
|
1864
|
+
x2: "66.9087",
|
|
1865
|
+
y2: "35.5",
|
|
1866
|
+
gradientUnits: "userSpaceOnUse"
|
|
1867
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1868
|
+
stopColor: "#EDEFF2"
|
|
1869
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1870
|
+
offset: "1",
|
|
1871
|
+
stopColor: "#D2D4D9"
|
|
1872
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1873
|
+
id: "paint7_linear_932_410636",
|
|
1874
|
+
x1: "65.2368",
|
|
1875
|
+
y1: "24.2088",
|
|
1876
|
+
x2: "65.2368",
|
|
1877
|
+
y2: "4",
|
|
1878
|
+
gradientUnits: "userSpaceOnUse"
|
|
1879
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1880
|
+
stopColor: "#DFE1E6"
|
|
1881
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1882
|
+
offset: "1",
|
|
1883
|
+
stopColor: "#C4C7CC"
|
|
1884
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1885
|
+
id: "paint8_linear_932_410636",
|
|
1886
|
+
x1: "45.012",
|
|
1887
|
+
y1: "12.25",
|
|
1888
|
+
x2: "45.012",
|
|
1889
|
+
y2: "16",
|
|
1890
|
+
gradientUnits: "userSpaceOnUse"
|
|
1891
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1892
|
+
stopColor: "#F7F9FC"
|
|
1893
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1894
|
+
offset: "1",
|
|
1895
|
+
stopColor: "white"
|
|
1896
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1897
|
+
id: "paint9_linear_932_410636",
|
|
1898
|
+
x1: "51.012",
|
|
1899
|
+
y1: "12.25",
|
|
1900
|
+
x2: "51.012",
|
|
1901
|
+
y2: "16",
|
|
1902
|
+
gradientUnits: "userSpaceOnUse"
|
|
1903
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1904
|
+
stopColor: "#F7F9FC"
|
|
1905
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1906
|
+
offset: "1",
|
|
1907
|
+
stopColor: "white"
|
|
1908
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
1909
|
+
id: "paint10_linear_932_410636",
|
|
1910
|
+
x1: "57.012",
|
|
1911
|
+
y1: "12.25",
|
|
1912
|
+
x2: "57.012",
|
|
1913
|
+
y2: "16",
|
|
1914
|
+
gradientUnits: "userSpaceOnUse"
|
|
1915
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
1916
|
+
stopColor: "#F7F9FC"
|
|
1917
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
1918
|
+
offset: "1",
|
|
1919
|
+
stopColor: "white"
|
|
1920
|
+
}))));
|
|
1921
|
+
};
|
|
1922
|
+
var EmptySvgImage = function EmptySvgImage(_ref6) {
|
|
1923
|
+
var _ = _ref6.size;
|
|
1924
|
+
// TODO: 填入图片为空 SVG
|
|
1925
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1926
|
+
width: "69",
|
|
1927
|
+
height: "61",
|
|
1928
|
+
viewBox: "0 0 69 61",
|
|
1929
|
+
fill: "none",
|
|
1930
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1931
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1932
|
+
filter: "url(#filter0_d_932_410639)"
|
|
1933
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1934
|
+
fillRule: "evenodd",
|
|
1935
|
+
clipRule: "evenodd",
|
|
1936
|
+
d: "M58.25 7.5C60.4591 7.5 62.25 9.29086 62.25 11.5L62.25 48.5C62.25 50.7091 60.4591 52.5 58.25 52.5L10 52.5C7.79086 52.5 6 50.7091 6 48.5L6 11.5C6 9.29086 7.79086 7.5 10 7.5L58.25 7.5Z",
|
|
1937
|
+
fill: "url(#paint0_linear_932_410639)"
|
|
1938
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1939
|
+
filter: "url(#filter1_d_932_410639)"
|
|
1940
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1941
|
+
fillRule: "evenodd",
|
|
1942
|
+
clipRule: "evenodd",
|
|
1943
|
+
d: "M43.2728 27.4444C41.6734 25.2925 38.4514 25.2926 36.852 27.4444L30.2713 36.2984C29.4613 37.3883 27.8238 37.3713 27.0366 36.2649L25.8215 34.5573C24.2268 32.3159 20.898 32.3159 19.3032 34.5573L13.248 43.0673C12.3058 44.3914 13.2525 46.2268 14.8776 46.2268H26.3909C26.491 46.2268 26.5907 46.2361 26.6905 46.2438C26.7439 46.2479 26.7982 46.25 26.8533 46.25H53.2715C54.9156 46.25 55.8574 44.3765 54.8767 43.0569L43.2728 27.4444Z",
|
|
1944
|
+
fill: "url(#paint1_linear_932_410639)"
|
|
1945
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1946
|
+
filter: "url(#filter2_d_932_410639)"
|
|
1947
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1948
|
+
fillRule: "evenodd",
|
|
1949
|
+
clipRule: "evenodd",
|
|
1950
|
+
d: "M22.25 22.5C24.6662 22.5 26.625 20.5412 26.625 18.125C26.625 15.7088 24.6662 13.75 22.25 13.75C19.8338 13.75 17.875 15.7088 17.875 18.125C17.875 20.5412 19.8338 22.5 22.25 22.5Z",
|
|
1951
|
+
fill: "url(#paint2_linear_932_410639)"
|
|
1952
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
1953
|
+
id: "filter0_d_932_410639",
|
|
1954
|
+
x: "0",
|
|
1955
|
+
y: "3.5",
|
|
1956
|
+
width: "68.25",
|
|
1957
|
+
height: "57",
|
|
1958
|
+
filterUnits: "userSpaceOnUse",
|
|
1959
|
+
colorInterpolationFilters: "sRGB"
|
|
1960
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1961
|
+
floodOpacity: "0",
|
|
1962
|
+
result: "BackgroundImageFix"
|
|
1963
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1964
|
+
in: "SourceAlpha",
|
|
1965
|
+
type: "matrix",
|
|
1966
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1967
|
+
result: "hardAlpha"
|
|
1968
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
1969
|
+
dy: "2"
|
|
1970
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
1971
|
+
stdDeviation: "3"
|
|
1972
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1973
|
+
type: "matrix",
|
|
1974
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
1975
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1976
|
+
mode: "normal",
|
|
1977
|
+
in2: "BackgroundImageFix",
|
|
1978
|
+
result: "effect1_dropShadow_932_410639"
|
|
1979
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
1980
|
+
mode: "normal",
|
|
1981
|
+
in: "SourceGraphic",
|
|
1982
|
+
in2: "effect1_dropShadow_932_410639",
|
|
1983
|
+
result: "shape"
|
|
1984
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
1985
|
+
id: "filter1_d_932_410639",
|
|
1986
|
+
x: "6.87402",
|
|
1987
|
+
y: "21.8305",
|
|
1988
|
+
width: "54.4011",
|
|
1989
|
+
height: "32.4195",
|
|
1990
|
+
filterUnits: "userSpaceOnUse",
|
|
1991
|
+
colorInterpolationFilters: "sRGB"
|
|
1992
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
1993
|
+
floodOpacity: "0",
|
|
1994
|
+
result: "BackgroundImageFix"
|
|
1995
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
1996
|
+
in: "SourceAlpha",
|
|
1997
|
+
type: "matrix",
|
|
1998
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
1999
|
+
result: "hardAlpha"
|
|
2000
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2001
|
+
dy: "2"
|
|
2002
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2003
|
+
stdDeviation: "3"
|
|
2004
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2005
|
+
type: "matrix",
|
|
2006
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
2007
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2008
|
+
mode: "normal",
|
|
2009
|
+
in2: "BackgroundImageFix",
|
|
2010
|
+
result: "effect1_dropShadow_932_410639"
|
|
2011
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2012
|
+
mode: "normal",
|
|
2013
|
+
in: "SourceGraphic",
|
|
2014
|
+
in2: "effect1_dropShadow_932_410639",
|
|
2015
|
+
result: "shape"
|
|
2016
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2017
|
+
id: "filter2_d_932_410639",
|
|
2018
|
+
x: "11.875",
|
|
2019
|
+
y: "9.75",
|
|
2020
|
+
width: "20.75",
|
|
2021
|
+
height: "20.75",
|
|
2022
|
+
filterUnits: "userSpaceOnUse",
|
|
2023
|
+
colorInterpolationFilters: "sRGB"
|
|
2024
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2025
|
+
floodOpacity: "0",
|
|
2026
|
+
result: "BackgroundImageFix"
|
|
2027
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2028
|
+
in: "SourceAlpha",
|
|
2029
|
+
type: "matrix",
|
|
2030
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
2031
|
+
result: "hardAlpha"
|
|
2032
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2033
|
+
dy: "2"
|
|
2034
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2035
|
+
stdDeviation: "3"
|
|
2036
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2037
|
+
type: "matrix",
|
|
2038
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
2039
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2040
|
+
mode: "normal",
|
|
2041
|
+
in2: "BackgroundImageFix",
|
|
2042
|
+
result: "effect1_dropShadow_932_410639"
|
|
2043
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2044
|
+
mode: "normal",
|
|
2045
|
+
in: "SourceGraphic",
|
|
2046
|
+
in2: "effect1_dropShadow_932_410639",
|
|
2047
|
+
result: "shape"
|
|
2048
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2049
|
+
id: "paint0_linear_932_410639",
|
|
2050
|
+
x1: "62.25",
|
|
2051
|
+
y1: "7.58017",
|
|
2052
|
+
x2: "62.25",
|
|
2053
|
+
y2: "52.5",
|
|
2054
|
+
gradientUnits: "userSpaceOnUse"
|
|
2055
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2056
|
+
stopColor: "#E6E8ED"
|
|
2057
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2058
|
+
offset: "1",
|
|
2059
|
+
stopColor: "#F2F4F7"
|
|
2060
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2061
|
+
id: "paint1_linear_932_410639",
|
|
2062
|
+
x1: "55.232",
|
|
2063
|
+
y1: "46.2085",
|
|
2064
|
+
x2: "55.232",
|
|
2065
|
+
y2: "25.8306",
|
|
2066
|
+
gradientUnits: "userSpaceOnUse"
|
|
2067
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2068
|
+
stopColor: "#E6E8ED"
|
|
2069
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2070
|
+
offset: "1",
|
|
2071
|
+
stopColor: "#D2D4D9"
|
|
2072
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2073
|
+
id: "paint2_linear_932_410639",
|
|
2074
|
+
x1: "26.6161",
|
|
2075
|
+
y1: "22.4822",
|
|
2076
|
+
x2: "26.6161",
|
|
2077
|
+
y2: "13.75",
|
|
2078
|
+
gradientUnits: "userSpaceOnUse"
|
|
2079
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2080
|
+
stopColor: "#D2D4D9"
|
|
2081
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2082
|
+
offset: "1",
|
|
2083
|
+
stopColor: "#C4C7CC"
|
|
2084
|
+
}))));
|
|
2085
|
+
};
|
|
2086
|
+
var EmptySvgImageError = function EmptySvgImageError(_ref7) {
|
|
2087
|
+
var _ = _ref7.size;
|
|
2088
|
+
// TODO: 填入图片加载失败 SVG
|
|
2089
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
2090
|
+
width: "69",
|
|
2091
|
+
height: "61",
|
|
2092
|
+
viewBox: "0 0 69 61",
|
|
2093
|
+
fill: "none",
|
|
2094
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
2095
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
2096
|
+
filter: "url(#filter0_d_932_410642)"
|
|
2097
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2098
|
+
fillRule: "evenodd",
|
|
2099
|
+
clipRule: "evenodd",
|
|
2100
|
+
d: "M37.9735 7.57434L26.5077 24.3144C24.1378 27.7744 24.1787 32.3457 26.6101 35.7628L31.6653 42.8675C33.1394 44.9392 33.1476 47.7152 31.6857 49.7957L29.7331 52.5743H10C7.79086 52.5743 6 50.7835 6 48.5743V11.5743C6 9.3652 7.79086 7.57434 10 7.57434L37.9735 7.57434Z",
|
|
2101
|
+
fill: "url(#paint0_linear_932_410642)"
|
|
2102
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
2103
|
+
filter: "url(#filter1_d_932_410642)"
|
|
2104
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2105
|
+
fillRule: "evenodd",
|
|
2106
|
+
clipRule: "evenodd",
|
|
2107
|
+
d: "M31.6653 42.8675L26.6101 35.7628C26.6054 35.7562 26.6007 35.7496 26.596 35.743L25.8218 34.6549C24.227 32.4136 20.8982 32.4136 19.3035 34.6549L13.2482 43.165C12.3061 44.4891 13.2527 46.3245 14.8778 46.3245H32.7765C32.7722 45.1127 32.4016 43.9022 31.6653 42.8675Z",
|
|
2108
|
+
fill: "url(#paint1_linear_932_410642)"
|
|
2109
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
2110
|
+
filter: "url(#filter2_d_932_410642)"
|
|
2111
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2112
|
+
fillRule: "evenodd",
|
|
2113
|
+
clipRule: "evenodd",
|
|
2114
|
+
d: "M22.25 22.5743C24.6662 22.5743 26.625 20.6156 26.625 18.1993C26.625 15.7831 24.6662 13.8243 22.25 13.8243C19.8338 13.8243 17.875 15.7831 17.875 18.1993C17.875 20.6156 19.8338 22.5743 22.25 22.5743Z",
|
|
2115
|
+
fill: "url(#paint2_linear_932_410642)"
|
|
2116
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
2117
|
+
filter: "url(#filter3_d_932_410642)"
|
|
2118
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2119
|
+
fillRule: "evenodd",
|
|
2120
|
+
clipRule: "evenodd",
|
|
2121
|
+
d: "M45.6876 7.5L32.6599 26.6428C31.2799 28.6706 31.273 31.3341 32.6426 33.3688L37.5269 40.6255C39.8128 44.0217 39.7978 48.4682 37.489 51.8489L37.0443 52.5H58.2501C60.4593 52.5 62.2501 50.7091 62.2501 48.5L62.2501 11.5C62.2501 9.29086 60.4593 7.5 58.2501 7.5L45.6876 7.5Z",
|
|
2122
|
+
fill: "url(#paint3_linear_932_410642)"
|
|
2123
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
2124
|
+
filter: "url(#filter4_d_932_410642)"
|
|
2125
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2126
|
+
fillRule: "evenodd",
|
|
2127
|
+
clipRule: "evenodd",
|
|
2128
|
+
d: "M39.2312 46.25H53.272C54.9161 46.25 55.8579 44.3765 54.8771 43.0569L43.2732 27.4444C41.6739 25.2925 38.4518 25.2926 36.8525 27.4444L32.5523 33.2302C32.5818 33.2767 32.612 33.3229 32.6428 33.3688L37.5271 40.6255C38.6714 42.3256 39.2392 44.2889 39.2312 46.25Z",
|
|
2129
|
+
fill: "url(#paint4_linear_932_410642)"
|
|
2130
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
2131
|
+
id: "filter0_d_932_410642",
|
|
2132
|
+
x: "0",
|
|
2133
|
+
y: "3.57434",
|
|
2134
|
+
width: "43.9734",
|
|
2135
|
+
height: "57",
|
|
2136
|
+
filterUnits: "userSpaceOnUse",
|
|
2137
|
+
colorInterpolationFilters: "sRGB"
|
|
2138
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2139
|
+
floodOpacity: "0",
|
|
2140
|
+
result: "BackgroundImageFix"
|
|
2141
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2142
|
+
in: "SourceAlpha",
|
|
2143
|
+
type: "matrix",
|
|
2144
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
2145
|
+
result: "hardAlpha"
|
|
2146
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2147
|
+
dy: "2"
|
|
2148
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2149
|
+
stdDeviation: "3"
|
|
2150
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2151
|
+
type: "matrix",
|
|
2152
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
2153
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2154
|
+
mode: "normal",
|
|
2155
|
+
in2: "BackgroundImageFix",
|
|
2156
|
+
result: "effect1_dropShadow_932_410642"
|
|
2157
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2158
|
+
mode: "normal",
|
|
2159
|
+
in: "SourceGraphic",
|
|
2160
|
+
in2: "effect1_dropShadow_932_410642",
|
|
2161
|
+
result: "shape"
|
|
2162
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2163
|
+
id: "filter1_d_932_410642",
|
|
2164
|
+
x: "6.87427",
|
|
2165
|
+
y: "28.9739",
|
|
2166
|
+
width: "31.9023",
|
|
2167
|
+
height: "25.3505",
|
|
2168
|
+
filterUnits: "userSpaceOnUse",
|
|
2169
|
+
colorInterpolationFilters: "sRGB"
|
|
2170
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2171
|
+
floodOpacity: "0",
|
|
2172
|
+
result: "BackgroundImageFix"
|
|
2173
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2174
|
+
in: "SourceAlpha",
|
|
2175
|
+
type: "matrix",
|
|
2176
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
2177
|
+
result: "hardAlpha"
|
|
2178
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2179
|
+
dy: "2"
|
|
2180
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2181
|
+
stdDeviation: "3"
|
|
2182
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2183
|
+
type: "matrix",
|
|
2184
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
2185
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2186
|
+
mode: "normal",
|
|
2187
|
+
in2: "BackgroundImageFix",
|
|
2188
|
+
result: "effect1_dropShadow_932_410642"
|
|
2189
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2190
|
+
mode: "normal",
|
|
2191
|
+
in: "SourceGraphic",
|
|
2192
|
+
in2: "effect1_dropShadow_932_410642",
|
|
2193
|
+
result: "shape"
|
|
2194
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2195
|
+
id: "filter2_d_932_410642",
|
|
2196
|
+
x: "11.875",
|
|
2197
|
+
y: "9.82434",
|
|
2198
|
+
width: "20.75",
|
|
2199
|
+
height: "20.75",
|
|
2200
|
+
filterUnits: "userSpaceOnUse",
|
|
2201
|
+
colorInterpolationFilters: "sRGB"
|
|
2202
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2203
|
+
floodOpacity: "0",
|
|
2204
|
+
result: "BackgroundImageFix"
|
|
2205
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2206
|
+
in: "SourceAlpha",
|
|
2207
|
+
type: "matrix",
|
|
2208
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
2209
|
+
result: "hardAlpha"
|
|
2210
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2211
|
+
dy: "2"
|
|
2212
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2213
|
+
stdDeviation: "3"
|
|
2214
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2215
|
+
type: "matrix",
|
|
2216
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
2217
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2218
|
+
mode: "normal",
|
|
2219
|
+
in2: "BackgroundImageFix",
|
|
2220
|
+
result: "effect1_dropShadow_932_410642"
|
|
2221
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2222
|
+
mode: "normal",
|
|
2223
|
+
in: "SourceGraphic",
|
|
2224
|
+
in2: "effect1_dropShadow_932_410642",
|
|
2225
|
+
result: "shape"
|
|
2226
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2227
|
+
id: "filter3_d_932_410642",
|
|
2228
|
+
x: "25.6201",
|
|
2229
|
+
y: "3.5",
|
|
2230
|
+
width: "42.63",
|
|
2231
|
+
height: "57",
|
|
2232
|
+
filterUnits: "userSpaceOnUse",
|
|
2233
|
+
colorInterpolationFilters: "sRGB"
|
|
2234
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2235
|
+
floodOpacity: "0",
|
|
2236
|
+
result: "BackgroundImageFix"
|
|
2237
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2238
|
+
in: "SourceAlpha",
|
|
2239
|
+
type: "matrix",
|
|
2240
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
2241
|
+
result: "hardAlpha"
|
|
2242
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2243
|
+
dy: "2"
|
|
2244
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2245
|
+
stdDeviation: "3"
|
|
2246
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2247
|
+
type: "matrix",
|
|
2248
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
2249
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2250
|
+
mode: "normal",
|
|
2251
|
+
in2: "BackgroundImageFix",
|
|
2252
|
+
result: "effect1_dropShadow_932_410642"
|
|
2253
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2254
|
+
mode: "normal",
|
|
2255
|
+
in: "SourceGraphic",
|
|
2256
|
+
in2: "effect1_dropShadow_932_410642",
|
|
2257
|
+
result: "shape"
|
|
2258
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2259
|
+
id: "filter4_d_932_410642",
|
|
2260
|
+
x: "26.5522",
|
|
2261
|
+
y: "21.8305",
|
|
2262
|
+
width: "34.7233",
|
|
2263
|
+
height: "32.4195",
|
|
2264
|
+
filterUnits: "userSpaceOnUse",
|
|
2265
|
+
colorInterpolationFilters: "sRGB"
|
|
2266
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2267
|
+
floodOpacity: "0",
|
|
2268
|
+
result: "BackgroundImageFix"
|
|
2269
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2270
|
+
in: "SourceAlpha",
|
|
2271
|
+
type: "matrix",
|
|
2272
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
2273
|
+
result: "hardAlpha"
|
|
2274
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2275
|
+
dy: "2"
|
|
2276
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2277
|
+
stdDeviation: "3"
|
|
2278
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2279
|
+
type: "matrix",
|
|
2280
|
+
values: "0 0 0 0 0.768627 0 0 0 0 0.780392 0 0 0 0 0.8 0 0 0 0.1 0"
|
|
2281
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2282
|
+
mode: "normal",
|
|
2283
|
+
in2: "BackgroundImageFix",
|
|
2284
|
+
result: "effect1_dropShadow_932_410642"
|
|
2285
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2286
|
+
mode: "normal",
|
|
2287
|
+
in: "SourceGraphic",
|
|
2288
|
+
in2: "effect1_dropShadow_932_410642",
|
|
2289
|
+
result: "shape"
|
|
2290
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2291
|
+
id: "paint0_linear_932_410642",
|
|
2292
|
+
x1: "6.05696",
|
|
2293
|
+
y1: "7.57434",
|
|
2294
|
+
x2: "6.05696",
|
|
2295
|
+
y2: "53",
|
|
2296
|
+
gradientUnits: "userSpaceOnUse"
|
|
2297
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2298
|
+
stopColor: "#E6E8ED"
|
|
2299
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2300
|
+
offset: "1",
|
|
2301
|
+
stopColor: "#F2F4F7"
|
|
2302
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2303
|
+
id: "paint1_linear_932_410642",
|
|
2304
|
+
x1: "32.7563",
|
|
2305
|
+
y1: "46.2973",
|
|
2306
|
+
x2: "32.7563",
|
|
2307
|
+
y2: "26",
|
|
2308
|
+
gradientUnits: "userSpaceOnUse"
|
|
2309
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2310
|
+
stopColor: "#E6E8ED"
|
|
2311
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2312
|
+
offset: "1",
|
|
2313
|
+
stopColor: "#D2D4D9"
|
|
2314
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2315
|
+
id: "paint2_linear_932_410642",
|
|
2316
|
+
x1: "26.6161",
|
|
2317
|
+
y1: "22.5566",
|
|
2318
|
+
x2: "26.6161",
|
|
2319
|
+
y2: "13.8243",
|
|
2320
|
+
gradientUnits: "userSpaceOnUse"
|
|
2321
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2322
|
+
stopColor: "#D2D4D9"
|
|
2323
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2324
|
+
offset: "1",
|
|
2325
|
+
stopColor: "#C4C7CC"
|
|
2326
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2327
|
+
id: "paint3_linear_932_410642",
|
|
2328
|
+
x1: "31.6747",
|
|
2329
|
+
y1: "7.5",
|
|
2330
|
+
x2: "31.6747",
|
|
2331
|
+
y2: "53",
|
|
2332
|
+
gradientUnits: "userSpaceOnUse"
|
|
2333
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2334
|
+
stopColor: "#E6E8ED"
|
|
2335
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2336
|
+
offset: "1",
|
|
2337
|
+
stopColor: "#F2F4F7"
|
|
2338
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
2339
|
+
id: "paint4_linear_932_410642",
|
|
2340
|
+
x1: "55.2524",
|
|
2341
|
+
y1: "46.2085",
|
|
2342
|
+
x2: "55.2524",
|
|
2343
|
+
y2: "25.8306",
|
|
2344
|
+
gradientUnits: "userSpaceOnUse"
|
|
2345
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2346
|
+
stopColor: "#E6E8ED"
|
|
2347
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2348
|
+
offset: "1",
|
|
2349
|
+
stopColor: "#D2D4D9"
|
|
2350
|
+
}))));
|
|
2351
|
+
};
|
|
2352
|
+
var svgMap = {
|
|
2353
|
+
search: EmptySvgSearch,
|
|
2354
|
+
data: EmptySvgData,
|
|
2355
|
+
crowd: EmptySvgCrowd,
|
|
2356
|
+
address: EmptySvgAddress,
|
|
2357
|
+
message: EmptySvgMessage,
|
|
2358
|
+
image: EmptySvgImage,
|
|
2359
|
+
'image-error': EmptySvgImageError
|
|
2360
|
+
};
|
|
2361
|
+
|
|
2362
|
+
// ─── 主组件 ──────────────────────────────────────────────────────────────────
|
|
2363
|
+
|
|
2364
|
+
var Empty = /*#__PURE__*/React.forwardRef(function (_ref8, ref) {
|
|
2365
|
+
var className = _ref8.className,
|
|
2366
|
+
_ref8$type = _ref8.type,
|
|
2367
|
+
type = _ref8$type === void 0 ? 'search' : _ref8$type,
|
|
2368
|
+
_ref8$size = _ref8.size,
|
|
2369
|
+
size = _ref8$size === void 0 ? 'medium' : _ref8$size,
|
|
2370
|
+
title = _ref8.title,
|
|
2371
|
+
description = _ref8.description,
|
|
2372
|
+
extra = _ref8.extra,
|
|
2373
|
+
image = _ref8.image,
|
|
2374
|
+
props = _objectWithoutProperties(_ref8, _excluded);
|
|
2375
|
+
var SvgComponent = svgMap[type];
|
|
2376
|
+
var illustration = image !== null && image !== void 0 ? image : /*#__PURE__*/React.createElement(SvgComponent, {
|
|
2377
|
+
size: size
|
|
2378
|
+
});
|
|
2379
|
+
return /*#__PURE__*/React.createElement("div", _extends({
|
|
2380
|
+
ref: ref,
|
|
2381
|
+
"data-odn-empty": true,
|
|
2382
|
+
"data-odn-empty-type": type,
|
|
2383
|
+
"data-odn-empty-size": size,
|
|
2384
|
+
className: clsx(className)
|
|
2385
|
+
}, props), /*#__PURE__*/React.createElement("div", {
|
|
2386
|
+
"data-odn-empty-image": true
|
|
2387
|
+
}, illustration), (title || description || extra) && /*#__PURE__*/React.createElement("div", {
|
|
2388
|
+
"data-odn-empty-content": true
|
|
2389
|
+
}, title && /*#__PURE__*/React.createElement("div", {
|
|
2390
|
+
"data-odn-empty-title": true
|
|
2391
|
+
}, title), description && /*#__PURE__*/React.createElement("div", {
|
|
2392
|
+
"data-odn-empty-description": true
|
|
2393
|
+
}, description), extra && /*#__PURE__*/React.createElement("div", {
|
|
2394
|
+
"data-odn-empty-extra": true
|
|
2395
|
+
}, extra)));
|
|
2396
|
+
});
|
|
2397
|
+
Empty.displayName = 'Empty';
|
|
2398
|
+
export default Empty;
|