module-menu-vue 0.3.12 → 0.3.13

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.
Files changed (64) hide show
  1. package/README.md +24 -24
  2. package/babel.config.js +5 -5
  3. package/index.js +4 -4
  4. package/jsconfig.json +19 -19
  5. package/package.json +48 -48
  6. package/public/index.html +14 -14
  7. package/src/App.vue +29 -29
  8. package/src/assets/admin_logo.svg +48 -48
  9. package/src/assets/admin_slogo.svg +48 -48
  10. package/src/assets/alert_logo.svg +26 -26
  11. package/src/assets/alert_slogo.svg +26 -26
  12. package/src/assets/childIcon.svg +10 -10
  13. package/src/assets/dataManager_logo.svg +42 -42
  14. package/src/assets/dataanalytic_logo.svg +44 -44
  15. package/src/assets/dataanalytic_slogo.svg +47 -47
  16. package/src/assets/dataasset_logo.svg +52 -52
  17. package/src/assets/dataasset_slogo.svg +52 -52
  18. package/src/assets/datacollection_logo.svg +70 -70
  19. package/src/assets/datacollection_slogo.svg +70 -70
  20. package/src/assets/datadev_logo.svg +26 -26
  21. package/src/assets/datadev_slogo.svg +26 -26
  22. package/src/assets/datalabel_logo.svg +26 -26
  23. package/src/assets/datalabel_slogo.svg +26 -26
  24. package/src/assets/datamanager_slogo.svg +42 -42
  25. package/src/assets/dataservice_logo.svg +209 -209
  26. package/src/assets/dataservice_slogo.svg +209 -209
  27. package/src/assets/datasharing_logo.svg +28 -28
  28. package/src/assets/datasharing_slogo.svg +28 -28
  29. package/src/assets/exchange_portal_logo.svg +9 -9
  30. package/src/assets/home.svg +12 -12
  31. package/src/assets/ic_biaoqianfenxi.png +0 -0
  32. package/src/assets/ic_gonggongmokuai_m.svg +5 -5
  33. package/src/assets/ic_shujuhuiju_m.svg +5 -5
  34. package/src/assets/ic_shujukaifa_m.svg +15 -15
  35. package/src/assets/ic_shujukaifang_m.svg +5 -5
  36. package/src/assets/ic_shujuyingyong_m.svg +5 -5
  37. package/src/assets/ic_shujuzhili_m.svg +5 -5
  38. package/src/assets/metadata_logo.svg +25 -25
  39. package/src/assets/metadata_slogo.svg +25 -25
  40. package/src/assets/module.svg +12 -12
  41. package/src/assets/operate_logo.svg +63 -63
  42. package/src/assets/operate_slogo.svg +63 -63
  43. package/src/assets/personalCenter.svg +15 -15
  44. package/src/assets/quality_logo.svg +26 -26
  45. package/src/assets/quality_slogo.svg +26 -26
  46. package/src/assets/systemManage.svg +15 -15
  47. package/src/assets/wordorder_logo.svg +57 -57
  48. package/src/assets/workorder_slogo.svg +54 -54
  49. package/src/components/Menu/ModuleMenu.vue +344 -341
  50. package/src/components/Menu/constant.js +560 -545
  51. package/src/components/Menu/menu.css +122 -122
  52. package/src/components/Menu/service.js +25 -25
  53. package/src/components/Portal/PortalBtn.vue +30 -30
  54. package/src/components/Tenant/TenantList.vue +74 -74
  55. package/src/components/Tenant/service.js +17 -17
  56. package/src/components/User/UserInfo.vue +227 -227
  57. package/src/components/User/constant.js +11 -11
  58. package/src/components/User/service.js +14 -14
  59. package/src/components/Util/axios.js +89 -89
  60. package/src/components/Util/config.js +13 -13
  61. package/src/components/Util/permessionUtils.js +46 -46
  62. package/src/components/Util/userInfo.js +96 -96
  63. package/src/main.js +11 -11
  64. package/vue.config.js +34 -34
package/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # module-menu-vue
2
-
3
- ## Project setup
4
- ```
5
- npm install
6
- ```
7
-
8
- ### Compiles and hot-reloads for development
9
- ```
10
- npm run serve
11
- ```
12
-
13
- ### Compiles and minifies for production
14
- ```
15
- npm run build
16
- ```
17
-
18
- ### Lints and fixes files
19
- ```
20
- npm run lint
21
- ```
22
-
23
- ### Customize configuration
24
- See [Configuration Reference](https://cli.vuejs.org/config/).
1
+ # module-menu-vue
2
+
3
+ ## Project setup
4
+ ```
5
+ npm install
6
+ ```
7
+
8
+ ### Compiles and hot-reloads for development
9
+ ```
10
+ npm run serve
11
+ ```
12
+
13
+ ### Compiles and minifies for production
14
+ ```
15
+ npm run build
16
+ ```
17
+
18
+ ### Lints and fixes files
19
+ ```
20
+ npm run lint
21
+ ```
22
+
23
+ ### Customize configuration
24
+ See [Configuration Reference](https://cli.vuejs.org/config/).
package/babel.config.js CHANGED
@@ -1,5 +1,5 @@
1
- module.exports = {
2
- presets: [
3
- '@vue/cli-plugin-babel/preset'
4
- ]
5
- }
1
+ module.exports = {
2
+ presets: [
3
+ '@vue/cli-plugin-babel/preset'
4
+ ]
5
+ }
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import ModuleMenu from './src/components/Menu/ModuleMenu.vue';
2
- import UserInfo from './src/components/User/UserInfo.vue';
3
- import TenantList from './src/components/Tenant/TenantList.vue';
4
- import PortalBtn from './src/components/Portal/PortalBtn.vue';
1
+ import ModuleMenu from './src/components/Menu/ModuleMenu.vue';
2
+ import UserInfo from './src/components/User/UserInfo.vue';
3
+ import TenantList from './src/components/Tenant/TenantList.vue';
4
+ import PortalBtn from './src/components/Portal/PortalBtn.vue';
5
5
  export { ModuleMenu, UserInfo, TenantList, PortalBtn};
package/jsconfig.json CHANGED
@@ -1,19 +1,19 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es5",
4
- "module": "esnext",
5
- "baseUrl": "./",
6
- "moduleResolution": "node",
7
- "paths": {
8
- "@/*": [
9
- "src/*"
10
- ]
11
- },
12
- "lib": [
13
- "esnext",
14
- "dom",
15
- "dom.iterable",
16
- "scripthost"
17
- ]
18
- }
19
- }
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es5",
4
+ "module": "esnext",
5
+ "baseUrl": "./",
6
+ "moduleResolution": "node",
7
+ "paths": {
8
+ "@/*": [
9
+ "src/*"
10
+ ]
11
+ },
12
+ "lib": [
13
+ "esnext",
14
+ "dom",
15
+ "dom.iterable",
16
+ "scripthost"
17
+ ]
18
+ }
19
+ }
package/package.json CHANGED
@@ -1,48 +1,48 @@
1
- {
2
- "name": "module-menu-vue",
3
- "version": "0.3.12",
4
- "description": "城市大数据平台菜单--Vue版",
5
- "main": "/index.js",
6
- "scripts": {
7
- "serve": "vue-cli-service serve",
8
- "build": "vue-cli-service build",
9
- "lint": "vue-cli-service lint"
10
- },
11
- "dependencies": {
12
- "axios": "^1.4.0",
13
- "core-js": "^3.8.3",
14
- "element-ui": "^2.15.13",
15
- "vue": "^2.6.14"
16
- },
17
- "devDependencies": {
18
- "@babel/core": "^7.12.16",
19
- "@babel/eslint-parser": "^7.12.16",
20
- "@vue/cli-plugin-babel": "~5.0.0",
21
- "@vue/cli-plugin-eslint": "~5.0.0",
22
- "@vue/cli-service": "~5.0.0",
23
- "eslint": "^7.32.0",
24
- "eslint-plugin-vue": "^8.0.3",
25
- "vue-loader": "^17.2.2",
26
- "vue-template-compiler": "^2.7.14",
27
- "webpack": "^5.88.2"
28
- },
29
- "eslintConfig": {
30
- "root": true,
31
- "env": {
32
- "node": true
33
- },
34
- "extends": [
35
- "plugin:vue/essential",
36
- "eslint:recommended"
37
- ],
38
- "parserOptions": {
39
- "parser": "@babel/eslint-parser"
40
- },
41
- "rules": {}
42
- },
43
- "browserslist": [
44
- "> 1%",
45
- "last 2 versions",
46
- "not dead"
47
- ]
48
- }
1
+ {
2
+ "name": "module-menu-vue",
3
+ "version": "0.3.13",
4
+ "description": "城市大数据平台菜单--Vue版",
5
+ "main": "/index.js",
6
+ "scripts": {
7
+ "serve": "vue-cli-service serve",
8
+ "build": "vue-cli-service build",
9
+ "lint": "vue-cli-service lint"
10
+ },
11
+ "dependencies": {
12
+ "axios": "^1.4.0",
13
+ "core-js": "^3.8.3",
14
+ "element-ui": "^2.15.13",
15
+ "vue": "^2.6.14"
16
+ },
17
+ "devDependencies": {
18
+ "@babel/core": "^7.12.16",
19
+ "@babel/eslint-parser": "^7.12.16",
20
+ "@vue/cli-plugin-babel": "~5.0.0",
21
+ "@vue/cli-plugin-eslint": "~5.0.0",
22
+ "@vue/cli-service": "~5.0.0",
23
+ "eslint": "^7.32.0",
24
+ "eslint-plugin-vue": "^8.0.3",
25
+ "vue-loader": "^17.2.2",
26
+ "vue-template-compiler": "^2.7.14",
27
+ "webpack": "^5.88.2"
28
+ },
29
+ "eslintConfig": {
30
+ "root": true,
31
+ "env": {
32
+ "node": true
33
+ },
34
+ "extends": [
35
+ "plugin:vue/essential",
36
+ "eslint:recommended"
37
+ ],
38
+ "parserOptions": {
39
+ "parser": "@babel/eslint-parser"
40
+ },
41
+ "rules": {}
42
+ },
43
+ "browserslist": [
44
+ "> 1%",
45
+ "last 2 versions",
46
+ "not dead"
47
+ ]
48
+ }
package/public/index.html CHANGED
@@ -1,14 +1,14 @@
1
- <!DOCTYPE html>
2
- <html lang="">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
- </head>
8
- <body style="margin: 0px;">
9
- <noscript>
10
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
11
- </noscript>
12
- <div id="app"></div>
13
- </body>
14
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
+ </head>
8
+ <body style="margin: 0px;">
9
+ <noscript>
10
+ <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
11
+ </noscript>
12
+ <div id="app"></div>
13
+ </body>
14
+ </html>
package/src/App.vue CHANGED
@@ -1,29 +1,29 @@
1
- <template>
2
- <div id="app">
3
- <ModuleMenu></ModuleMenu>
4
- <TenantList></TenantList>
5
- <PortalBtn></PortalBtn>
6
- <UserInfo></UserInfo>
7
- </div>
8
- </template>
9
-
10
- <script>
11
- import ModuleMenu from '@/components/Menu/ModuleMenu.vue'
12
- // import PortalBtn from '@/components/Portal/PortalBtn.vue'
13
- // import TenantList from '@/components/Tenant/TenantList.vue'
14
- import UserInfo from '@/components/User/UserInfo.vue'
15
- export default {
16
- name: 'App',
17
- data () {
18
- return {}
19
- },
20
- components: {
21
- ModuleMenu,
22
- // TenantList,
23
- // PortalBtn,
24
- UserInfo
25
- }
26
- }
27
- </script>
28
- <style>
29
- </style>
1
+ <template>
2
+ <div id="app">
3
+ <ModuleMenu></ModuleMenu>
4
+ <TenantList></TenantList>
5
+ <PortalBtn></PortalBtn>
6
+ <UserInfo></UserInfo>
7
+ </div>
8
+ </template>
9
+
10
+ <script>
11
+ import ModuleMenu from '@/components/Menu/ModuleMenu.vue'
12
+ // import PortalBtn from '@/components/Portal/PortalBtn.vue'
13
+ // import TenantList from '@/components/Tenant/TenantList.vue'
14
+ import UserInfo from '@/components/User/UserInfo.vue'
15
+ export default {
16
+ name: 'App',
17
+ data () {
18
+ return {}
19
+ },
20
+ components: {
21
+ ModuleMenu,
22
+ // TenantList,
23
+ // PortalBtn,
24
+ UserInfo
25
+ }
26
+ }
27
+ </script>
28
+ <style>
29
+ </style>
@@ -1,48 +1,48 @@
1
- <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g id="ic_gonggongmokuai_s">
3
- <g id="Group 427318809">
4
- <path id="Vector" d="M17.1417 22.6303C17.1417 20.7006 18.5882 19.9116 20.3624 20.8712C21.3908 21.4255 22.7017 21.095 23.2893 20.1249L24.4081 18.2804C24.9392 17.4382 24.6228 16.3507 23.73 15.8497L23.5153 15.7324C21.7411 14.7729 21.7411 13.195 23.5153 12.2248L23.73 12.1075C24.6228 11.6278 24.9392 10.5403 24.4081 9.69807L23.2893 7.85366C22.7017 6.88348 21.3795 6.55298 20.3511 7.10736C18.5882 8.07755 17.1417 7.28861 17.1417 5.35891C17.1417 4.25013 16.1811 3.33325 14.9945 3.33325L13.0056 3.33325C11.8303 3.33325 10.8585 4.23947 10.8585 5.35891C10.8585 7.28861 9.41198 8.07755 7.63776 7.10736C6.60939 6.55297 5.2985 6.88348 4.71086 7.85366L3.59209 9.69807C3.06095 10.5403 3.37737 11.6278 4.27013 12.1289L4.48485 12.2461C6.25907 13.2056 6.25907 14.7835 4.48485 15.7537L4.27013 15.871C3.37737 16.3721 3.06095 17.4595 3.59209 18.3018L4.71086 20.1462C5.2985 21.1164 6.62069 21.4469 7.63776 20.8925C9.41198 19.9223 10.8585 20.7112 10.8585 22.6409C10.8585 23.7497 11.819 24.6666 13.0056 24.6666L14.9945 24.6666C16.1698 24.6559 17.1417 23.7497 17.1417 22.6303Z" fill="url(#paint0_linear_1993_17320)"/>
5
- <g id="Group 427318809_2">
6
- <g id="Vector_2" filter="url(#filter0_b_1993_17320)">
7
- <path d="M26.6305 14.8583C24.7008 14.8583 23.9119 13.4118 24.8714 11.6376C25.4258 10.6092 25.0953 9.29834 24.1251 8.7107L22.2807 7.59193C21.4384 7.06079 20.351 7.37721 19.8499 8.26997L19.7326 8.48469C18.7731 10.2589 17.1952 10.2589 16.2251 8.48469L16.1078 8.26997C15.628 7.37721 14.5406 7.06079 13.6983 7.59193L11.8539 8.7107C10.8837 9.29834 10.5532 10.6205 11.1076 11.6489C12.0778 13.4118 11.2889 14.8583 9.35915 14.8583C8.25037 14.8583 7.3335 15.8189 7.3335 17.0055V18.9944C7.3335 20.1697 8.23971 21.1415 9.35915 21.1415C11.2889 21.1415 12.0778 22.588 11.1076 24.3622C10.5532 25.3906 10.8837 26.7015 11.8539 27.2891L13.6983 28.4079C14.5406 28.939 15.628 28.6226 16.1291 27.7299L16.2464 27.5152C17.2059 25.7409 18.7838 25.7409 19.754 27.5152L19.8712 27.7299C20.3723 28.6226 21.4598 28.939 22.302 28.4079L24.1464 27.2891C25.1166 26.7015 25.4471 25.3793 24.8927 24.3622C23.9225 22.588 24.7115 21.1415 26.6412 21.1415C27.75 21.1415 28.6668 20.181 28.6668 18.9944V17.0055C28.6562 15.8302 27.75 14.8583 26.6305 14.8583Z" fill="#5B9BFF" fill-opacity="0.4"/>
8
- <path d="M23.9524 8.99581L23.9522 8.9957L22.1078 7.87693L22.1029 7.87392L22.1029 7.87388C21.4371 7.45404 20.5583 7.69093 20.1415 8.43148L20.0258 8.64325C20.0257 8.64347 20.0256 8.64368 20.0255 8.64389C19.5148 9.58785 18.789 10.1487 17.9828 10.1487C17.177 10.1487 16.4486 9.58827 15.9326 8.64461L15.9325 8.64447L15.8152 8.42976L15.8141 8.42777L15.8142 8.42776C15.4198 7.69388 14.5443 7.45253 13.8761 7.87388L13.8712 7.87697L13.8712 7.87693L12.0268 8.9957L12.0266 8.99581C11.2182 9.48544 10.9258 10.6076 11.4003 11.4894C11.9181 12.431 12.0033 13.359 11.6135 14.0742C11.2202 14.796 10.4037 15.1916 9.35915 15.1916C8.45139 15.1916 7.66683 15.9856 7.66683 17.0055V18.9944C7.66683 20.0053 8.44293 20.8082 9.35915 20.8082C10.4038 20.8082 11.2204 21.2039 11.6137 21.9273C12.0033 22.6439 11.918 23.5744 11.4006 24.5211C10.9261 25.4024 11.2174 26.5139 12.0266 27.004L12.0268 27.0041L13.8712 28.1229L13.8761 28.1259L13.8761 28.126C14.5419 28.5458 15.4208 28.3089 15.8375 27.5683C15.8378 27.5678 15.8381 27.5673 15.8384 27.5667L15.9532 27.3566C15.9533 27.3564 15.9533 27.3563 15.9534 27.3561C16.4641 26.412 17.1899 25.8512 17.9962 25.8512C18.802 25.8512 19.5304 26.4116 20.0464 27.3552L20.0465 27.3554L20.1619 27.5667C20.1622 27.5673 20.1625 27.5678 20.1628 27.5683C20.5796 28.3089 21.4584 28.5458 22.1242 28.126L22.1291 28.1229L22.1291 28.1229L23.9735 27.0041L23.9737 27.004C24.7835 26.5136 25.0737 25.3907 24.6 24.5218L23.9524 8.99581ZM23.9524 8.99581C24.7618 9.48607 25.0531 10.5981 24.578 11.4794M23.9524 8.99581L24.578 11.4794M24.578 11.4794C24.0658 12.4266 23.984 13.357 24.3749 14.073M24.578 11.4794L24.3749 14.073M24.3749 14.073C24.7695 14.7958 25.5857 15.1916 26.6305 15.1916M24.3749 14.073L26.6305 15.1916M26.6305 15.1916C27.5459 15.1916 28.3235 15.9939 28.3335 17.0069L26.6305 15.1916Z" stroke="url(#paint1_linear_1993_17320)" stroke-width="0.666667"/>
9
- </g>
10
- <g id="Vector_3" filter="url(#filter1_bd_1993_17320)">
11
- <path d="M14.5356 17.9998C14.5356 19.8962 16.0922 21.443 18.0006 21.443C19.909 21.443 21.4655 19.8962 21.4655 17.9998C21.4655 16.1034 19.909 14.5566 18.0006 14.5566C16.0922 14.5566 14.5356 16.1034 14.5356 17.9998Z" fill="url(#paint2_linear_1993_17320)" shape-rendering="crispEdges"/>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
16
- <defs>
17
- <filter id="filter0_b_1993_17320" x="2.00016" y="1.99992" width="31.9999" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19
- <feGaussianBlur in="BackgroundImageFix" stdDeviation="2.66667"/>
20
- <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17320"/>
21
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1993_17320" result="shape"/>
22
- </filter>
23
- <filter id="filter1_bd_1993_17320" x="9.20231" y="9.22331" width="17.5966" height="17.5531" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
24
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
25
- <feGaussianBlur in="BackgroundImageFix" stdDeviation="2.66667"/>
26
- <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17320"/>
27
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
28
- <feOffset dx="1.33333" dy="1.33333"/>
29
- <feGaussianBlur stdDeviation="1.33333"/>
30
- <feComposite in2="hardAlpha" operator="out"/>
31
- <feColorMatrix type="matrix" values="0 0 0 0 0.28 0 0 0 0 0.46 0 0 0 0 1 0 0 0 0.4 0"/>
32
- <feBlend mode="normal" in2="effect1_backgroundBlur_1993_17320" result="effect2_dropShadow_1993_17320"/>
33
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1993_17320" result="shape"/>
34
- </filter>
35
- <linearGradient id="paint0_linear_1993_17320" x1="3.33342" y1="3.58184" x2="6.20431" y2="27.1216" gradientUnits="userSpaceOnUse">
36
- <stop stop-color="#73BCFF"/>
37
- <stop offset="1" stop-color="#3366FF"/>
38
- </linearGradient>
39
- <linearGradient id="paint1_linear_1993_17320" x1="9.71347" y1="10.297" x2="27.2373" y2="27.8208" gradientUnits="userSpaceOnUse">
40
- <stop stop-color="white"/>
41
- <stop offset="1" stop-color="#2F63FF" stop-opacity="0.2"/>
42
- </linearGradient>
43
- <linearGradient id="paint2_linear_1993_17320" x1="14.9407" y1="15.9998" x2="19.6541" y2="21.3641" gradientUnits="userSpaceOnUse">
44
- <stop stop-color="white" stop-opacity="0.8"/>
45
- <stop offset="1" stop-color="white" stop-opacity="0.6"/>
46
- </linearGradient>
47
- </defs>
48
- </svg>
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="ic_gonggongmokuai_s">
3
+ <g id="Group 427318809">
4
+ <path id="Vector" d="M17.1417 22.6303C17.1417 20.7006 18.5882 19.9116 20.3624 20.8712C21.3908 21.4255 22.7017 21.095 23.2893 20.1249L24.4081 18.2804C24.9392 17.4382 24.6228 16.3507 23.73 15.8497L23.5153 15.7324C21.7411 14.7729 21.7411 13.195 23.5153 12.2248L23.73 12.1075C24.6228 11.6278 24.9392 10.5403 24.4081 9.69807L23.2893 7.85366C22.7017 6.88348 21.3795 6.55298 20.3511 7.10736C18.5882 8.07755 17.1417 7.28861 17.1417 5.35891C17.1417 4.25013 16.1811 3.33325 14.9945 3.33325L13.0056 3.33325C11.8303 3.33325 10.8585 4.23947 10.8585 5.35891C10.8585 7.28861 9.41198 8.07755 7.63776 7.10736C6.60939 6.55297 5.2985 6.88348 4.71086 7.85366L3.59209 9.69807C3.06095 10.5403 3.37737 11.6278 4.27013 12.1289L4.48485 12.2461C6.25907 13.2056 6.25907 14.7835 4.48485 15.7537L4.27013 15.871C3.37737 16.3721 3.06095 17.4595 3.59209 18.3018L4.71086 20.1462C5.2985 21.1164 6.62069 21.4469 7.63776 20.8925C9.41198 19.9223 10.8585 20.7112 10.8585 22.6409C10.8585 23.7497 11.819 24.6666 13.0056 24.6666L14.9945 24.6666C16.1698 24.6559 17.1417 23.7497 17.1417 22.6303Z" fill="url(#paint0_linear_1993_17320)"/>
5
+ <g id="Group 427318809_2">
6
+ <g id="Vector_2" filter="url(#filter0_b_1993_17320)">
7
+ <path d="M26.6305 14.8583C24.7008 14.8583 23.9119 13.4118 24.8714 11.6376C25.4258 10.6092 25.0953 9.29834 24.1251 8.7107L22.2807 7.59193C21.4384 7.06079 20.351 7.37721 19.8499 8.26997L19.7326 8.48469C18.7731 10.2589 17.1952 10.2589 16.2251 8.48469L16.1078 8.26997C15.628 7.37721 14.5406 7.06079 13.6983 7.59193L11.8539 8.7107C10.8837 9.29834 10.5532 10.6205 11.1076 11.6489C12.0778 13.4118 11.2889 14.8583 9.35915 14.8583C8.25037 14.8583 7.3335 15.8189 7.3335 17.0055V18.9944C7.3335 20.1697 8.23971 21.1415 9.35915 21.1415C11.2889 21.1415 12.0778 22.588 11.1076 24.3622C10.5532 25.3906 10.8837 26.7015 11.8539 27.2891L13.6983 28.4079C14.5406 28.939 15.628 28.6226 16.1291 27.7299L16.2464 27.5152C17.2059 25.7409 18.7838 25.7409 19.754 27.5152L19.8712 27.7299C20.3723 28.6226 21.4598 28.939 22.302 28.4079L24.1464 27.2891C25.1166 26.7015 25.4471 25.3793 24.8927 24.3622C23.9225 22.588 24.7115 21.1415 26.6412 21.1415C27.75 21.1415 28.6668 20.181 28.6668 18.9944V17.0055C28.6562 15.8302 27.75 14.8583 26.6305 14.8583Z" fill="#5B9BFF" fill-opacity="0.4"/>
8
+ <path d="M23.9524 8.99581L23.9522 8.9957L22.1078 7.87693L22.1029 7.87392L22.1029 7.87388C21.4371 7.45404 20.5583 7.69093 20.1415 8.43148L20.0258 8.64325C20.0257 8.64347 20.0256 8.64368 20.0255 8.64389C19.5148 9.58785 18.789 10.1487 17.9828 10.1487C17.177 10.1487 16.4486 9.58827 15.9326 8.64461L15.9325 8.64447L15.8152 8.42976L15.8141 8.42777L15.8142 8.42776C15.4198 7.69388 14.5443 7.45253 13.8761 7.87388L13.8712 7.87697L13.8712 7.87693L12.0268 8.9957L12.0266 8.99581C11.2182 9.48544 10.9258 10.6076 11.4003 11.4894C11.9181 12.431 12.0033 13.359 11.6135 14.0742C11.2202 14.796 10.4037 15.1916 9.35915 15.1916C8.45139 15.1916 7.66683 15.9856 7.66683 17.0055V18.9944C7.66683 20.0053 8.44293 20.8082 9.35915 20.8082C10.4038 20.8082 11.2204 21.2039 11.6137 21.9273C12.0033 22.6439 11.918 23.5744 11.4006 24.5211C10.9261 25.4024 11.2174 26.5139 12.0266 27.004L12.0268 27.0041L13.8712 28.1229L13.8761 28.1259L13.8761 28.126C14.5419 28.5458 15.4208 28.3089 15.8375 27.5683C15.8378 27.5678 15.8381 27.5673 15.8384 27.5667L15.9532 27.3566C15.9533 27.3564 15.9533 27.3563 15.9534 27.3561C16.4641 26.412 17.1899 25.8512 17.9962 25.8512C18.802 25.8512 19.5304 26.4116 20.0464 27.3552L20.0465 27.3554L20.1619 27.5667C20.1622 27.5673 20.1625 27.5678 20.1628 27.5683C20.5796 28.3089 21.4584 28.5458 22.1242 28.126L22.1291 28.1229L22.1291 28.1229L23.9735 27.0041L23.9737 27.004C24.7835 26.5136 25.0737 25.3907 24.6 24.5218L23.9524 8.99581ZM23.9524 8.99581C24.7618 9.48607 25.0531 10.5981 24.578 11.4794M23.9524 8.99581L24.578 11.4794M24.578 11.4794C24.0658 12.4266 23.984 13.357 24.3749 14.073M24.578 11.4794L24.3749 14.073M24.3749 14.073C24.7695 14.7958 25.5857 15.1916 26.6305 15.1916M24.3749 14.073L26.6305 15.1916M26.6305 15.1916C27.5459 15.1916 28.3235 15.9939 28.3335 17.0069L26.6305 15.1916Z" stroke="url(#paint1_linear_1993_17320)" stroke-width="0.666667"/>
9
+ </g>
10
+ <g id="Vector_3" filter="url(#filter1_bd_1993_17320)">
11
+ <path d="M14.5356 17.9998C14.5356 19.8962 16.0922 21.443 18.0006 21.443C19.909 21.443 21.4655 19.8962 21.4655 17.9998C21.4655 16.1034 19.909 14.5566 18.0006 14.5566C16.0922 14.5566 14.5356 16.1034 14.5356 17.9998Z" fill="url(#paint2_linear_1993_17320)" shape-rendering="crispEdges"/>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ <defs>
17
+ <filter id="filter0_b_1993_17320" x="2.00016" y="1.99992" width="31.9999" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="2.66667"/>
20
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17320"/>
21
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1993_17320" result="shape"/>
22
+ </filter>
23
+ <filter id="filter1_bd_1993_17320" x="9.20231" y="9.22331" width="17.5966" height="17.5531" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
24
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
25
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="2.66667"/>
26
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17320"/>
27
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
28
+ <feOffset dx="1.33333" dy="1.33333"/>
29
+ <feGaussianBlur stdDeviation="1.33333"/>
30
+ <feComposite in2="hardAlpha" operator="out"/>
31
+ <feColorMatrix type="matrix" values="0 0 0 0 0.28 0 0 0 0 0.46 0 0 0 0 1 0 0 0 0.4 0"/>
32
+ <feBlend mode="normal" in2="effect1_backgroundBlur_1993_17320" result="effect2_dropShadow_1993_17320"/>
33
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1993_17320" result="shape"/>
34
+ </filter>
35
+ <linearGradient id="paint0_linear_1993_17320" x1="3.33342" y1="3.58184" x2="6.20431" y2="27.1216" gradientUnits="userSpaceOnUse">
36
+ <stop stop-color="#73BCFF"/>
37
+ <stop offset="1" stop-color="#3366FF"/>
38
+ </linearGradient>
39
+ <linearGradient id="paint1_linear_1993_17320" x1="9.71347" y1="10.297" x2="27.2373" y2="27.8208" gradientUnits="userSpaceOnUse">
40
+ <stop stop-color="white"/>
41
+ <stop offset="1" stop-color="#2F63FF" stop-opacity="0.2"/>
42
+ </linearGradient>
43
+ <linearGradient id="paint2_linear_1993_17320" x1="14.9407" y1="15.9998" x2="19.6541" y2="21.3641" gradientUnits="userSpaceOnUse">
44
+ <stop stop-color="white" stop-opacity="0.8"/>
45
+ <stop offset="1" stop-color="white" stop-opacity="0.6"/>
46
+ </linearGradient>
47
+ </defs>
48
+ </svg>
@@ -1,48 +1,48 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g id="&#231;&#179;&#187;&#231;&#187;&#159;&#231;&#174;&#161;&#231;&#144;&#134;_s">
3
- <g id="Group 427318809">
4
- <path id="Vector" d="M8.57121 11.3153C8.57121 10.3504 9.29446 9.95594 10.1816 10.4357C10.6958 10.7129 11.3512 10.5476 11.645 10.0626L12.2044 9.14035C12.47 8.71922 12.3118 8.17549 11.8654 7.92495L11.758 7.86632C10.8709 7.38656 10.8709 6.59762 11.758 6.11253L11.8654 6.05389C12.3118 5.81401 12.47 5.27028 12.2044 4.84916L11.645 3.92695C11.3512 3.44186 10.6901 3.27661 10.1759 3.5538C9.29446 4.0389 8.57121 3.64443 8.57121 2.67958C8.57121 2.12519 8.09093 1.66675 7.49764 1.66675L6.50317 1.66675C5.91553 1.66675 5.4296 2.11985 5.4296 2.67957C5.4296 3.64443 4.70635 4.0389 3.81924 3.5538C3.30506 3.27661 2.64962 3.44186 2.3558 3.92695L1.79641 4.84916C1.53084 5.27028 1.68905 5.81401 2.13543 6.06455L2.24279 6.12319C3.1299 6.60295 3.1299 7.39189 2.24279 7.87698L2.13543 7.93561C1.68905 8.18616 1.53084 8.72988 1.79641 9.15101L2.3558 10.0732C2.64962 10.5583 3.31071 10.7236 3.81924 10.4464C4.70635 9.96127 5.4296 10.3557 5.4296 11.3206C5.4296 11.875 5.90988 12.3334 6.50317 12.3334L7.49764 12.3334C8.08528 12.3281 8.57121 11.875 8.57121 11.3153Z" fill="url(#paint0_linear_1993_17479)"/>
5
- <g id="Group 427318809_2">
6
- <g id="Vector_2" filter="url(#filter0_b_1993_17479)">
7
- <path d="M13.3153 7.42928C12.3504 7.42928 11.9559 6.70603 12.4357 5.81892C12.7129 5.30474 12.5476 4.64929 12.0626 4.35547L11.1403 3.79609C10.7192 3.53052 10.1755 3.68873 9.92495 4.13511L9.86631 4.24247C9.38655 5.12957 8.59762 5.12957 8.11253 4.24247L8.05389 4.13511C7.81401 3.68873 7.27028 3.53052 6.84916 3.79609L5.92695 4.35547C5.44186 4.64929 5.27661 5.31039 5.5538 5.82457C6.0389 6.70603 5.64443 7.42928 4.67957 7.42928C4.12519 7.42928 3.66675 7.90956 3.66675 8.50285V9.49731C3.66675 10.085 4.11985 10.5709 4.67957 10.5709C5.64443 10.5709 6.0389 11.2941 5.5538 12.1812C5.27661 12.6954 5.44186 13.3509 5.92695 13.6447L6.84916 14.2041C7.27028 14.4696 7.81401 14.3114 8.06455 13.8651L8.12319 13.7577C8.60295 12.8706 9.39189 12.8706 9.87698 13.7577L9.93561 13.8651C10.1862 14.3114 10.7299 14.4696 11.151 14.2041L12.0732 13.6447C12.5583 13.3509 12.7236 12.6898 12.4464 12.1812C11.9613 11.2941 12.3557 10.5709 13.3206 10.5709C13.875 10.5709 14.3334 10.0906 14.3334 9.49731V8.50285C14.3281 7.91521 13.875 7.42928 13.3153 7.42928Z" fill="#5B9BFF" fill-opacity="0.4"/>
8
- <path d="M11.9763 4.49791L11.9762 4.49786L11.054 3.93847L11.0515 3.93695C10.7186 3.72698 10.279 3.84546 10.0706 4.21581L10.0128 4.32168C10.0127 4.3218 10.0127 4.32192 10.0126 4.32205C9.75727 4.79397 9.39443 5.07433 8.99142 5.07433C8.58859 5.07433 8.22441 4.79417 7.96641 4.32236L7.96637 4.32229L7.90774 4.21494L7.90719 4.21394L7.9072 4.21394C7.70997 3.84693 7.27213 3.72623 6.93799 3.93695L6.93554 3.93849L6.93552 3.93847L6.01332 4.49786L6.01323 4.49791C5.60898 4.74277 5.46275 5.30394 5.70005 5.74491C5.95893 6.21567 6.00151 6.67959 5.80664 7.03716C5.61 7.39799 5.20183 7.59581 4.67957 7.59581C4.22561 7.59581 3.83328 7.99284 3.83328 8.50285V9.49731C3.83328 10.0028 4.22138 10.4044 4.67957 10.4044C5.20186 10.4044 5.61011 10.6022 5.80672 10.9639C6.00148 11.3221 5.95889 11.7873 5.70018 12.2607C5.46288 12.7013 5.60857 13.2572 6.01323 13.5023L6.01332 13.5023L6.93552 14.0617L6.93799 14.0632C7.27096 14.2732 7.71051 14.1547 7.91891 13.7843C7.91905 13.784 7.91919 13.7838 7.91933 13.7835L7.97671 13.6785C7.97677 13.6784 7.97683 13.6783 7.97689 13.6781C8.23222 13.2062 8.59506 12.9258 8.99808 12.9258C9.40091 12.9258 9.76509 13.206 10.0231 13.6778L10.0231 13.6779L10.0808 13.7835C10.081 13.7838 10.0811 13.7841 10.0813 13.7843C10.2897 14.1547 10.7292 14.2732 11.0622 14.0632L11.0646 14.0617L11.0646 14.0617L11.9868 13.5023L11.9869 13.5023C12.3919 13.257 12.537 12.6955 12.3001 12.2609L11.9763 4.49791ZM11.9763 4.49791C12.381 4.74305 12.5267 5.29901 12.2892 5.7397M11.9763 4.49791L12.2892 5.7397M12.2892 5.7397C12.0331 6.21335 11.9921 6.67857 12.1876 7.03656M12.2892 5.7397L12.1876 7.03656M12.1876 7.03656C12.3849 7.3979 12.7929 7.59581 13.3153 7.59581M12.1876 7.03656L13.3153 7.59581M13.3153 7.59581C13.773 7.59581 14.1619 7.99703 14.1669 8.50365L13.3153 7.59581Z" stroke="url(#paint1_linear_1993_17479)" stroke-width="0.33306"/>
9
- </g>
10
- <g id="Vector_3" filter="url(#filter1_bd_1993_17479)">
11
- <path d="M7.26807 9.00004C7.26807 9.94824 8.04634 10.7216 9.00053 10.7216C9.95472 10.7216 10.733 9.94824 10.733 9.00004C10.733 8.05184 9.95472 7.27844 9.00053 7.27844C8.04634 7.27844 7.26807 8.05184 7.26807 9.00004Z" fill="url(#paint2_linear_1993_17479)" shape-rendering="crispEdges"/>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
16
- <defs>
17
- <filter id="filter0_b_1993_17479" x="1.00227" y="1.00227" width="15.9957" height="15.9956" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19
- <feGaussianBlur in="BackgroundImageFix" stdDeviation="1.33224"/>
20
- <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17479"/>
21
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1993_17479" result="shape"/>
22
- </filter>
23
- <filter id="filter1_bd_1993_17479" x="4.60359" y="4.61396" width="8.7938" height="8.7722" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
24
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
25
- <feGaussianBlur in="BackgroundImageFix" stdDeviation="1.33224"/>
26
- <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17479"/>
27
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
28
- <feOffset dx="0.66612" dy="0.66612"/>
29
- <feGaussianBlur stdDeviation="0.66612"/>
30
- <feComposite in2="hardAlpha" operator="out"/>
31
- <feColorMatrix type="matrix" values="0 0 0 0 0.28 0 0 0 0 0.46 0 0 0 0 1 0 0 0 0.4 0"/>
32
- <feBlend mode="normal" in2="effect1_backgroundBlur_1993_17479" result="effect2_dropShadow_1993_17479"/>
33
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1993_17479" result="shape"/>
34
- </filter>
35
- <linearGradient id="paint0_linear_1993_17479" x1="1.66707" y1="1.79104" x2="3.10252" y2="13.5609" gradientUnits="userSpaceOnUse">
36
- <stop stop-color="#73BCFF"/>
37
- <stop offset="1" stop-color="#3366FF"/>
38
- </linearGradient>
39
- <linearGradient id="paint1_linear_1993_17479" x1="4.85673" y1="5.14862" x2="13.6186" y2="13.9105" gradientUnits="userSpaceOnUse">
40
- <stop stop-color="white"/>
41
- <stop offset="1" stop-color="#2F63FF" stop-opacity="0.2"/>
42
- </linearGradient>
43
- <linearGradient id="paint2_linear_1993_17479" x1="7.47059" y1="8.00004" x2="9.82731" y2="10.6822" gradientUnits="userSpaceOnUse">
44
- <stop stop-color="white" stop-opacity="0.8"/>
45
- <stop offset="1" stop-color="white" stop-opacity="0.6"/>
46
- </linearGradient>
47
- </defs>
48
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="&#231;&#179;&#187;&#231;&#187;&#159;&#231;&#174;&#161;&#231;&#144;&#134;_s">
3
+ <g id="Group 427318809">
4
+ <path id="Vector" d="M8.57121 11.3153C8.57121 10.3504 9.29446 9.95594 10.1816 10.4357C10.6958 10.7129 11.3512 10.5476 11.645 10.0626L12.2044 9.14035C12.47 8.71922 12.3118 8.17549 11.8654 7.92495L11.758 7.86632C10.8709 7.38656 10.8709 6.59762 11.758 6.11253L11.8654 6.05389C12.3118 5.81401 12.47 5.27028 12.2044 4.84916L11.645 3.92695C11.3512 3.44186 10.6901 3.27661 10.1759 3.5538C9.29446 4.0389 8.57121 3.64443 8.57121 2.67958C8.57121 2.12519 8.09093 1.66675 7.49764 1.66675L6.50317 1.66675C5.91553 1.66675 5.4296 2.11985 5.4296 2.67957C5.4296 3.64443 4.70635 4.0389 3.81924 3.5538C3.30506 3.27661 2.64962 3.44186 2.3558 3.92695L1.79641 4.84916C1.53084 5.27028 1.68905 5.81401 2.13543 6.06455L2.24279 6.12319C3.1299 6.60295 3.1299 7.39189 2.24279 7.87698L2.13543 7.93561C1.68905 8.18616 1.53084 8.72988 1.79641 9.15101L2.3558 10.0732C2.64962 10.5583 3.31071 10.7236 3.81924 10.4464C4.70635 9.96127 5.4296 10.3557 5.4296 11.3206C5.4296 11.875 5.90988 12.3334 6.50317 12.3334L7.49764 12.3334C8.08528 12.3281 8.57121 11.875 8.57121 11.3153Z" fill="url(#paint0_linear_1993_17479)"/>
5
+ <g id="Group 427318809_2">
6
+ <g id="Vector_2" filter="url(#filter0_b_1993_17479)">
7
+ <path d="M13.3153 7.42928C12.3504 7.42928 11.9559 6.70603 12.4357 5.81892C12.7129 5.30474 12.5476 4.64929 12.0626 4.35547L11.1403 3.79609C10.7192 3.53052 10.1755 3.68873 9.92495 4.13511L9.86631 4.24247C9.38655 5.12957 8.59762 5.12957 8.11253 4.24247L8.05389 4.13511C7.81401 3.68873 7.27028 3.53052 6.84916 3.79609L5.92695 4.35547C5.44186 4.64929 5.27661 5.31039 5.5538 5.82457C6.0389 6.70603 5.64443 7.42928 4.67957 7.42928C4.12519 7.42928 3.66675 7.90956 3.66675 8.50285V9.49731C3.66675 10.085 4.11985 10.5709 4.67957 10.5709C5.64443 10.5709 6.0389 11.2941 5.5538 12.1812C5.27661 12.6954 5.44186 13.3509 5.92695 13.6447L6.84916 14.2041C7.27028 14.4696 7.81401 14.3114 8.06455 13.8651L8.12319 13.7577C8.60295 12.8706 9.39189 12.8706 9.87698 13.7577L9.93561 13.8651C10.1862 14.3114 10.7299 14.4696 11.151 14.2041L12.0732 13.6447C12.5583 13.3509 12.7236 12.6898 12.4464 12.1812C11.9613 11.2941 12.3557 10.5709 13.3206 10.5709C13.875 10.5709 14.3334 10.0906 14.3334 9.49731V8.50285C14.3281 7.91521 13.875 7.42928 13.3153 7.42928Z" fill="#5B9BFF" fill-opacity="0.4"/>
8
+ <path d="M11.9763 4.49791L11.9762 4.49786L11.054 3.93847L11.0515 3.93695C10.7186 3.72698 10.279 3.84546 10.0706 4.21581L10.0128 4.32168C10.0127 4.3218 10.0127 4.32192 10.0126 4.32205C9.75727 4.79397 9.39443 5.07433 8.99142 5.07433C8.58859 5.07433 8.22441 4.79417 7.96641 4.32236L7.96637 4.32229L7.90774 4.21494L7.90719 4.21394L7.9072 4.21394C7.70997 3.84693 7.27213 3.72623 6.93799 3.93695L6.93554 3.93849L6.93552 3.93847L6.01332 4.49786L6.01323 4.49791C5.60898 4.74277 5.46275 5.30394 5.70005 5.74491C5.95893 6.21567 6.00151 6.67959 5.80664 7.03716C5.61 7.39799 5.20183 7.59581 4.67957 7.59581C4.22561 7.59581 3.83328 7.99284 3.83328 8.50285V9.49731C3.83328 10.0028 4.22138 10.4044 4.67957 10.4044C5.20186 10.4044 5.61011 10.6022 5.80672 10.9639C6.00148 11.3221 5.95889 11.7873 5.70018 12.2607C5.46288 12.7013 5.60857 13.2572 6.01323 13.5023L6.01332 13.5023L6.93552 14.0617L6.93799 14.0632C7.27096 14.2732 7.71051 14.1547 7.91891 13.7843C7.91905 13.784 7.91919 13.7838 7.91933 13.7835L7.97671 13.6785C7.97677 13.6784 7.97683 13.6783 7.97689 13.6781C8.23222 13.2062 8.59506 12.9258 8.99808 12.9258C9.40091 12.9258 9.76509 13.206 10.0231 13.6778L10.0231 13.6779L10.0808 13.7835C10.081 13.7838 10.0811 13.7841 10.0813 13.7843C10.2897 14.1547 10.7292 14.2732 11.0622 14.0632L11.0646 14.0617L11.0646 14.0617L11.9868 13.5023L11.9869 13.5023C12.3919 13.257 12.537 12.6955 12.3001 12.2609L11.9763 4.49791ZM11.9763 4.49791C12.381 4.74305 12.5267 5.29901 12.2892 5.7397M11.9763 4.49791L12.2892 5.7397M12.2892 5.7397C12.0331 6.21335 11.9921 6.67857 12.1876 7.03656M12.2892 5.7397L12.1876 7.03656M12.1876 7.03656C12.3849 7.3979 12.7929 7.59581 13.3153 7.59581M12.1876 7.03656L13.3153 7.59581M13.3153 7.59581C13.773 7.59581 14.1619 7.99703 14.1669 8.50365L13.3153 7.59581Z" stroke="url(#paint1_linear_1993_17479)" stroke-width="0.33306"/>
9
+ </g>
10
+ <g id="Vector_3" filter="url(#filter1_bd_1993_17479)">
11
+ <path d="M7.26807 9.00004C7.26807 9.94824 8.04634 10.7216 9.00053 10.7216C9.95472 10.7216 10.733 9.94824 10.733 9.00004C10.733 8.05184 9.95472 7.27844 9.00053 7.27844C8.04634 7.27844 7.26807 8.05184 7.26807 9.00004Z" fill="url(#paint2_linear_1993_17479)" shape-rendering="crispEdges"/>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ <defs>
17
+ <filter id="filter0_b_1993_17479" x="1.00227" y="1.00227" width="15.9957" height="15.9956" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="1.33224"/>
20
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17479"/>
21
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1993_17479" result="shape"/>
22
+ </filter>
23
+ <filter id="filter1_bd_1993_17479" x="4.60359" y="4.61396" width="8.7938" height="8.7722" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
24
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
25
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="1.33224"/>
26
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17479"/>
27
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
28
+ <feOffset dx="0.66612" dy="0.66612"/>
29
+ <feGaussianBlur stdDeviation="0.66612"/>
30
+ <feComposite in2="hardAlpha" operator="out"/>
31
+ <feColorMatrix type="matrix" values="0 0 0 0 0.28 0 0 0 0 0.46 0 0 0 0 1 0 0 0 0.4 0"/>
32
+ <feBlend mode="normal" in2="effect1_backgroundBlur_1993_17479" result="effect2_dropShadow_1993_17479"/>
33
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1993_17479" result="shape"/>
34
+ </filter>
35
+ <linearGradient id="paint0_linear_1993_17479" x1="1.66707" y1="1.79104" x2="3.10252" y2="13.5609" gradientUnits="userSpaceOnUse">
36
+ <stop stop-color="#73BCFF"/>
37
+ <stop offset="1" stop-color="#3366FF"/>
38
+ </linearGradient>
39
+ <linearGradient id="paint1_linear_1993_17479" x1="4.85673" y1="5.14862" x2="13.6186" y2="13.9105" gradientUnits="userSpaceOnUse">
40
+ <stop stop-color="white"/>
41
+ <stop offset="1" stop-color="#2F63FF" stop-opacity="0.2"/>
42
+ </linearGradient>
43
+ <linearGradient id="paint2_linear_1993_17479" x1="7.47059" y1="8.00004" x2="9.82731" y2="10.6822" gradientUnits="userSpaceOnUse">
44
+ <stop stop-color="white" stop-opacity="0.8"/>
45
+ <stop offset="1" stop-color="white" stop-opacity="0.6"/>
46
+ </linearGradient>
47
+ </defs>
48
+ </svg>
@@ -1,26 +1,26 @@
1
- <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g id="ic_gonggongmokuai_s">
3
- <path id="Vector" d="M8.25709 18.4243L2.6665 22.6667V3.87881C2.6665 3.55733 2.79872 3.24903 3.03406 3.02171C3.2694 2.79439 3.58859 2.66669 3.92141 2.66669H22.7449C23.0778 2.66669 23.3969 2.79439 23.6323 3.02171C23.8676 3.24903 23.9998 3.55733 23.9998 3.87881V18.4243H8.25709Z" fill="url(#paint0_linear_1993_17342)"/>
4
- <g id="Vector_2" filter="url(#filter0_b_1993_17342)">
5
- <path d="M25.0759 25.0909L30.6665 29.3333V10.5454C30.6665 10.224 30.5343 9.91565 30.299 9.68834C30.0636 9.46102 29.7444 9.33331 29.4116 9.33331H10.5881C10.2553 9.33331 9.93606 9.46102 9.70072 9.68834C9.46538 9.91565 9.33317 10.224 9.33317 10.5454V25.0909H25.0759Z" fill="#5B9BFF" fill-opacity="0.4"/>
6
- <path d="M25.0759 24.7576H25.1881L25.2774 24.8254L30.3332 28.6619V10.5454C30.3332 10.3162 30.239 10.0939 30.0674 9.92809C29.8954 9.76194 29.6597 9.66665 29.4116 9.66665H10.5881C10.34 9.66665 10.1043 9.76194 9.9323 9.92809C9.76068 10.0939 9.6665 10.3162 9.6665 10.5454V24.7576H25.0759Z" stroke="url(#paint1_linear_1993_17342)" stroke-width="0.666667"/>
7
- </g>
8
- <path id="Vector_3" d="M15.9998 16C15.9998 17.0609 16.4212 18.0783 17.1713 18.8284C17.9215 19.5786 18.9389 20 19.9998 20C21.0606 20 22.078 19.5786 22.8282 18.8284C23.5783 18.0783 23.9998 17.0609 23.9998 16H22.3998C22.3998 16.6365 22.1469 17.247 21.6968 17.6971C21.2467 18.1471 20.6363 18.4 19.9998 18.4C19.3632 18.4 18.7528 18.1471 18.3027 17.6971C17.8526 17.247 17.5998 16.6365 17.5998 16H15.9998Z" fill="white"/>
9
- </g>
10
- <defs>
11
- <filter id="filter0_b_1993_17342" x="3.99992" y="3.99998" width="31.9999" height="30.6667" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
- <feGaussianBlur in="BackgroundImageFix" stdDeviation="2.66667"/>
14
- <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17342"/>
15
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1993_17342" result="shape"/>
16
- </filter>
17
- <linearGradient id="paint0_linear_1993_17342" x1="5.5383" y1="2.66669" x2="22.7664" y2="18.6253" gradientUnits="userSpaceOnUse">
18
- <stop stop-color="#4291FF"/>
19
- <stop offset="0.928294" stop-color="#0B68EB"/>
20
- </linearGradient>
21
- <linearGradient id="paint1_linear_1993_17342" x1="28.2865" y1="12.1118" x2="11.8921" y2="29.5992" gradientUnits="userSpaceOnUse">
22
- <stop stop-color="white"/>
23
- <stop offset="1" stop-color="#2F63FF" stop-opacity="0.2"/>
24
- </linearGradient>
25
- </defs>
26
- </svg>
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="ic_gonggongmokuai_s">
3
+ <path id="Vector" d="M8.25709 18.4243L2.6665 22.6667V3.87881C2.6665 3.55733 2.79872 3.24903 3.03406 3.02171C3.2694 2.79439 3.58859 2.66669 3.92141 2.66669H22.7449C23.0778 2.66669 23.3969 2.79439 23.6323 3.02171C23.8676 3.24903 23.9998 3.55733 23.9998 3.87881V18.4243H8.25709Z" fill="url(#paint0_linear_1993_17342)"/>
4
+ <g id="Vector_2" filter="url(#filter0_b_1993_17342)">
5
+ <path d="M25.0759 25.0909L30.6665 29.3333V10.5454C30.6665 10.224 30.5343 9.91565 30.299 9.68834C30.0636 9.46102 29.7444 9.33331 29.4116 9.33331H10.5881C10.2553 9.33331 9.93606 9.46102 9.70072 9.68834C9.46538 9.91565 9.33317 10.224 9.33317 10.5454V25.0909H25.0759Z" fill="#5B9BFF" fill-opacity="0.4"/>
6
+ <path d="M25.0759 24.7576H25.1881L25.2774 24.8254L30.3332 28.6619V10.5454C30.3332 10.3162 30.239 10.0939 30.0674 9.92809C29.8954 9.76194 29.6597 9.66665 29.4116 9.66665H10.5881C10.34 9.66665 10.1043 9.76194 9.9323 9.92809C9.76068 10.0939 9.6665 10.3162 9.6665 10.5454V24.7576H25.0759Z" stroke="url(#paint1_linear_1993_17342)" stroke-width="0.666667"/>
7
+ </g>
8
+ <path id="Vector_3" d="M15.9998 16C15.9998 17.0609 16.4212 18.0783 17.1713 18.8284C17.9215 19.5786 18.9389 20 19.9998 20C21.0606 20 22.078 19.5786 22.8282 18.8284C23.5783 18.0783 23.9998 17.0609 23.9998 16H22.3998C22.3998 16.6365 22.1469 17.247 21.6968 17.6971C21.2467 18.1471 20.6363 18.4 19.9998 18.4C19.3632 18.4 18.7528 18.1471 18.3027 17.6971C17.8526 17.247 17.5998 16.6365 17.5998 16H15.9998Z" fill="white"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_b_1993_17342" x="3.99992" y="3.99998" width="31.9999" height="30.6667" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="2.66667"/>
14
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_1993_17342"/>
15
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_1993_17342" result="shape"/>
16
+ </filter>
17
+ <linearGradient id="paint0_linear_1993_17342" x1="5.5383" y1="2.66669" x2="22.7664" y2="18.6253" gradientUnits="userSpaceOnUse">
18
+ <stop stop-color="#4291FF"/>
19
+ <stop offset="0.928294" stop-color="#0B68EB"/>
20
+ </linearGradient>
21
+ <linearGradient id="paint1_linear_1993_17342" x1="28.2865" y1="12.1118" x2="11.8921" y2="29.5992" gradientUnits="userSpaceOnUse">
22
+ <stop stop-color="white"/>
23
+ <stop offset="1" stop-color="#2F63FF" stop-opacity="0.2"/>
24
+ </linearGradient>
25
+ </defs>
26
+ </svg>