@aloudata/aloudata-design 0.2.5 → 0.3.0-beta.1
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/es/Avatar/index.d.ts +15 -0
- package/es/Avatar/index.js +33 -0
- package/es/Avatar/style/index.d.ts +2 -0
- package/es/Avatar/style/index.js +2 -0
- package/es/Avatar/style/index.less +34 -0
- package/es/Breadcrumb/index.d.ts +8 -0
- package/es/Breadcrumb/index.js +36 -0
- package/es/Breadcrumb/style/index.d.ts +2 -0
- package/es/Breadcrumb/style/index.js +2 -0
- package/es/Breadcrumb/style/index.less +28 -0
- package/es/Button/index.d.ts +4 -4
- package/es/Button/index.js +28 -23
- package/es/Button/style/index.less +158 -125
- package/es/Button/style/variables.less +60 -0
- package/es/Checkbox/style/index.less +16 -1
- package/es/ConfigProvider/index.d.ts +1 -0
- package/es/ConfigProvider/index.js +1 -0
- package/es/Dropdown/Button.js +1 -1
- package/es/Dropdown/style/index.less +41 -8
- package/es/Empty/image/Authority.d.ts +3 -0
- package/es/Empty/image/Authority.js +360 -0
- package/es/Empty/image/Dataspace.d.ts +3 -0
- package/es/Empty/image/Dataspace.js +271 -0
- package/es/Empty/image/Search.d.ts +3 -0
- package/es/Empty/image/Search.js +156 -0
- package/es/Empty/image/Simple.d.ts +3 -0
- package/es/Empty/image/Simple.js +20 -0
- package/es/Empty/image/Worksheet.d.ts +3 -0
- package/es/Empty/image/Worksheet.js +270 -0
- package/es/Empty/image/empty.d.ts +3 -0
- package/es/Empty/image/empty.js +139 -0
- package/es/Empty/index.d.ts +21 -5
- package/es/Empty/index.js +84 -54
- package/es/Empty/style/index.less +56 -11
- package/es/Icon/index.d.ts +2 -2
- package/es/Icon/index.js +10 -2
- package/es/Input/components/Group/index.d.ts +4 -2
- package/es/Input/components/Group/index.js +23 -1
- package/es/Input/components/Input/index.d.ts +1 -1
- package/es/Input/components/Input/index.js +12 -0
- package/es/Input/components/Password/index.d.ts +7 -1
- package/es/Input/components/Password/index.js +25 -3
- package/es/Input/style/index.less +278 -43
- package/es/InputNumber/index.d.ts +4 -0
- package/es/InputNumber/index.js +32 -0
- package/es/InputNumber/style/index.d.ts +2 -0
- package/es/InputNumber/style/index.js +2 -0
- package/es/InputNumber/style/index.less +152 -0
- package/es/Menu/Divider.d.ts +2 -1
- package/es/Menu/MenuItem.d.ts +2 -1
- package/es/Menu/SubMenu.d.ts +2 -1
- package/es/Menu/SubMenu.js +1 -1
- package/es/Menu/index.d.ts +2 -1
- package/es/Menu/style/index.less +0 -1
- package/es/Modal/index.d.ts +21 -0
- package/es/Modal/index.js +93 -0
- package/es/Modal/style/index.d.ts +2 -0
- package/es/Modal/style/index.js +2 -0
- package/es/Modal/style/index.less +206 -0
- package/es/Navigator/components/Header/index.d.ts +9 -0
- package/es/Navigator/components/Header/index.js +18 -0
- package/es/Navigator/components/Menu/index.d.ts +7 -13
- package/es/Navigator/components/Menu/index.js +26 -162
- package/es/Navigator/components/MenuItem/index.d.ts +21 -0
- package/es/Navigator/components/MenuItem/index.js +39 -0
- package/es/Navigator/index.d.ts +19 -8
- package/es/Navigator/index.js +6 -15
- package/es/Navigator/style/bg.png +0 -0
- package/es/Navigator/style/index.less +66 -176
- package/es/Popover/index.d.ts +5 -0
- package/es/Popover/index.js +22 -0
- package/es/Popover/style/index.d.ts +2 -0
- package/es/Popover/style/index.js +2 -0
- package/es/Popover/style/index.less +37 -0
- package/es/Radio/index.d.ts +2 -3
- package/es/Select/index.d.ts +36 -9
- package/es/Select/index.js +154 -7
- package/es/Select/rc-select/BaseSelect.d.ts +116 -0
- package/es/Select/rc-select/BaseSelect.js +641 -0
- package/es/Select/rc-select/OptGroup.d.ts +12 -0
- package/es/Select/{OptionsList → rc-select}/OptGroup.js +1 -0
- package/es/Select/rc-select/Option.d.ts +14 -0
- package/es/Select/{OptionsList/Options.js → rc-select/Option.js} +1 -0
- package/es/Select/rc-select/OptionList.d.ts +10 -0
- package/es/Select/rc-select/OptionList.js +401 -0
- package/es/Select/rc-select/Select.d.ts +109 -0
- package/es/Select/rc-select/Select.js +547 -0
- package/es/Select/rc-select/SelectContext.d.ts +20 -0
- package/es/Select/rc-select/SelectContext.js +4 -0
- package/es/Select/rc-select/SelectTrigger.d.ts +30 -0
- package/es/Select/rc-select/SelectTrigger.js +136 -0
- package/es/Select/rc-select/Selector/Input.d.ts +26 -0
- package/es/Select/rc-select/Selector/Input.js +114 -0
- package/es/Select/rc-select/Selector/MultipleSelector.d.ts +16 -0
- package/es/Select/rc-select/Selector/MultipleSelector.js +236 -0
- package/es/Select/rc-select/Selector/SingleSelector.d.ts +8 -0
- package/es/Select/rc-select/Selector/SingleSelector.js +112 -0
- package/es/Select/rc-select/Selector/index.d.ts +80 -0
- package/es/Select/rc-select/Selector/index.js +194 -0
- package/es/Select/rc-select/TransBtn.d.ts +12 -0
- package/es/Select/rc-select/TransBtn.js +42 -0
- package/es/Select/rc-select/hooks/useBaseProps.d.ts +13 -0
- package/es/Select/rc-select/hooks/useBaseProps.js +11 -0
- package/es/Select/rc-select/hooks/useCache.d.ts +7 -0
- package/es/Select/rc-select/hooks/useCache.js +49 -0
- package/es/Select/rc-select/hooks/useDelayReset.d.ts +5 -0
- package/es/Select/rc-select/hooks/useDelayReset.js +50 -0
- package/es/Select/rc-select/hooks/useFilterOptions.d.ts +3 -0
- package/es/Select/rc-select/hooks/useFilterOptions.js +75 -0
- package/es/Select/rc-select/hooks/useId.d.ts +5 -0
- package/es/Select/rc-select/hooks/useId.js +47 -0
- package/es/Select/rc-select/hooks/useLayoutEffect.d.ts +5 -0
- package/es/Select/rc-select/hooks/useLayoutEffect.js +17 -0
- package/es/Select/rc-select/hooks/useLock.d.ts +7 -0
- package/es/Select/rc-select/hooks/useLock.js +35 -0
- package/es/Select/rc-select/hooks/useOptions.d.ts +11 -0
- package/es/Select/rc-select/hooks/useOptions.js +53 -0
- package/es/Select/rc-select/hooks/useRefFunc.d.ts +5 -0
- package/es/Select/rc-select/hooks/useRefFunc.js +15 -0
- package/es/Select/rc-select/hooks/useSelectTriggerControl.d.ts +1 -0
- package/es/Select/rc-select/hooks/useSelectTriggerControl.js +40 -0
- package/es/Select/rc-select/index.d.ts +10 -0
- package/es/Select/rc-select/index.js +7 -0
- package/es/Select/rc-select/interface.d.ts +10 -0
- package/es/Select/{interface.js → rc-select/interface.js} +0 -0
- package/es/Select/rc-select/utils/commonUtil.d.ts +4 -0
- package/es/Select/rc-select/utils/commonUtil.js +12 -0
- package/es/Select/rc-select/utils/keyUtil.d.ts +2 -0
- package/es/Select/rc-select/utils/keyUtil.js +8 -0
- package/es/Select/rc-select/utils/legacyUtil.d.ts +3 -0
- package/es/Select/rc-select/utils/legacyUtil.js +58 -0
- package/es/Select/rc-select/utils/platformUtil.d.ts +1 -0
- package/es/Select/rc-select/utils/platformUtil.js +4 -0
- package/es/Select/rc-select/utils/valueUtil.d.ts +22 -0
- package/es/Select/rc-select/utils/valueUtil.js +157 -0
- package/es/Select/rc-select/utils/warningPropsUtil.d.ts +3 -0
- package/es/Select/rc-select/utils/warningPropsUtil.js +114 -0
- package/es/Select/style/index.d.ts +2 -0
- package/es/Select/style/index.js +4 -1
- package/es/Select/style/index.less +173 -494
- package/es/Select/style/multiple.less +222 -0
- package/es/Select/style/rtl.less +168 -0
- package/es/Select/style/select.less +337 -0
- package/es/Select/style/single.less +179 -0
- package/es/Select/style/status.less +48 -0
- package/es/Select/style/variables.less +56 -0
- package/es/Select/style/variables.less.d.ts +97 -0
- package/es/Select/utils/iconUtil.d.ts +24 -0
- package/es/Select/utils/iconUtil.js +87 -0
- package/es/Space/index.d.ts +1 -1
- package/es/Space/index.js +0 -1
- package/es/Table/Table.d.ts +6 -0
- package/es/Table/Table.js +464 -0
- package/es/Table/components/Empty/empty-img.png +0 -0
- package/es/Table/components/Empty/index.d.ts +4 -0
- package/es/Table/components/Empty/index.js +16 -0
- package/es/Table/components/Empty/index.less +24 -0
- package/es/Table/index.d.ts +2 -4
- package/es/Table/index.js +2 -463
- package/es/Table/interface.d.ts +11 -15
- package/es/Table/style/index.less +44 -21
- package/es/Tabs/style/index.less +39 -7
- package/es/Tooltip/style/index.less +1 -0
- package/es/index.d.ts +14 -2
- package/es/index.js +7 -1
- package/es/style/index.less +2 -1
- package/es/style/mixins/index.less +8 -0
- package/es/style/themes/default/index.less +1 -1
- package/es/style/themes/default/themeColor.module.less +58 -94
- package/es/style/themes/default/themeColor.module.less.d.ts +1 -17
- package/lib/Avatar/index.d.ts +15 -0
- package/lib/Avatar/index.js +57 -0
- package/lib/Avatar/style/index.d.ts +2 -0
- package/lib/Avatar/style/index.js +5 -0
- package/lib/Avatar/style/index.less +34 -0
- package/lib/Breadcrumb/index.d.ts +8 -0
- package/lib/Breadcrumb/index.js +50 -0
- package/lib/Breadcrumb/style/index.d.ts +2 -0
- package/lib/Breadcrumb/style/index.js +5 -0
- package/lib/Breadcrumb/style/index.less +28 -0
- package/lib/Button/index.d.ts +4 -4
- package/lib/Button/index.js +28 -24
- package/lib/Button/style/index.less +158 -125
- package/lib/Button/style/variables.less +60 -0
- package/lib/Checkbox/style/index.less +16 -1
- package/lib/ConfigProvider/index.d.ts +1 -0
- package/lib/ConfigProvider/index.js +26 -0
- package/lib/Dropdown/Button.js +1 -1
- package/lib/Dropdown/style/index.less +41 -8
- package/lib/Empty/image/Authority.d.ts +3 -0
- package/lib/Empty/image/Authority.js +374 -0
- package/lib/Empty/image/Dataspace.d.ts +3 -0
- package/lib/Empty/image/Dataspace.js +285 -0
- package/lib/Empty/image/Search.d.ts +3 -0
- package/lib/Empty/image/Search.js +170 -0
- package/lib/Empty/image/Simple.d.ts +3 -0
- package/lib/Empty/image/Simple.js +34 -0
- package/lib/Empty/image/Worksheet.d.ts +3 -0
- package/lib/Empty/image/Worksheet.js +284 -0
- package/lib/Empty/image/empty.d.ts +3 -0
- package/lib/Empty/image/empty.js +153 -0
- package/lib/Empty/index.d.ts +21 -5
- package/lib/Empty/index.js +94 -53
- package/lib/Empty/style/index.less +56 -11
- package/lib/Icon/index.d.ts +2 -2
- package/lib/Icon/index.js +10 -2
- package/lib/Input/components/Group/index.d.ts +4 -2
- package/lib/Input/components/Group/index.js +24 -1
- package/lib/Input/components/Input/index.d.ts +1 -1
- package/lib/Input/components/Input/index.js +13 -0
- package/lib/Input/components/Password/index.d.ts +7 -1
- package/lib/Input/components/Password/index.js +25 -2
- package/lib/Input/style/index.less +278 -43
- package/lib/InputNumber/index.d.ts +4 -0
- package/lib/InputNumber/index.js +45 -0
- package/lib/InputNumber/style/index.d.ts +2 -0
- package/lib/InputNumber/style/index.js +5 -0
- package/lib/InputNumber/style/index.less +152 -0
- package/lib/Menu/Divider.d.ts +2 -1
- package/lib/Menu/MenuItem.d.ts +2 -1
- package/lib/Menu/SubMenu.d.ts +2 -1
- package/lib/Menu/SubMenu.js +1 -1
- package/lib/Menu/index.d.ts +2 -1
- package/lib/Menu/style/index.less +0 -1
- package/lib/Modal/index.d.ts +21 -0
- package/lib/Modal/index.js +119 -0
- package/lib/Modal/style/index.d.ts +2 -0
- package/lib/Modal/style/index.js +5 -0
- package/lib/Modal/style/index.less +206 -0
- package/lib/Navigator/components/Header/index.d.ts +9 -0
- package/lib/Navigator/components/Header/index.js +28 -0
- package/lib/Navigator/components/Menu/index.d.ts +7 -13
- package/lib/Navigator/components/Menu/index.js +25 -162
- package/lib/Navigator/components/MenuItem/index.d.ts +21 -0
- package/lib/Navigator/components/MenuItem/index.js +56 -0
- package/lib/Navigator/index.d.ts +19 -8
- package/lib/Navigator/index.js +7 -15
- package/lib/Navigator/style/bg.png +0 -0
- package/lib/Navigator/style/index.less +66 -176
- package/lib/Popover/index.d.ts +5 -0
- package/lib/Popover/index.js +35 -0
- package/lib/Popover/style/index.d.ts +2 -0
- package/lib/Popover/style/index.js +5 -0
- package/lib/Popover/style/index.less +37 -0
- package/lib/Radio/index.d.ts +2 -3
- package/lib/Select/index.d.ts +36 -9
- package/lib/Select/index.js +166 -18
- package/lib/Select/rc-select/BaseSelect.d.ts +116 -0
- package/lib/Select/rc-select/BaseSelect.js +672 -0
- package/lib/Select/rc-select/OptGroup.d.ts +12 -0
- package/lib/Select/{OptionsList → rc-select}/OptGroup.js +1 -0
- package/lib/Select/rc-select/Option.d.ts +14 -0
- package/lib/Select/{OptionsList/Options.js → rc-select/Option.js} +1 -0
- package/lib/Select/rc-select/OptionList.d.ts +10 -0
- package/lib/Select/rc-select/OptionList.js +427 -0
- package/lib/Select/rc-select/Select.d.ts +109 -0
- package/lib/Select/rc-select/Select.js +545 -0
- package/lib/Select/rc-select/SelectContext.d.ts +20 -0
- package/lib/Select/rc-select/SelectContext.js +19 -0
- package/lib/Select/rc-select/SelectTrigger.d.ts +30 -0
- package/lib/Select/rc-select/SelectTrigger.js +153 -0
- package/lib/Select/rc-select/Selector/Input.d.ts +26 -0
- package/lib/Select/rc-select/Selector/Input.js +132 -0
- package/lib/Select/rc-select/Selector/MultipleSelector.d.ts +16 -0
- package/lib/Select/rc-select/Selector/MultipleSelector.js +257 -0
- package/lib/Select/rc-select/Selector/SingleSelector.d.ts +8 -0
- package/lib/Select/rc-select/Selector/SingleSelector.js +129 -0
- package/lib/Select/rc-select/Selector/index.d.ts +80 -0
- package/lib/Select/rc-select/Selector/index.js +203 -0
- package/lib/Select/rc-select/TransBtn.d.ts +12 -0
- package/lib/Select/rc-select/TransBtn.js +59 -0
- package/lib/Select/rc-select/hooks/useBaseProps.d.ts +13 -0
- package/lib/Select/rc-select/hooks/useBaseProps.js +28 -0
- package/lib/Select/rc-select/hooks/useCache.d.ts +7 -0
- package/lib/Select/rc-select/hooks/useCache.js +63 -0
- package/lib/Select/rc-select/hooks/useDelayReset.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useDelayReset.js +62 -0
- package/lib/Select/rc-select/hooks/useFilterOptions.d.ts +3 -0
- package/lib/Select/rc-select/hooks/useFilterOptions.js +91 -0
- package/lib/Select/rc-select/hooks/useId.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useId.js +68 -0
- package/lib/Select/rc-select/hooks/useLayoutEffect.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useLayoutEffect.js +32 -0
- package/lib/Select/rc-select/hooks/useLock.d.ts +7 -0
- package/lib/Select/rc-select/hooks/useLock.js +49 -0
- package/lib/Select/rc-select/hooks/useOptions.d.ts +11 -0
- package/lib/Select/rc-select/hooks/useOptions.js +68 -0
- package/lib/Select/rc-select/hooks/useRefFunc.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useRefFunc.js +29 -0
- package/lib/Select/rc-select/hooks/useSelectTriggerControl.d.ts +1 -0
- package/lib/Select/rc-select/hooks/useSelectTriggerControl.js +54 -0
- package/lib/Select/rc-select/index.d.ts +10 -0
- package/lib/Select/rc-select/index.js +45 -0
- package/lib/Select/rc-select/interface.d.ts +10 -0
- package/lib/Select/{interface.js → rc-select/interface.js} +0 -0
- package/lib/Select/rc-select/utils/commonUtil.d.ts +4 -0
- package/lib/Select/rc-select/utils/commonUtil.js +23 -0
- package/lib/Select/rc-select/utils/keyUtil.d.ts +2 -0
- package/lib/Select/rc-select/utils/keyUtil.js +17 -0
- package/lib/Select/rc-select/utils/legacyUtil.d.ts +3 -0
- package/lib/Select/rc-select/utils/legacyUtil.js +73 -0
- package/lib/Select/rc-select/utils/platformUtil.d.ts +1 -0
- package/lib/Select/rc-select/utils/platformUtil.js +11 -0
- package/lib/Select/rc-select/utils/valueUtil.d.ts +22 -0
- package/lib/Select/rc-select/utils/valueUtil.js +172 -0
- package/lib/Select/rc-select/utils/warningPropsUtil.d.ts +3 -0
- package/lib/Select/rc-select/utils/warningPropsUtil.js +132 -0
- package/lib/Select/style/index.d.ts +2 -0
- package/lib/Select/style/index.js +4 -0
- package/lib/Select/style/index.less +173 -494
- package/lib/Select/style/multiple.less +222 -0
- package/lib/Select/style/rtl.less +168 -0
- package/lib/Select/style/select.less +337 -0
- package/lib/Select/style/single.less +179 -0
- package/lib/Select/style/status.less +48 -0
- package/lib/Select/style/variables.less +56 -0
- package/lib/Select/style/variables.less.d.ts +97 -0
- package/lib/Select/utils/iconUtil.d.ts +24 -0
- package/lib/Select/utils/iconUtil.js +109 -0
- package/lib/Space/index.d.ts +1 -1
- package/lib/Space/index.js +0 -6
- package/lib/Table/Table.d.ts +6 -0
- package/lib/Table/Table.js +491 -0
- package/lib/Table/components/Empty/empty-img.png +0 -0
- package/lib/Table/components/Empty/index.d.ts +4 -0
- package/lib/Table/components/Empty/index.js +30 -0
- package/lib/Table/components/Empty/index.less +24 -0
- package/lib/Table/index.d.ts +2 -4
- package/lib/Table/index.js +2 -478
- package/lib/Table/interface.d.ts +11 -15
- package/lib/Table/style/index.less +44 -21
- package/lib/Tabs/style/index.less +39 -7
- package/lib/Tooltip/style/index.less +1 -0
- package/lib/index.d.ts +14 -2
- package/lib/index.js +48 -0
- package/lib/style/index.less +2 -1
- package/lib/style/mixins/index.less +8 -0
- package/lib/style/themes/default/index.less +1 -1
- package/lib/style/themes/default/themeColor.module.less +58 -94
- package/lib/style/themes/default/themeColor.module.less.d.ts +1 -17
- package/package.json +3 -2
- package/es/Select/BaseSelect.d.ts +0 -5
- package/es/Select/BaseSelect.js +0 -413
- package/es/Select/OptionsList/OptGroup.d.ts +0 -7
- package/es/Select/OptionsList/OptionItem/RenderGroup.d.ts +0 -9
- package/es/Select/OptionsList/OptionItem/RenderGroup.js +0 -16
- package/es/Select/OptionsList/OptionItem/RenderLabelIcon.d.ts +0 -10
- package/es/Select/OptionsList/OptionItem/RenderLabelIcon.js +0 -45
- package/es/Select/OptionsList/OptionItem/RenderOption.d.ts +0 -16
- package/es/Select/OptionsList/OptionItem/RenderOption.js +0 -79
- package/es/Select/OptionsList/OptionItem/RenderTooltip.d.ts +0 -8
- package/es/Select/OptionsList/OptionItem/RenderTooltip.js +0 -25
- package/es/Select/OptionsList/OptionItem.d.ts +0 -4
- package/es/Select/OptionsList/OptionItem.js +0 -4
- package/es/Select/OptionsList/Options.d.ts +0 -7
- package/es/Select/OptionsList/index.d.ts +0 -4
- package/es/Select/OptionsList/index.js +0 -176
- package/es/Select/Selector/index.d.ts +0 -4
- package/es/Select/Selector/index.js +0 -252
- package/es/Select/VirtualList.d.ts +0 -5
- package/es/Select/VirtualList.js +0 -29
- package/es/Select/hooks/useCacheOption.d.ts +0 -9
- package/es/Select/hooks/useCacheOption.js +0 -107
- package/es/Select/interface.d.ts +0 -235
- package/es/Select/utils.d.ts +0 -21
- package/es/Select/utils.js +0 -193
- package/lib/Select/BaseSelect.d.ts +0 -5
- package/lib/Select/BaseSelect.js +0 -446
- package/lib/Select/OptionsList/OptGroup.d.ts +0 -7
- package/lib/Select/OptionsList/OptionItem/RenderGroup.d.ts +0 -9
- package/lib/Select/OptionsList/OptionItem/RenderGroup.js +0 -27
- package/lib/Select/OptionsList/OptionItem/RenderLabelIcon.d.ts +0 -10
- package/lib/Select/OptionsList/OptionItem/RenderLabelIcon.js +0 -60
- package/lib/Select/OptionsList/OptionItem/RenderOption.d.ts +0 -16
- package/lib/Select/OptionsList/OptionItem/RenderOption.js +0 -94
- package/lib/Select/OptionsList/OptionItem/RenderTooltip.d.ts +0 -8
- package/lib/Select/OptionsList/OptionItem/RenderTooltip.js +0 -37
- package/lib/Select/OptionsList/OptionItem.d.ts +0 -4
- package/lib/Select/OptionsList/OptionItem.js +0 -39
- package/lib/Select/OptionsList/Options.d.ts +0 -7
- package/lib/Select/OptionsList/index.d.ts +0 -4
- package/lib/Select/OptionsList/index.js +0 -195
- package/lib/Select/Selector/index.d.ts +0 -4
- package/lib/Select/Selector/index.js +0 -276
- package/lib/Select/VirtualList.d.ts +0 -5
- package/lib/Select/VirtualList.js +0 -42
- package/lib/Select/hooks/useCacheOption.d.ts +0 -9
- package/lib/Select/hooks/useCacheOption.js +0 -113
- package/lib/Select/interface.d.ts +0 -235
- package/lib/Select/utils.d.ts +0 -21
- package/lib/Select/utils.js +0 -233
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var Empty = function Empty() {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
5
|
+
className: " ald-empty-img",
|
|
6
|
+
width: "264",
|
|
7
|
+
height: "264",
|
|
8
|
+
viewBox: "0 0 264 264",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
clipPath: "url(#clip0_3756_45715)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
14
|
+
cx: "132",
|
|
15
|
+
cy: "133",
|
|
16
|
+
r: "98",
|
|
17
|
+
fill: "#D4E4FF"
|
|
18
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
19
|
+
cx: "12",
|
|
20
|
+
cy: "182",
|
|
21
|
+
r: "10",
|
|
22
|
+
fill: "#D4E4FF"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
24
|
+
cx: "246",
|
|
25
|
+
cy: "90",
|
|
26
|
+
r: "10",
|
|
27
|
+
fill: "#D4E4FF"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
29
|
+
cx: "257",
|
|
30
|
+
cy: "69",
|
|
31
|
+
r: "5",
|
|
32
|
+
fill: "#D4E4FF"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
34
|
+
cx: "29",
|
|
35
|
+
cy: "77",
|
|
36
|
+
r: "5",
|
|
37
|
+
fill: "#D4E4FF"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
39
|
+
filter: "url(#filter0_dd_3756_45715)"
|
|
40
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
41
|
+
d: "M44 68C44 63.5817 47.5817 60 52 60L164 60C168.418 60 172 63.5817 172 68V202C172 206.418 168.418 210 164 210H52C47.5817 210 44 206.418 44 202V68Z",
|
|
42
|
+
fill: "white"
|
|
43
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
44
|
+
filter: "url(#filter1_dd_3756_45715)"
|
|
45
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
d: "M92 68C92 63.5817 95.5817 60 100 60L212 60C216.418 60 220 63.5817 220 68V202C220 206.418 216.418 210 212 210H100C95.5817 210 92 206.418 92 202V68Z",
|
|
47
|
+
fill: "white"
|
|
48
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
49
|
+
filter: "url(#filter2_dd_3756_45715)"
|
|
50
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
51
|
+
d: "M68 56C68 51.5817 71.5817 48 76 48L188 48C192.418 48 196 51.5817 196 56V214C196 218.418 192.418 222 188 222H76C71.5817 222 68 218.418 68 214V56Z",
|
|
52
|
+
fill: "white"
|
|
53
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
54
|
+
x: "84",
|
|
55
|
+
y: "81",
|
|
56
|
+
width: "72",
|
|
57
|
+
height: "8",
|
|
58
|
+
rx: "4",
|
|
59
|
+
fill: "#D4E4FF"
|
|
60
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
61
|
+
x: "84",
|
|
62
|
+
y: "101",
|
|
63
|
+
width: "40",
|
|
64
|
+
height: "8",
|
|
65
|
+
rx: "4",
|
|
66
|
+
fill: "#EFF5FF"
|
|
67
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
68
|
+
x: "132",
|
|
69
|
+
y: "101",
|
|
70
|
+
width: "48",
|
|
71
|
+
height: "8",
|
|
72
|
+
rx: "4",
|
|
73
|
+
fill: "#D4E4FF"
|
|
74
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
75
|
+
x: "84",
|
|
76
|
+
y: "121",
|
|
77
|
+
width: "24",
|
|
78
|
+
height: "8",
|
|
79
|
+
rx: "4",
|
|
80
|
+
fill: "#EFF5FF"
|
|
81
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
82
|
+
x: "116",
|
|
83
|
+
y: "121",
|
|
84
|
+
width: "48",
|
|
85
|
+
height: "8",
|
|
86
|
+
rx: "4",
|
|
87
|
+
fill: "#EFF5FF"
|
|
88
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
89
|
+
x: "84",
|
|
90
|
+
y: "141",
|
|
91
|
+
width: "56",
|
|
92
|
+
height: "8",
|
|
93
|
+
rx: "4",
|
|
94
|
+
fill: "#D4E4FF"
|
|
95
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
96
|
+
x: "148",
|
|
97
|
+
y: "141",
|
|
98
|
+
width: "24",
|
|
99
|
+
height: "8",
|
|
100
|
+
rx: "4",
|
|
101
|
+
fill: "#EFF5FF"
|
|
102
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
103
|
+
x: "84",
|
|
104
|
+
y: "161",
|
|
105
|
+
width: "48",
|
|
106
|
+
height: "8",
|
|
107
|
+
rx: "4",
|
|
108
|
+
fill: "#EFF5FF"
|
|
109
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
110
|
+
x: "140",
|
|
111
|
+
y: "161",
|
|
112
|
+
width: "32",
|
|
113
|
+
height: "8",
|
|
114
|
+
rx: "4",
|
|
115
|
+
fill: "#EFF5FF"
|
|
116
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
117
|
+
x: "84",
|
|
118
|
+
y: "181",
|
|
119
|
+
width: "16",
|
|
120
|
+
height: "8",
|
|
121
|
+
rx: "4",
|
|
122
|
+
fill: "#EFF5FF"
|
|
123
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
124
|
+
x: "108",
|
|
125
|
+
y: "181",
|
|
126
|
+
width: "38",
|
|
127
|
+
height: "8",
|
|
128
|
+
rx: "4",
|
|
129
|
+
fill: "#D4E4FF"
|
|
130
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
131
|
+
x: "154",
|
|
132
|
+
y: "181",
|
|
133
|
+
width: "24",
|
|
134
|
+
height: "8",
|
|
135
|
+
rx: "4",
|
|
136
|
+
fill: "#EFF5FF"
|
|
137
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
138
|
+
filter: "url(#filter3_dd_3756_45715)"
|
|
139
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
140
|
+
cx: "132",
|
|
141
|
+
cy: "132",
|
|
142
|
+
r: "32",
|
|
143
|
+
fill: "url(#paint0_linear_3756_45715)"
|
|
144
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
145
|
+
d: "M137 129V127C137 124.2 134.8 122 132 122C129.2 122 127 124.2 127 127V129C125.3 129 124 130.3 124 132V139C124 140.7 125.3 142 127 142H137C138.7 142 140 140.7 140 139V132C140 130.3 138.7 129 137 129ZM129 127C129 125.3 130.3 124 132 124C133.7 124 135 125.3 135 127V129H129V127ZM133.1 135.5L133 135.6V137C133 137.6 132.6 138 132 138C131.4 138 131 137.6 131 137V135.6C130.4 135 130.3 134.1 130.9 133.5C131.5 132.9 132.4 132.8 133 133.4C133.6 133.9 133.7 134.9 133.1 135.5Z",
|
|
146
|
+
fill: "white"
|
|
147
|
+
}))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
148
|
+
id: "filter0_dd_3756_45715",
|
|
149
|
+
x: "4",
|
|
150
|
+
y: "28",
|
|
151
|
+
width: "208",
|
|
152
|
+
height: "230",
|
|
153
|
+
filterUnits: "userSpaceOnUse",
|
|
154
|
+
colorInterpolationFilters: "sRGB"
|
|
155
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
156
|
+
floodOpacity: "0",
|
|
157
|
+
result: "BackgroundImageFix"
|
|
158
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
159
|
+
in: "SourceAlpha",
|
|
160
|
+
type: "matrix",
|
|
161
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
162
|
+
result: "hardAlpha"
|
|
163
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
164
|
+
dy: "8"
|
|
165
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
166
|
+
stdDeviation: "20"
|
|
167
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
168
|
+
type: "matrix",
|
|
169
|
+
values: "0 0 0 0 0.0823529 0 0 0 0 0.321569 0 0 0 0 0.87451 0 0 0 0.04 0"
|
|
170
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
171
|
+
mode: "normal",
|
|
172
|
+
in2: "BackgroundImageFix",
|
|
173
|
+
result: "effect1_dropShadow_3756_45715"
|
|
174
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
175
|
+
in: "SourceAlpha",
|
|
176
|
+
type: "matrix",
|
|
177
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
178
|
+
result: "hardAlpha"
|
|
179
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
180
|
+
dy: "4"
|
|
181
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
182
|
+
stdDeviation: "8"
|
|
183
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
184
|
+
type: "matrix",
|
|
185
|
+
values: "0 0 0 0 0.0823529 0 0 0 0 0.321569 0 0 0 0 0.87451 0 0 0 0.08 0"
|
|
186
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
187
|
+
mode: "normal",
|
|
188
|
+
in2: "effect1_dropShadow_3756_45715",
|
|
189
|
+
result: "effect2_dropShadow_3756_45715"
|
|
190
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
191
|
+
mode: "normal",
|
|
192
|
+
in: "SourceGraphic",
|
|
193
|
+
in2: "effect2_dropShadow_3756_45715",
|
|
194
|
+
result: "shape"
|
|
195
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
196
|
+
id: "filter1_dd_3756_45715",
|
|
197
|
+
x: "52",
|
|
198
|
+
y: "28",
|
|
199
|
+
width: "208",
|
|
200
|
+
height: "230",
|
|
201
|
+
filterUnits: "userSpaceOnUse",
|
|
202
|
+
colorInterpolationFilters: "sRGB"
|
|
203
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
204
|
+
floodOpacity: "0",
|
|
205
|
+
result: "BackgroundImageFix"
|
|
206
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
207
|
+
in: "SourceAlpha",
|
|
208
|
+
type: "matrix",
|
|
209
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
210
|
+
result: "hardAlpha"
|
|
211
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
212
|
+
dy: "8"
|
|
213
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
214
|
+
stdDeviation: "20"
|
|
215
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
216
|
+
type: "matrix",
|
|
217
|
+
values: "0 0 0 0 0.0823529 0 0 0 0 0.321569 0 0 0 0 0.87451 0 0 0 0.04 0"
|
|
218
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
219
|
+
mode: "normal",
|
|
220
|
+
in2: "BackgroundImageFix",
|
|
221
|
+
result: "effect1_dropShadow_3756_45715"
|
|
222
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
223
|
+
in: "SourceAlpha",
|
|
224
|
+
type: "matrix",
|
|
225
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
226
|
+
result: "hardAlpha"
|
|
227
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
228
|
+
dy: "4"
|
|
229
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
230
|
+
stdDeviation: "8"
|
|
231
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
232
|
+
type: "matrix",
|
|
233
|
+
values: "0 0 0 0 0.0823529 0 0 0 0 0.321569 0 0 0 0 0.87451 0 0 0 0.08 0"
|
|
234
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
235
|
+
mode: "normal",
|
|
236
|
+
in2: "effect1_dropShadow_3756_45715",
|
|
237
|
+
result: "effect2_dropShadow_3756_45715"
|
|
238
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
239
|
+
mode: "normal",
|
|
240
|
+
in: "SourceGraphic",
|
|
241
|
+
in2: "effect2_dropShadow_3756_45715",
|
|
242
|
+
result: "shape"
|
|
243
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
244
|
+
id: "filter2_dd_3756_45715",
|
|
245
|
+
x: "28",
|
|
246
|
+
y: "16",
|
|
247
|
+
width: "208",
|
|
248
|
+
height: "254",
|
|
249
|
+
filterUnits: "userSpaceOnUse",
|
|
250
|
+
colorInterpolationFilters: "sRGB"
|
|
251
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
252
|
+
floodOpacity: "0",
|
|
253
|
+
result: "BackgroundImageFix"
|
|
254
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
255
|
+
in: "SourceAlpha",
|
|
256
|
+
type: "matrix",
|
|
257
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
258
|
+
result: "hardAlpha"
|
|
259
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
260
|
+
dy: "8"
|
|
261
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
262
|
+
stdDeviation: "20"
|
|
263
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
264
|
+
type: "matrix",
|
|
265
|
+
values: "0 0 0 0 0.0823529 0 0 0 0 0.321569 0 0 0 0 0.87451 0 0 0 0.04 0"
|
|
266
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
267
|
+
mode: "normal",
|
|
268
|
+
in2: "BackgroundImageFix",
|
|
269
|
+
result: "effect1_dropShadow_3756_45715"
|
|
270
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
271
|
+
in: "SourceAlpha",
|
|
272
|
+
type: "matrix",
|
|
273
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
274
|
+
result: "hardAlpha"
|
|
275
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
276
|
+
dy: "4"
|
|
277
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
278
|
+
stdDeviation: "8"
|
|
279
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
280
|
+
type: "matrix",
|
|
281
|
+
values: "0 0 0 0 0.0823529 0 0 0 0 0.321569 0 0 0 0 0.87451 0 0 0 0.08 0"
|
|
282
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
283
|
+
mode: "normal",
|
|
284
|
+
in2: "effect1_dropShadow_3756_45715",
|
|
285
|
+
result: "effect2_dropShadow_3756_45715"
|
|
286
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
287
|
+
mode: "normal",
|
|
288
|
+
in: "SourceGraphic",
|
|
289
|
+
in2: "effect2_dropShadow_3756_45715",
|
|
290
|
+
result: "shape"
|
|
291
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
292
|
+
id: "filter3_dd_3756_45715",
|
|
293
|
+
x: "54",
|
|
294
|
+
y: "66",
|
|
295
|
+
width: "156",
|
|
296
|
+
height: "156",
|
|
297
|
+
filterUnits: "userSpaceOnUse",
|
|
298
|
+
colorInterpolationFilters: "sRGB"
|
|
299
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
300
|
+
floodOpacity: "0",
|
|
301
|
+
result: "BackgroundImageFix"
|
|
302
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
303
|
+
in: "SourceAlpha",
|
|
304
|
+
type: "matrix",
|
|
305
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
306
|
+
result: "hardAlpha"
|
|
307
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
308
|
+
dy: "12"
|
|
309
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
310
|
+
stdDeviation: "23"
|
|
311
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
312
|
+
type: "matrix",
|
|
313
|
+
values: "0 0 0 0 0.262745 0 0 0 0 0.360784 0 0 0 0 0.941176 0 0 0 0.08 0"
|
|
314
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
315
|
+
mode: "normal",
|
|
316
|
+
in2: "BackgroundImageFix",
|
|
317
|
+
result: "effect1_dropShadow_3756_45715"
|
|
318
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
319
|
+
in: "SourceAlpha",
|
|
320
|
+
type: "matrix",
|
|
321
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
322
|
+
result: "hardAlpha"
|
|
323
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
324
|
+
dy: "16"
|
|
325
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
326
|
+
stdDeviation: "7.5"
|
|
327
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
328
|
+
type: "matrix",
|
|
329
|
+
values: "0 0 0 0 0.262745 0 0 0 0 0.360784 0 0 0 0 0.941176 0 0 0 0.1 0"
|
|
330
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
331
|
+
mode: "normal",
|
|
332
|
+
in2: "effect1_dropShadow_3756_45715",
|
|
333
|
+
result: "effect2_dropShadow_3756_45715"
|
|
334
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
335
|
+
mode: "normal",
|
|
336
|
+
in: "SourceGraphic",
|
|
337
|
+
in2: "effect2_dropShadow_3756_45715",
|
|
338
|
+
result: "shape"
|
|
339
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
340
|
+
id: "paint0_linear_3756_45715",
|
|
341
|
+
x1: "132",
|
|
342
|
+
y1: "100",
|
|
343
|
+
x2: "132",
|
|
344
|
+
y2: "164",
|
|
345
|
+
gradientUnits: "userSpaceOnUse"
|
|
346
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
347
|
+
stopColor: "#79A5FE"
|
|
348
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
349
|
+
offset: "1",
|
|
350
|
+
stopColor: "#1552DF"
|
|
351
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
352
|
+
id: "clip0_3756_45715"
|
|
353
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
354
|
+
width: "264",
|
|
355
|
+
height: "264",
|
|
356
|
+
fill: "white"
|
|
357
|
+
}))));
|
|
358
|
+
};
|
|
359
|
+
|
|
360
|
+
export default Empty;
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var Empty = function Empty() {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
5
|
+
className: " ald-empty-img",
|
|
6
|
+
width: "264",
|
|
7
|
+
height: "264",
|
|
8
|
+
viewBox: "0 0 264 264",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
clipPath: "url(#clip0_3756_45848)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
14
|
+
cx: "132",
|
|
15
|
+
cy: "133",
|
|
16
|
+
r: "98",
|
|
17
|
+
fill: "#D4E4FF"
|
|
18
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
19
|
+
cx: "12",
|
|
20
|
+
cy: "182",
|
|
21
|
+
r: "10",
|
|
22
|
+
fill: "#D4E4FF"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
24
|
+
cx: "246",
|
|
25
|
+
cy: "90",
|
|
26
|
+
r: "10",
|
|
27
|
+
fill: "#D4E4FF"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
29
|
+
cx: "257",
|
|
30
|
+
cy: "69",
|
|
31
|
+
r: "5",
|
|
32
|
+
fill: "#D4E4FF"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
34
|
+
cx: "29",
|
|
35
|
+
cy: "77",
|
|
36
|
+
r: "5",
|
|
37
|
+
fill: "#D4E4FF"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
39
|
+
filter: "url(#filter0_dd_3756_45848)"
|
|
40
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
41
|
+
x: "26",
|
|
42
|
+
y: "168",
|
|
43
|
+
width: "200",
|
|
44
|
+
height: "56",
|
|
45
|
+
rx: "8",
|
|
46
|
+
fill: "white"
|
|
47
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
48
|
+
x: "16",
|
|
49
|
+
y: "104",
|
|
50
|
+
width: "200",
|
|
51
|
+
height: "56",
|
|
52
|
+
rx: "8",
|
|
53
|
+
fill: "white"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
55
|
+
x: "38",
|
|
56
|
+
y: "40",
|
|
57
|
+
width: "200",
|
|
58
|
+
height: "56",
|
|
59
|
+
rx: "8",
|
|
60
|
+
fill: "white"
|
|
61
|
+
})), /*#__PURE__*/React.createElement("rect", {
|
|
62
|
+
x: "38",
|
|
63
|
+
y: "40",
|
|
64
|
+
width: "200",
|
|
65
|
+
height: "56",
|
|
66
|
+
rx: "8",
|
|
67
|
+
fill: "white"
|
|
68
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
69
|
+
cx: "62",
|
|
70
|
+
cy: "68",
|
|
71
|
+
r: "11",
|
|
72
|
+
stroke: "#D4E4FF",
|
|
73
|
+
strokeWidth: "2"
|
|
74
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
75
|
+
x: "86",
|
|
76
|
+
y: "56",
|
|
77
|
+
width: "72",
|
|
78
|
+
height: "8",
|
|
79
|
+
rx: "4",
|
|
80
|
+
fill: "#D4E4FF"
|
|
81
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
82
|
+
x: "86",
|
|
83
|
+
y: "72",
|
|
84
|
+
width: "128",
|
|
85
|
+
height: "8",
|
|
86
|
+
rx: "4",
|
|
87
|
+
fill: "#EFF5FF"
|
|
88
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
89
|
+
x: "16",
|
|
90
|
+
y: "104",
|
|
91
|
+
width: "200",
|
|
92
|
+
height: "56",
|
|
93
|
+
rx: "8",
|
|
94
|
+
fill: "white"
|
|
95
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
96
|
+
cx: "40",
|
|
97
|
+
cy: "132",
|
|
98
|
+
r: "11",
|
|
99
|
+
stroke: "#D4E4FF",
|
|
100
|
+
strokeWidth: "2"
|
|
101
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
102
|
+
x: "64",
|
|
103
|
+
y: "120",
|
|
104
|
+
width: "112",
|
|
105
|
+
height: "8",
|
|
106
|
+
rx: "4",
|
|
107
|
+
fill: "#D4E4FF"
|
|
108
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
109
|
+
x: "64",
|
|
110
|
+
y: "136",
|
|
111
|
+
width: "72",
|
|
112
|
+
height: "8",
|
|
113
|
+
rx: "4",
|
|
114
|
+
fill: "#EFF5FF"
|
|
115
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
116
|
+
x: "26",
|
|
117
|
+
y: "168",
|
|
118
|
+
width: "200",
|
|
119
|
+
height: "56",
|
|
120
|
+
rx: "8",
|
|
121
|
+
fill: "white"
|
|
122
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
123
|
+
cx: "50",
|
|
124
|
+
cy: "196",
|
|
125
|
+
r: "11",
|
|
126
|
+
stroke: "#D4E4FF",
|
|
127
|
+
strokeWidth: "2"
|
|
128
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
129
|
+
x: "74",
|
|
130
|
+
y: "184",
|
|
131
|
+
width: "96",
|
|
132
|
+
height: "8",
|
|
133
|
+
rx: "4",
|
|
134
|
+
fill: "#D4E4FF"
|
|
135
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
136
|
+
x: "74",
|
|
137
|
+
y: "200",
|
|
138
|
+
width: "140",
|
|
139
|
+
height: "8",
|
|
140
|
+
rx: "4",
|
|
141
|
+
fill: "#EFF5FF"
|
|
142
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
143
|
+
filter: "url(#filter1_dd_3756_45848)"
|
|
144
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
145
|
+
cx: "220",
|
|
146
|
+
cy: "164",
|
|
147
|
+
r: "20",
|
|
148
|
+
fill: "url(#paint0_linear_3756_45848)"
|
|
149
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
150
|
+
fillRule: "evenodd",
|
|
151
|
+
clipRule: "evenodd",
|
|
152
|
+
d: "M219.333 155.667C218.781 155.667 218.333 156.114 218.333 156.667V162.333H212.667C212.114 162.333 211.667 162.781 211.667 163.333L211.667 164.667C211.667 165.219 212.114 165.667 212.667 165.667H218.333V171.333C218.333 171.886 218.781 172.333 219.333 172.333H220.667C221.219 172.333 221.667 171.886 221.667 171.333V165.667H227.333C227.886 165.667 228.333 165.219 228.333 164.667V163.333C228.333 162.781 227.886 162.333 227.333 162.333H221.667V156.667C221.667 156.114 221.219 155.667 220.667 155.667H219.333Z",
|
|
153
|
+
fill: "white"
|
|
154
|
+
}))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
155
|
+
id: "filter0_dd_3756_45848",
|
|
156
|
+
x: "-24",
|
|
157
|
+
y: "8",
|
|
158
|
+
width: "302",
|
|
159
|
+
height: "264",
|
|
160
|
+
filterUnits: "userSpaceOnUse",
|
|
161
|
+
colorInterpolationFilters: "sRGB"
|
|
162
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
163
|
+
floodOpacity: "0",
|
|
164
|
+
result: "BackgroundImageFix"
|
|
165
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
166
|
+
in: "SourceAlpha",
|
|
167
|
+
type: "matrix",
|
|
168
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
169
|
+
result: "hardAlpha"
|
|
170
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
171
|
+
dy: "8"
|
|
172
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
173
|
+
stdDeviation: "20"
|
|
174
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
175
|
+
type: "matrix",
|
|
176
|
+
values: "0 0 0 0 0.262745 0 0 0 0 0.360784 0 0 0 0 0.941176 0 0 0 0.04 0"
|
|
177
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
178
|
+
mode: "normal",
|
|
179
|
+
in2: "BackgroundImageFix",
|
|
180
|
+
result: "effect1_dropShadow_3756_45848"
|
|
181
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
182
|
+
in: "SourceAlpha",
|
|
183
|
+
type: "matrix",
|
|
184
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
185
|
+
result: "hardAlpha"
|
|
186
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
187
|
+
dy: "4"
|
|
188
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
189
|
+
stdDeviation: "8"
|
|
190
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
191
|
+
type: "matrix",
|
|
192
|
+
values: "0 0 0 0 0.262745 0 0 0 0 0.360784 0 0 0 0 0.941176 0 0 0 0.08 0"
|
|
193
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
194
|
+
mode: "normal",
|
|
195
|
+
in2: "effect1_dropShadow_3756_45848",
|
|
196
|
+
result: "effect2_dropShadow_3756_45848"
|
|
197
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
198
|
+
mode: "normal",
|
|
199
|
+
in: "SourceGraphic",
|
|
200
|
+
in2: "effect2_dropShadow_3756_45848",
|
|
201
|
+
result: "shape"
|
|
202
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
203
|
+
id: "filter1_dd_3756_45848",
|
|
204
|
+
x: "154",
|
|
205
|
+
y: "110",
|
|
206
|
+
width: "132",
|
|
207
|
+
height: "132",
|
|
208
|
+
filterUnits: "userSpaceOnUse",
|
|
209
|
+
colorInterpolationFilters: "sRGB"
|
|
210
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
211
|
+
floodOpacity: "0",
|
|
212
|
+
result: "BackgroundImageFix"
|
|
213
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
214
|
+
in: "SourceAlpha",
|
|
215
|
+
type: "matrix",
|
|
216
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
217
|
+
result: "hardAlpha"
|
|
218
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
219
|
+
dy: "12"
|
|
220
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
221
|
+
stdDeviation: "23"
|
|
222
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
223
|
+
type: "matrix",
|
|
224
|
+
values: "0 0 0 0 0.262745 0 0 0 0 0.360784 0 0 0 0 0.941176 0 0 0 0.08 0"
|
|
225
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
226
|
+
mode: "normal",
|
|
227
|
+
in2: "BackgroundImageFix",
|
|
228
|
+
result: "effect1_dropShadow_3756_45848"
|
|
229
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
230
|
+
in: "SourceAlpha",
|
|
231
|
+
type: "matrix",
|
|
232
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
233
|
+
result: "hardAlpha"
|
|
234
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
235
|
+
dy: "16"
|
|
236
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
237
|
+
stdDeviation: "7.5"
|
|
238
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
239
|
+
type: "matrix",
|
|
240
|
+
values: "0 0 0 0 0.262745 0 0 0 0 0.360784 0 0 0 0 0.941176 0 0 0 0.1 0"
|
|
241
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
242
|
+
mode: "normal",
|
|
243
|
+
in2: "effect1_dropShadow_3756_45848",
|
|
244
|
+
result: "effect2_dropShadow_3756_45848"
|
|
245
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
246
|
+
mode: "normal",
|
|
247
|
+
in: "SourceGraphic",
|
|
248
|
+
in2: "effect2_dropShadow_3756_45848",
|
|
249
|
+
result: "shape"
|
|
250
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
251
|
+
id: "paint0_linear_3756_45848",
|
|
252
|
+
x1: "220",
|
|
253
|
+
y1: "144",
|
|
254
|
+
x2: "220",
|
|
255
|
+
y2: "184",
|
|
256
|
+
gradientUnits: "userSpaceOnUse"
|
|
257
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
258
|
+
stopColor: "#79A5FE"
|
|
259
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
260
|
+
offset: "1",
|
|
261
|
+
stopColor: "#1552DF"
|
|
262
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
263
|
+
id: "clip0_3756_45848"
|
|
264
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
265
|
+
width: "264",
|
|
266
|
+
height: "264",
|
|
267
|
+
fill: "white"
|
|
268
|
+
}))));
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
export default Empty;
|