@atlaskit/link-datasource 1.22.7 → 1.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cjs/hooks/useDatasourceTableState.js +19 -11
  3. package/dist/cjs/ui/common/error-state/messages.js +2 -2
  4. package/dist/cjs/ui/common/error-state/provider-auth-required-svg.js +148 -430
  5. package/dist/cjs/ui/common/error-state/provider-auth-required.js +20 -15
  6. package/dist/cjs/ui/datasource-table-view/datasourceTableView.js +7 -1
  7. package/dist/cjs/ui/issue-like-table/custom-icons.js +55 -0
  8. package/dist/cjs/ui/issue-like-table/drag-column-preview.js +20 -5
  9. package/dist/cjs/ui/issue-like-table/draggable-table-heading.js +72 -13
  10. package/dist/cjs/ui/issue-like-table/index.js +70 -15
  11. package/dist/cjs/ui/issue-like-table/messages.js +19 -0
  12. package/dist/cjs/ui/issue-like-table/render-type/date-time/index.js +3 -3
  13. package/dist/cjs/ui/issue-like-table/render-type/link/index.js +1 -1
  14. package/dist/cjs/ui/issue-like-table/render-type/richtext/index.js +0 -3
  15. package/dist/cjs/ui/issue-like-table/render-type/text/index.js +3 -3
  16. package/dist/cjs/ui/issue-like-table/render-type/user/index.js +8 -5
  17. package/dist/cjs/ui/issue-like-table/styled.js +34 -6
  18. package/dist/es2019/hooks/useDatasourceTableState.js +5 -1
  19. package/dist/es2019/ui/common/error-state/messages.js +2 -2
  20. package/dist/es2019/ui/common/error-state/provider-auth-required-svg.js +148 -430
  21. package/dist/es2019/ui/common/error-state/provider-auth-required.js +9 -4
  22. package/dist/es2019/ui/datasource-table-view/datasourceTableView.js +7 -1
  23. package/dist/es2019/ui/issue-like-table/custom-icons.js +42 -0
  24. package/dist/es2019/ui/issue-like-table/drag-column-preview.js +19 -18
  25. package/dist/es2019/ui/issue-like-table/draggable-table-heading.js +58 -11
  26. package/dist/es2019/ui/issue-like-table/index.js +75 -62
  27. package/dist/es2019/ui/issue-like-table/messages.js +13 -0
  28. package/dist/es2019/ui/issue-like-table/render-type/date-time/index.js +4 -4
  29. package/dist/es2019/ui/issue-like-table/render-type/link/index.js +2 -2
  30. package/dist/es2019/ui/issue-like-table/render-type/richtext/index.js +0 -3
  31. package/dist/es2019/ui/issue-like-table/render-type/text/index.js +4 -4
  32. package/dist/es2019/ui/issue-like-table/render-type/user/index.js +6 -6
  33. package/dist/es2019/ui/issue-like-table/styled.js +36 -56
  34. package/dist/esm/hooks/useDatasourceTableState.js +19 -11
  35. package/dist/esm/ui/common/error-state/messages.js +2 -2
  36. package/dist/esm/ui/common/error-state/provider-auth-required-svg.js +148 -430
  37. package/dist/esm/ui/common/error-state/provider-auth-required.js +20 -15
  38. package/dist/esm/ui/datasource-table-view/datasourceTableView.js +7 -1
  39. package/dist/esm/ui/issue-like-table/custom-icons.js +48 -0
  40. package/dist/esm/ui/issue-like-table/drag-column-preview.js +19 -5
  41. package/dist/esm/ui/issue-like-table/draggable-table-heading.js +66 -11
  42. package/dist/esm/ui/issue-like-table/index.js +71 -16
  43. package/dist/esm/ui/issue-like-table/messages.js +13 -0
  44. package/dist/esm/ui/issue-like-table/render-type/date-time/index.js +4 -4
  45. package/dist/esm/ui/issue-like-table/render-type/link/index.js +2 -2
  46. package/dist/esm/ui/issue-like-table/render-type/richtext/index.js +0 -3
  47. package/dist/esm/ui/issue-like-table/render-type/text/index.js +4 -4
  48. package/dist/esm/ui/issue-like-table/render-type/user/index.js +7 -5
  49. package/dist/esm/ui/issue-like-table/styled.js +33 -5
  50. package/dist/types/hooks/useDatasourceTableState.d.ts +2 -0
  51. package/dist/types/ui/common/error-state/provider-auth-required.d.ts +2 -1
  52. package/dist/types/ui/datasource-table-view/datasourceTableView.d.ts +6 -2
  53. package/dist/types/ui/datasource-table-view/types.d.ts +3 -14
  54. package/dist/types/ui/issue-like-table/custom-icons.d.ts +5 -0
  55. package/dist/types/ui/issue-like-table/draggable-table-heading.d.ts +7 -3
  56. package/dist/types/ui/issue-like-table/index.d.ts +1 -1
  57. package/dist/types/ui/issue-like-table/messages.d.ts +12 -0
  58. package/dist/types/ui/issue-like-table/styled.d.ts +1 -1
  59. package/dist/types/ui/issue-like-table/types.d.ts +18 -2
  60. package/dist/types-ts4.5/hooks/useDatasourceTableState.d.ts +2 -0
  61. package/dist/types-ts4.5/ui/common/error-state/provider-auth-required.d.ts +2 -1
  62. package/dist/types-ts4.5/ui/datasource-table-view/datasourceTableView.d.ts +6 -2
  63. package/dist/types-ts4.5/ui/datasource-table-view/types.d.ts +3 -14
  64. package/dist/types-ts4.5/ui/issue-like-table/custom-icons.d.ts +5 -0
  65. package/dist/types-ts4.5/ui/issue-like-table/draggable-table-heading.d.ts +7 -3
  66. package/dist/types-ts4.5/ui/issue-like-table/index.d.ts +1 -1
  67. package/dist/types-ts4.5/ui/issue-like-table/messages.d.ts +12 -0
  68. package/dist/types-ts4.5/ui/issue-like-table/styled.d.ts +1 -1
  69. package/dist/types-ts4.5/ui/issue-like-table/types.d.ts +18 -2
  70. package/examples-helpers/buildIssueLikeTable.tsx +26 -24
  71. package/examples-helpers/buildJiraIssuesTable.tsx +17 -22
  72. package/examples-helpers/useCommonTableProps.tsx +57 -0
  73. package/package.json +2 -2
@@ -9,441 +9,159 @@ var _react = require("@emotion/react");
9
9
 
10
10
  var imageStyles = (0, _react.css)({
11
11
  width: 200,
12
- height: 140
12
+ height: 140,
13
+ marginBottom: "var(--ds-space-200, 16px)"
13
14
  });
14
15
  var ProviderAuthRequiredSVG = exports.ProviderAuthRequiredSVG = function ProviderAuthRequiredSVG() {
15
16
  return (0, _react.jsx)("svg", {
16
- width: "565",
17
- height: "267",
18
- viewBox: "0 0 565 267",
17
+ width: "170",
18
+ height: "130",
19
+ viewBox: "0 0 170 130",
19
20
  fill: "none",
20
21
  xmlns: "http://www.w3.org/2000/svg",
21
22
  css: imageStyles
22
- }, (0, _react.jsx)("g", {
23
- clipPath: "url(#datasource_clip0_1375_267)"
24
23
  }, (0, _react.jsx)("rect", {
25
- width: "563.88",
26
- height: "265.81",
27
- transform: "translate(0.870117 0.509766)",
28
- fill: "white",
29
- fillOpacity: "0.01"
30
- }), (0, _react.jsx)("path", {
31
- d: "M150.05 257.529H143.87L144.52 254.379H150.7L150.05 257.529Z",
32
- fill: "#DFE1E5"
33
- }), (0, _react.jsx)("path", {
34
- d: "M181.06 257.531C183.03 257.531 185 257.531 186.97 257.531C186.92 256.481 186.88 255.431 186.83 254.381C185.02 253.691 182.85 253.301 181.08 254.271C181.02 254.301 180.96 254.341 180.9 254.381C180.95 255.431 181.01 256.481 181.06 257.531Z",
35
- fill: "#DFE1E5"
36
- }), (0, _react.jsx)("path", {
37
- d: "M141.99 98.8398C110.62 98.8398 85.1801 124.27 85.1801 155.65V206.74C85.1801 238.11 59.7501 263.55 28.3701 263.55H0.870117",
38
- stroke: "url(#datasource_paint0_linear_1375_267)",
39
- strokeWidth: "4.4681",
40
- strokeMiterlimit: "10"
41
- }), (0, _react.jsx)("path", {
42
- d: "M420.16 124.399L418.27 121.929L417.53 116.109L417.4 112.789H419.42L421.66 115.439C422.18 116.059 422.62 116.749 422.94 117.499C423.39 118.539 423.63 119.669 423.63 120.809V123.189L420.16 124.399Z",
43
- fill: "#D4B696"
44
- }), (0, _react.jsx)("path", {
45
- d: "M160.63 111.87L159.06 105.6C159.06 105.21 159.37 104.88 159.76 104.86C160.06 105.13 160.4 105.37 160.63 105.26C160.82 105.17 160.76 104.91 160.97 104.78C161.34 104.55 162.03 105.03 162.24 105.18C162.54 105.39 162.74 105.61 162.86 105.76L163.81 106.1C164.14 106.22 164.39 106.5 164.48 106.85L165.67 107.74C166.21 107.82 166.43 110 166.45 110.07L166.04 112.86C166.07 112.97 166.07 113.09 166.05 113.21C165.96 113.65 165.5 113.91 165.07 113.75L161.09 112.32C160.87 112.25 160.7 112.08 160.63 111.87Z",
46
- fill: "#A27F68"
47
- }), (0, _react.jsx)("path", {
48
- d: "M165.73 116.919C166.92 116.499 169.78 120.329 166.77 112.969C166.59 112.519 166.22 110.519 164.39 109.389C162.47 108.209 160.92 109.649 159.28 108.319C158.39 107.599 158.37 106.789 157.23 106.319C156.44 105.989 155.38 105.939 155.19 106.319C154.97 106.749 156.03 107.399 157.51 109.269C158.97 111.119 158.65 111.409 159.96 112.799C160.5 113.369 160.89 113.669 162.06 114.909C162.67 115.559 162.72 115.629 162.97 115.829C163.52 116.269 164.77 117.259 165.73 116.919Z",
49
- fill: "#A27F68"
50
- }), (0, _react.jsx)("path", {
51
- d: "M164.84 175.06C162.1 173.45 162.32 169.37 162.74 163.63C163.81 148.91 166.33 143.51 166.66 135.95C166.88 130.9 166.17 123.59 161.64 114.5C163.73 114.28 165.81 114.06 167.9 113.83C171.82 123.37 173.58 131.57 174.46 137.43C175.59 144.99 175.69 151.82 175.7 154.41C175.73 165.07 174.28 169.57 175.37 173.41C175.42 173.6 175.65 174.22 175.34 174.79C174.3 176.7 167.91 176.86 164.84 175.06Z",
52
- fill: "#403294"
53
- }), (0, _react.jsx)("path", {
54
- opacity: "0.25",
55
- d: "M2.76012 266.319H206.4C207.44 266.319 208.29 265.469 208.29 264.429C208.29 263.389 207.44 262.539 206.4 262.539H2.76012C1.72012 262.539 0.870117 263.389 0.870117 264.429C0.870117 265.469 1.72012 266.319 2.76012 266.319Z",
56
- fill: "url(#datasource_paint1_linear_1375_267)"
57
- }), (0, _react.jsx)("path", {
58
- opacity: "0.25",
59
- d: "M562.86 266.319H359.22C358.18 266.319 357.33 265.469 357.33 264.429C357.33 263.389 358.18 262.539 359.22 262.539H562.86C563.9 262.539 564.75 263.389 564.75 264.429C564.75 265.469 563.9 266.319 562.86 266.319Z",
60
- fill: "url(#datasource_paint2_linear_1375_267)"
61
- }), (0, _react.jsx)("path", {
62
- d: "M423.62 98.8398C454.99 98.8398 480.43 124.27 480.43 155.65V206.74C480.43 238.11 505.86 263.55 537.24 263.55H564.75",
63
- stroke: "url(#datasource_paint3_linear_1375_267)",
64
- strokeWidth: "4.4681",
65
- strokeMiterlimit: "10"
66
- }), (0, _react.jsx)("path", {
67
- d: "M133.69 107.8C131.9 107.8 130.45 106.35 130.45 104.56V93.1502C130.45 91.3602 131.9 89.9102 133.69 89.9102C135.48 89.9102 136.93 91.3602 136.93 93.1502V104.57C136.92 106.35 135.48 107.8 133.69 107.8Z",
68
- fill: "#B3BAC5"
69
- }), (0, _react.jsx)("path", {
70
- d: "M140.16 107.8C138.37 107.8 136.92 106.35 136.92 104.56V93.1502C136.92 91.3602 138.37 89.9102 140.16 89.9102C141.95 89.9102 143.4 91.3602 143.4 93.1502V104.57C143.4 106.35 141.95 107.8 140.16 107.8Z",
71
- fill: "#B3BAC5"
72
- }), (0, _react.jsx)("path", {
73
- d: "M425.01 107.8C423.22 107.8 421.77 106.35 421.77 104.56V93.1502C421.77 91.3602 423.22 89.9102 425.01 89.9102C426.8 89.9102 428.25 91.3602 428.25 93.1502V104.57C428.25 106.35 426.8 107.8 425.01 107.8Z",
74
- fill: "#0052CC"
75
- }), (0, _react.jsx)("path", {
76
- d: "M431.48 107.8C429.69 107.8 428.24 106.35 428.24 104.56V93.1502C428.24 91.3602 429.69 89.9102 431.48 89.9102C433.27 89.9102 434.72 91.3602 434.72 93.1502V104.57C434.72 106.35 433.27 107.8 431.48 107.8Z",
77
- fill: "#0052CC"
78
- }), (0, _react.jsx)("path", {
79
- opacity: "0.38",
80
- d: "M285 195.54C338.307 195.54 381.52 152.327 381.52 99.02C381.52 45.7135 338.307 2.5 285 2.5C231.694 2.5 188.48 45.7135 188.48 99.02C188.48 152.327 231.694 195.54 285 195.54Z",
81
- fill: "url(#datasource_paint4_radial_1375_267)"
82
- }), (0, _react.jsx)("path", {
83
- d: "M346.07 140.879H381.57C404.79 140.879 423.62 122.059 423.62 98.8293C423.62 75.6093 404.8 56.7793 381.57 56.7793H346.07V140.879Z",
84
- fill: "url(#datasource_paint5_linear_1375_267)"
85
- }), (0, _react.jsx)("path", {
86
- d: "M237.09 123.26H276.41V116.82H237.09V123.26Z",
87
- fill: "url(#datasource_paint6_linear_1375_267)"
88
- }), (0, _react.jsx)("path", {
89
- d: "M237.09 78.2291H276.41V71.7891H237.09V78.2291Z",
90
- fill: "url(#datasource_paint7_linear_1375_267)"
91
- }), (0, _react.jsx)("path", {
92
- d: "M325.86 146.589H340.11C343.4 146.589 346.07 143.919 346.07 140.629V57.4092C346.07 54.1192 343.4 51.4492 340.11 51.4492H325.86V146.589Z",
93
- fill: "url(#datasource_paint8_linear_1375_267)"
94
- }), (0, _react.jsx)("path", {
95
- d: "M219.54 140.879H184.04C160.82 140.879 141.99 122.059 141.99 98.8293C141.99 75.6093 160.81 56.7793 184.04 56.7793H219.54V140.879Z",
96
- fill: "url(#datasource_paint9_linear_1375_267)"
97
- }), (0, _react.jsx)("path", {
98
- d: "M239.76 146.589H225.51C222.22 146.589 219.55 143.919 219.55 140.629V57.4092C219.55 54.1192 222.22 51.4492 225.51 51.4492H239.76V146.589Z",
99
- fill: "url(#datasource_paint10_linear_1375_267)"
100
- }), (0, _react.jsx)("path", {
101
- d: "M379.21 146.581C378.91 146.001 378.4 145.181 377.56 144.401C376.28 143.221 374.91 142.761 374.18 142.581C374 142.441 373.77 142.281 373.48 142.131C373.23 142.001 372.97 141.901 372.7 141.831L370.63 141.251C370.29 141.161 370.07 140.831 370.11 140.481C370.15 140.091 370.51 139.801 370.9 139.851L379.42 140.801C380.47 140.921 381.46 140.291 381.79 139.291L382.01 138.651C382.14 138.281 382.5 138.041 382.9 138.091C383.31 138.141 383.62 138.471 383.64 138.871L383.72 140.251C383.86 142.671 383.35 145.091 382.26 147.251L379.21 146.581Z",
102
- fill: "#D4B696"
103
- }), (0, _react.jsx)("path", {
104
- d: "M428.29 185.99C429.39 188.07 430.46 190.28 431.47 192.61C435.75 202.44 437.91 211.78 438.95 219.77C440.03 222.59 441.07 225.54 442.05 228.64C444.86 237.5 446.64 245.84 447.75 253.4C446.13 253.87 444.51 254.34 442.88 254.81C441.2 250.25 438.53 243.08 435.09 234.23C430.76 223.08 428.59 217.5 428.5 217.3C422.43 203.22 419.13 199.32 420.72 193.98C421.29 192.14 422.84 188.93 428.29 185.99Z",
105
- fill: "#0065FF"
106
- }), (0, _react.jsx)("path", {
107
- d: "M412.72 189.539C409.67 199.159 406.62 208.789 403.57 218.409C400.84 230.159 398.1 241.909 395.37 253.659C398.3 254.449 397.22 254.159 400.15 254.939C403.08 247.829 405.94 240.299 408.66 232.359C410.04 228.319 411.33 224.339 412.52 220.439C414.74 216.039 417.2 213.029 419.05 211.089C423.68 206.239 427.59 204.829 430.28 199.479C432.31 195.449 431.64 193.159 431.46 192.609C431.32 192.189 430.95 191.419 430.21 189.889C429.46 188.319 428.81 187.039 428.38 186.189C426.55 186.889 424.48 187.559 422.18 188.119C418.67 188.989 415.46 189.379 412.72 189.539Z",
108
- fill: "url(#datasource_paint11_linear_1375_267)"
109
- }), (0, _react.jsx)("path", {
110
- d: "M396.28 246.85C396.21 248.32 395.94 250.38 395.01 252.65C394.37 254.22 392.97 257.51 389.49 259.78C387.45 261.11 385.46 261.59 384.18 261.79C384.26 262.22 384.24 262.13 384.32 262.57C386.73 262.62 391.82 262.66 394.24 262.71C394.59 261.89 395.4 261.57 395.92 261.8C396.41 262.03 396.5 262.7 396.5 262.75C397.32 262.68 398.14 262.61 398.96 262.54C399.23 261.52 399.51 260.49 399.8 259.45C401 255.15 402.31 251.02 403.69 247.08C401.21 247.01 398.74 246.93 396.28 246.85Z",
111
- fill: "#344563"
112
- }), (0, _react.jsx)("path", {
113
- d: "M440.03 247.221C440.92 249.251 441.84 252.641 441.92 253.771C442.06 255.691 442.18 257.271 441.21 258.681C440.55 259.641 439.65 260.141 438.15 260.971C436.98 261.621 435.94 262.021 435.21 262.261C435.3 262.651 435.28 262.571 435.37 262.961C437.57 262.901 439.76 262.831 441.96 262.771C442.52 262.751 443.09 262.731 443.65 262.711C443.66 262.661 443.77 262.191 444.22 261.991C444.67 261.791 445.08 262.031 445.17 262.081C445.49 262.261 445.62 262.541 445.67 262.651C446.19 262.691 446.78 262.721 447.42 262.691C448.09 262.671 448.7 262.601 449.24 262.521C449.09 261.461 448.94 260.401 448.78 259.341C448.69 258.741 448.53 257.681 448.29 256.131C447.73 252.481 447 247.951 446.83 246.881C444.56 247.001 442.29 247.111 440.03 247.221Z",
114
- fill: "#344563"
115
- }), (0, _react.jsx)("path", {
116
- d: "M404.04 166.88C412.13 163.96 417.86 161.43 418.22 161.14C418.55 160.87 418.88 160.59 418.88 160.59C418.98 160.51 419.08 160.42 419.19 160.32C421.82 157.99 427.78 151.82 427.76 142.35C427.73 131.65 420.19 125.19 419.11 124.29C420.82 123.5 422.52 122.71 424.23 121.92C426.36 123.97 432.76 130.64 433.79 141.01C434.72 150.27 430.85 157.43 429.11 160.66C427.36 163.91 425.44 166.35 424.02 167.97C423.92 170.1 424 172.75 424.56 175.73C425.49 180.68 427.37 184.49 428.86 186.96C423.1 188.75 417.33 190.54 411.57 192.33C413.04 189.13 412.78 187.11 412.25 185.86C411.07 183.05 407.94 182.53 406.78 179.13C406.31 177.76 406.36 176.51 406.46 175.69C404.27 175.89 395.01 176.46 386.94 170C375.33 160.7 377 145.5 377.12 144.57C379.19 145.06 381.27 145.55 383.34 146.04C383.04 147.74 383.3 152.66 384.35 155.65C387.27 163.99 396.59 169.11 404.04 166.88Z",
117
- fill: "url(#datasource_paint12_linear_1375_267)"
118
- }), (0, _react.jsx)("path", {
119
- d: "M406.52 152.01C406.67 152.06 406.9 152.11 407.25 152.17C408.21 152.33 408.84 152.57 409.24 152.86C410.29 153.59 409.6 155.01 410.51 157.07C410.6 157.28 410.88 157.87 411.03 158.72C411.1 159.15 411.12 159.47 411.12 159.54C411.15 160.21 411.58 161.58 413.11 164.55C412.78 164.46 412.46 164.37 412.13 164.28C411.17 163.91 410.2 163.54 409.24 163.17C407.16 161.78 406.7 161.57 406.7 160.58C406.69 159.4 406.68 157.33 406.62 157.25C405.95 156.6 405.08 156.48 405.74 155.68C406.12 155.23 406.41 154.9 406.51 154.81C406.82 154.53 407.04 153.83 406.52 152.01Z",
120
- fill: "#D4B696"
121
- }), (0, _react.jsx)("path", {
122
- d: "M409.17 152.81C408.97 155.53 409.02 159.86 410.76 164.7C410.8 164.82 410.85 164.95 410.9 165.07C412.74 169.95 418.57 172.14 423.04 169.45C423.19 169.36 423.35 169.26 423.5 169.16C423.53 169.14 423.55 169.12 423.58 169.11C426.31 167.24 426.68 163.37 424.47 160.91C422.98 159.26 422 157.68 421.33 156.36C419.26 152.28 419.55 149.41 416.8 147.81C414.71 146.59 412.02 146.79 411.13 146.85C409.41 146.98 408.61 147.42 408.23 147.7C407.34 148.37 406.86 149.14 406.64 149.56C406.11 150.55 405.98 151.47 405.94 152C406.33 152.02 406.78 152.08 407.26 152.18C408.02 152.34 408.67 152.58 409.17 152.81Z",
123
- fill: "#172B4D"
124
- }), (0, _react.jsx)("path", {
125
- d: "M298 24.3503L293.82 0.940321C293.72 0.390321 292.95 0.360321 292.8 0.890321L286.8 21.9503L281.93 20.5603C281.56 20.4503 281.2 20.7703 281.27 21.1503L285.45 44.5603C285.55 45.1103 286.32 45.1403 286.47 44.6103L292.47 23.5503L297.34 24.9403C297.71 25.0603 298.07 24.7303 298 24.3503Z",
126
- fill: "url(#datasource_paint13_linear_1375_267)"
127
- }), (0, _react.jsx)("path", {
128
- d: "M271.23 34.4501L262.63 26.2801C262.45 26.1101 262.17 26.3001 262.26 26.5301L266.06 36.7401L263.69 37.6201C263.53 37.6801 263.49 37.8801 263.61 38.0001L272.21 46.1701C272.39 46.3401 272.67 46.1501 272.58 45.9201L268.78 35.7101L271.15 34.8301C271.31 34.7801 271.35 34.5701 271.23 34.4501Z",
129
- fill: "url(#datasource_paint14_linear_1375_267)"
130
- }), (0, _react.jsx)("path", {
131
- d: "M252.19 156.739L248.63 180.259C248.55 180.809 249.26 181.089 249.58 180.639L262.02 162.619L266.18 165.499C266.5 165.719 266.94 165.529 266.99 165.149L270.55 141.629C270.63 141.079 269.92 140.799 269.6 141.249L257.16 159.269L253 156.389C252.69 156.169 252.25 156.359 252.19 156.739Z",
132
- fill: "url(#datasource_paint15_linear_1375_267)"
133
- }), (0, _react.jsx)("path", {
134
- d: "M280.79 160.989L286.31 171.489C286.42 171.709 286.75 171.619 286.74 171.379L286.42 160.489L288.95 160.409C289.12 160.399 289.23 160.219 289.15 160.069L283.63 149.569C283.52 149.349 283.19 149.439 283.2 149.679L283.52 160.569L280.99 160.639C280.82 160.659 280.71 160.839 280.79 160.989Z",
135
- fill: "url(#datasource_paint16_linear_1375_267)"
136
- }), (0, _react.jsx)("path", {
137
- d: "M210.22 142.149L210.26 142.049C210.88 140.389 211.84 138.869 213.09 137.609L213.57 137.119C213.8 136.879 214.17 136.829 214.46 136.989C214.83 137.199 214.96 137.679 214.73 138.039L214.35 138.639C213.96 139.259 214.44 140.049 215.17 139.989L216.22 139.909C216.41 139.889 216.6 139.889 216.79 139.889H220.09V140.009C220.09 140.589 219.94 141.149 219.65 141.649L219.85 142.479L212.52 144.559L210.22 142.149Z",
138
- fill: "#A27F68"
139
- }), (0, _react.jsx)("path", {
140
- d: "M167.89 212.219C170.43 201.299 170.03 198.249 168.95 195.809C167.16 191.769 163.58 189.559 161.36 188.459C160.58 189.839 159.49 191.959 158.49 194.659C156.66 199.589 156.32 203.239 155.63 207.859C155.11 211.319 154.24 216.299 152.75 222.379C150.92 226.479 149.08 231.349 147.55 236.919C145.75 243.459 144.81 249.419 144.33 254.469C146.45 254.469 148.58 254.469 150.71 254.459C152.73 251.619 154.81 248.339 156.78 244.619C160.42 237.759 162.67 231.309 164.11 225.929C164.85 223.589 165.87 220.159 166.97 215.949C167.26 214.829 167.56 213.629 167.89 212.219Z",
141
- fill: "#6554C0"
142
- }), (0, _react.jsx)("path", {
143
- d: "M176.58 191.57C179.52 198.15 181.75 203.76 183.34 207.95C186.95 217.46 187.57 220.51 187.81 221.82C188.78 227.05 188.69 231 188.5 237.33C188.37 241.83 187.97 247.87 186.83 255C184.86 255.11 182.88 255.22 180.91 255.33C179.04 250.46 177.13 243.9 176.47 235.99C176.11 231.71 176.19 227.83 176.47 224.47C173.58 221.68 170.54 218.48 167.48 214.83C165.05 211.93 162.9 209.11 161 206.41C161 206.41 156.64 199.14 158.38 195.02C158.38 195.01 158.39 194.99 158.4 194.98C158.89 193.79 159.33 192.79 159.55 192.3C160.25 190.75 160.84 189.5 161.25 188.66C163.04 189.3 165.07 189.9 167.32 190.4C170.78 191.17 173.92 191.48 176.58 191.57Z",
144
- fill: "url(#datasource_paint17_linear_1375_267)"
145
- }), (0, _react.jsx)("path", {
146
- d: "M172.03 148.42C171.56 148.18 171.05 147.95 170.5 147.72C169.91 147.47 169.34 147.26 168.81 147.09C168.59 146.7 167.07 144.07 163.95 143.52C163.46 143.44 161.77 143.16 160.05 144.06C157.21 145.55 156.37 149.16 156.64 151.67C156.74 152.59 156.91 154.28 158.16 155.58C159.93 157.42 162.29 156.85 162.98 158.45C163.55 159.76 162.18 160.72 162.73 161.65C163.73 163.34 169.99 163.03 171.08 160.08C171.23 159.68 171.48 158.71 170.76 157.19C171.68 155.93 172.61 154.67 173.53 153.42C173.3 152.89 172.96 152.24 172.45 151.55C171.97 150.91 171.49 150.41 171.07 150.05C171.23 149.86 171.41 149.63 171.58 149.35C171.79 149 171.93 148.68 172.03 148.42Z",
147
- fill: "#A27F68"
148
- }), (0, _react.jsx)("path", {
149
- d: "M163.94 151.95C163.79 150.89 164.25 150.56 163.88 149.91C163.46 149.16 162.68 149.28 162.15 148.38C161.99 148.12 161.68 147.58 161.84 147.09C162.25 145.82 165.44 146.23 165.81 145C165.91 144.65 165.76 144.29 165.61 144.04C165.08 143.65 164.2 143.12 163.02 142.93C160.36 142.5 157.52 144.01 156.11 146.43C154.47 149.25 155.11 152.73 156.74 154.54C157.37 155.24 158.63 156.65 160.4 156.92C160.96 157.01 161.84 157.02 162.34 157.67C162.73 158.17 162.66 158.75 162.98 158.84C163.06 158.86 163.36 158.91 164.01 158.08C164.71 157.19 165.56 156.12 165.39 154.83C165.22 153.5 164.16 153.48 163.94 151.95Z",
150
- fill: "#42526E"
151
- }), (0, _react.jsx)("path", {
152
- d: "M171.78 160.529C178.49 163.269 181.57 171.049 181.57 176.839C181.57 180.219 180.53 183.109 179.64 185.569C178.42 188.949 177.51 190.789 176 192.699C171.74 198.069 159.59 197.749 157.75 193.939C157.36 193.139 157.51 192.349 157.55 192.109C159.83 178.359 156.81 163.059 163.89 159.849C166.86 158.499 170.07 159.829 171.78 160.529Z",
153
- fill: "#5243AA"
154
- }), (0, _react.jsx)("path", {
155
- d: "M213.33 144.43C213.47 144.59 213.62 144.74 213.76 144.9C209.95 149.37 203.65 155.67 194.36 160.95C183.21 167.29 172.8 169.3 166.51 170.01C164.79 168.3 162.68 165.68 163.29 163.25C163.79 161.24 166.05 159.77 176.29 157.08C180.37 156.01 185.85 154.7 192.45 153.53C198.37 149.36 204.3 145.18 210.22 141.01C210.23 141.02 210.23 141.02 210.24 141.03L213.33 144.43Z",
156
- fill: "url(#datasource_paint18_linear_1375_267)"
157
- }), (0, _react.jsx)("path", {
158
- d: "M416.51 117.27L420.41 121.18L421.77 118.83L417.41 116.13C417.1 115.94 416.71 116 416.47 116.27C416.23 116.56 416.24 117 416.51 117.27Z",
159
- fill: "#D4B696"
160
- }), (0, _react.jsx)("path", {
161
- d: "M185.75 257.109C185.75 257.119 185.76 257.129 185.77 257.139C185.88 257.189 186.19 256.219 186.63 256.019C187.47 255.639 188.86 258.159 191.32 259.779C192.43 260.509 193.53 260.909 194.4 261.129C194.73 261.209 194.96 261.509 194.96 261.849V262.549H180.01C179.98 261.659 180.04 260.509 180.34 259.209C180.53 258.409 180.77 257.699 181.02 257.119H185.75V257.109Z",
162
- fill: "#42526E"
163
- }), (0, _react.jsx)("path", {
164
- d: "M180.08 259.818C181.72 259.818 183.05 261.138 183.09 262.768C182.06 262.768 181.03 262.768 180 262.768V259.818C180.03 259.828 180.06 259.818 180.08 259.818Z",
165
- fill: "#B3BAC5"
166
- }), (0, _react.jsx)("path", {
167
- d: "M148.77 257.109C148.77 257.119 148.78 257.129 148.79 257.139C148.9 257.189 149.21 256.219 149.65 256.019C150.49 255.639 151.88 258.159 154.34 259.779C155.45 260.509 156.55 260.909 157.42 261.129C157.75 261.209 157.98 261.509 157.98 261.849V262.549H143.03C143 261.659 143.06 260.509 143.36 259.209C143.55 258.409 143.79 257.699 144.04 257.119H148.77V257.109Z",
168
- fill: "#42526E"
169
- }), (0, _react.jsx)("path", {
170
- d: "M143.11 259.818C144.75 259.818 146.08 261.138 146.12 262.768C145.09 262.768 144.06 262.768 143.03 262.768V259.818C143.05 259.828 143.08 259.818 143.11 259.818Z",
171
- fill: "#B3BAC5"
172
- })), (0, _react.jsx)("defs", null, (0, _react.jsx)("linearGradient", {
173
- id: "datasource_paint0_linear_1375_267",
174
- x1: "141.994",
175
- y1: "181.192",
176
- x2: "0.870117",
177
- y2: "181.192",
178
- gradientUnits: "userSpaceOnUse"
179
- }, (0, _react.jsx)("stop", {
180
- stopColor: "#C1C7D0"
181
- }), (0, _react.jsx)("stop", {
182
- offset: "1",
183
- stopColor: "#C1C7D0",
184
- stopOpacity: "0"
185
- })), (0, _react.jsx)("linearGradient", {
186
- id: "datasource_paint1_linear_1375_267",
187
- x1: "208.292",
188
- y1: "264.428",
189
- x2: "0.870117",
190
- y2: "264.428",
191
- gradientUnits: "userSpaceOnUse"
192
- }, (0, _react.jsx)("stop", {
193
- stopColor: "#091E42"
194
- }), (0, _react.jsx)("stop", {
195
- offset: "0.8433",
196
- stopColor: "#091E42",
197
- stopOpacity: "0"
198
- })), (0, _react.jsx)("linearGradient", {
199
- id: "datasource_paint2_linear_1375_267",
200
- x1: "357.327",
201
- y1: "264.428",
202
- x2: "564.748",
203
- y2: "264.428",
204
- gradientUnits: "userSpaceOnUse"
205
- }, (0, _react.jsx)("stop", {
206
- stopColor: "#091E42"
207
- }), (0, _react.jsx)("stop", {
208
- offset: "0.8433",
209
- stopColor: "#091E42",
210
- stopOpacity: "0"
211
- })), (0, _react.jsx)("linearGradient", {
212
- id: "datasource_paint3_linear_1375_267",
213
- x1: "423.624",
214
- y1: "181.192",
215
- x2: "564.748",
216
- y2: "181.192",
217
- gradientUnits: "userSpaceOnUse"
218
- }, (0, _react.jsx)("stop", {
219
- stopColor: "#0065FF"
220
- }), (0, _react.jsx)("stop", {
221
- offset: "0.1724",
222
- stopColor: "#076AFF",
223
- stopOpacity: "0.8007"
224
- }), (0, _react.jsx)("stop", {
225
- offset: "0.4145",
226
- stopColor: "#1976FF",
227
- stopOpacity: "0.5208"
228
- }), (0, _react.jsx)("stop", {
229
- offset: "0.6966",
230
- stopColor: "#378BFF",
231
- stopOpacity: "0.1947"
232
- }), (0, _react.jsx)("stop", {
233
- offset: "0.8651",
234
- stopColor: "#4C9AFF",
235
- stopOpacity: "0"
236
- })), (0, _react.jsx)("radialGradient", {
237
- id: "datasource_paint4_radial_1375_267",
238
- cx: "0",
239
- cy: "0",
240
- r: "1",
241
- gradientUnits: "userSpaceOnUse",
242
- gradientTransform: "translate(285 99.0229) scale(96.5182)"
243
- }, (0, _react.jsx)("stop", {
244
- stopColor: "#FFF0B2"
245
- }), (0, _react.jsx)("stop", {
246
- offset: "0.1584",
247
- stopColor: "#FFE587",
248
- stopOpacity: "0.8416"
249
- }), (0, _react.jsx)("stop", {
250
- offset: "0.3589",
251
- stopColor: "#FFDA57",
252
- stopOpacity: "0.6411"
253
- }), (0, _react.jsx)("stop", {
254
- offset: "0.5498",
255
- stopColor: "#FFD031",
256
- stopOpacity: "0.4502"
257
- }), (0, _react.jsx)("stop", {
258
- offset: "0.7256",
259
- stopColor: "#FFC916",
260
- stopOpacity: "0.2744"
261
- }), (0, _react.jsx)("stop", {
262
- offset: "0.8811",
263
- stopColor: "#FFC506",
264
- stopOpacity: "0.1189"
265
- }), (0, _react.jsx)("stop", {
266
- offset: "1",
267
- stopColor: "#FFC400",
268
- stopOpacity: "0"
269
- })), (0, _react.jsx)("linearGradient", {
270
- id: "datasource_paint5_linear_1375_267",
271
- x1: "346.074",
272
- y1: "98.8386",
273
- x2: "423.624",
274
- y2: "98.8386",
275
- gradientUnits: "userSpaceOnUse"
276
- }, (0, _react.jsx)("stop", {
277
- stopColor: "#0052CC"
278
- }), (0, _react.jsx)("stop", {
279
- offset: "1",
280
- stopColor: "#2684FF"
281
- })), (0, _react.jsx)("linearGradient", {
282
- id: "datasource_paint6_linear_1375_267",
283
- x1: "237.087",
284
- y1: "120.044",
285
- x2: "276.412",
286
- y2: "120.044",
287
- gradientUnits: "userSpaceOnUse"
288
- }, (0, _react.jsx)("stop", {
289
- stopColor: "#7A869A"
290
- }), (0, _react.jsx)("stop", {
291
- offset: "1",
292
- stopColor: "#DFE1E5"
293
- })), (0, _react.jsx)("linearGradient", {
294
- id: "datasource_paint7_linear_1375_267",
295
- x1: "237.087",
296
- y1: "75.0106",
297
- x2: "276.412",
298
- y2: "75.0106",
299
- gradientUnits: "userSpaceOnUse"
300
- }, (0, _react.jsx)("stop", {
301
- stopColor: "#7A869A"
302
- }), (0, _react.jsx)("stop", {
303
- offset: "1",
304
- stopColor: "#DFE1E5"
305
- })), (0, _react.jsx)("linearGradient", {
306
- id: "datasource_paint8_linear_1375_267",
307
- x1: "335.969",
308
- y1: "146.593",
309
- x2: "335.969",
310
- y2: "51.4514",
311
- gradientUnits: "userSpaceOnUse"
312
- }, (0, _react.jsx)("stop", {
313
- stopColor: "#2684FF"
314
- }), (0, _react.jsx)("stop", {
315
- offset: "1",
316
- stopColor: "#B2D4FF"
317
- })), (0, _react.jsx)("linearGradient", {
318
- id: "datasource_paint9_linear_1375_267",
319
- x1: "219.544",
320
- y1: "98.8386",
321
- x2: "141.994",
322
- y2: "98.8386",
323
- gradientUnits: "userSpaceOnUse"
324
- }, (0, _react.jsx)("stop", {
325
- stopColor: "#7A869A"
326
- }), (0, _react.jsx)("stop", {
327
- offset: "1",
328
- stopColor: "#EBECF0"
329
- })), (0, _react.jsx)("linearGradient", {
330
- id: "datasource_paint10_linear_1375_267",
331
- x1: "229.65",
332
- y1: "146.593",
333
- x2: "229.65",
334
- y2: "51.4514",
335
- gradientUnits: "userSpaceOnUse"
336
- }, (0, _react.jsx)("stop", {
337
- stopColor: "#C1C7D0"
338
- }), (0, _react.jsx)("stop", {
339
- offset: "1",
340
- stopColor: "#F4F5F7"
341
- })), (0, _react.jsx)("linearGradient", {
342
- id: "datasource_paint11_linear_1375_267",
343
- x1: "402.858",
344
- y1: "216.64",
345
- x2: "421.684",
346
- y2: "223.492",
347
- gradientUnits: "userSpaceOnUse"
348
- }, (0, _react.jsx)("stop", {
349
- stopColor: "#4C9AFF"
350
- }), (0, _react.jsx)("stop", {
351
- offset: "0.8134",
352
- stopColor: "#0065FF"
353
- }), (0, _react.jsx)("stop", {
354
- offset: "0.8713",
355
- stopColor: "#0065FF"
356
- })), (0, _react.jsx)("linearGradient", {
357
- id: "datasource_paint12_linear_1375_267",
358
- x1: "376.968",
359
- y1: "157.139",
360
- x2: "433.936",
361
- y2: "157.139",
362
- gradientUnits: "userSpaceOnUse"
363
- }, (0, _react.jsx)("stop", {
364
- stopColor: "#B2D4FF"
365
- }), (0, _react.jsx)("stop", {
366
- offset: "1",
367
- stopColor: "#2684FF"
368
- })), (0, _react.jsx)("linearGradient", {
369
- id: "datasource_paint13_linear_1375_267",
370
- x1: "289.638",
371
- y1: "45.0027",
372
- x2: "289.638",
373
- y2: "0.510323",
374
- gradientUnits: "userSpaceOnUse"
375
- }, (0, _react.jsx)("stop", {
376
- stopColor: "#FFF0B2"
377
- }), (0, _react.jsx)("stop", {
378
- offset: "1",
379
- stopColor: "#FFC400"
380
- })), (0, _react.jsx)("linearGradient", {
381
- id: "datasource_paint14_linear_1375_267",
382
- x1: "262.238",
383
- y1: "36.2259",
384
- x2: "272.592",
385
- y2: "36.2259",
386
- gradientUnits: "userSpaceOnUse"
387
- }, (0, _react.jsx)("stop", {
388
- stopColor: "#FFC400"
389
- }), (0, _react.jsx)("stop", {
390
- offset: "1",
391
- stopColor: "#FFF0B2"
392
- })), (0, _react.jsx)("linearGradient", {
393
- id: "datasource_paint15_linear_1375_267",
394
- x1: "259.6",
395
- y1: "180.859",
396
- x2: "259.6",
397
- y2: "141.017",
398
- gradientUnits: "userSpaceOnUse"
399
- }, (0, _react.jsx)("stop", {
400
- stopColor: "#FFC400"
401
- }), (0, _react.jsx)("stop", {
402
- offset: "1",
403
- stopColor: "#FFF0B2"
404
- })), (0, _react.jsx)("linearGradient", {
405
- id: "datasource_paint16_linear_1375_267",
406
- x1: "284.971",
407
- y1: "171.613",
408
- x2: "284.971",
409
- y2: "149.45",
410
- gradientUnits: "userSpaceOnUse"
411
- }, (0, _react.jsx)("stop", {
412
- stopColor: "#FFC400"
413
- }), (0, _react.jsx)("stop", {
414
- offset: "1",
415
- stopColor: "#FFF0B2"
416
- })), (0, _react.jsx)("linearGradient", {
417
- id: "datasource_paint17_linear_1375_267",
418
- x1: "157.982",
419
- y1: "221.995",
420
- x2: "188.627",
421
- y2: "221.995",
422
- gradientUnits: "userSpaceOnUse"
423
- }, (0, _react.jsx)("stop", {
424
- offset: "0.3435",
425
- stopColor: "#6554C0"
426
- }), (0, _react.jsx)("stop", {
427
- offset: "1",
428
- stopColor: "#998DD9"
429
- })), (0, _react.jsx)("linearGradient", {
430
- id: "datasource_paint18_linear_1375_267",
431
- x1: "163.185",
432
- y1: "155.517",
433
- x2: "213.758",
434
- y2: "155.517",
435
- gradientUnits: "userSpaceOnUse"
436
- }, (0, _react.jsx)("stop", {
437
- stopColor: "#5243AA"
438
- }), (0, _react.jsx)("stop", {
439
- offset: "1",
440
- stopColor: "#8777D9"
441
- })), (0, _react.jsx)("clipPath", {
442
- id: "datasource_clip0_1375_267"
443
- }, (0, _react.jsx)("rect", {
444
- width: "563.88",
445
- height: "265.81",
446
- fill: "white",
447
- transform: "translate(0.870117 0.509766)"
448
- }))));
24
+ width: "170",
25
+ height: "130",
26
+ rx: "6.25",
27
+ fill: "white"
28
+ }), (0, _react.jsx)("path", {
29
+ fillRule: "evenodd",
30
+ clipRule: "evenodd",
31
+ d: "M163.75 2H6.25C3.90279 2 2 3.90279 2 6.25V123.75C2 126.097 3.90279 128 6.25 128H163.75C166.097 128 168 126.097 168 123.75V6.25C168 3.90279 166.097 2 163.75 2ZM6.25 0C2.79822 0 0 2.79822 0 6.25V123.75C0 127.202 2.79822 130 6.25 130H163.75C167.202 130 170 127.202 170 123.75V6.25C170 2.79822 167.202 0 163.75 0H6.25Z",
32
+ fill: "#091E42",
33
+ fillOpacity: "0.14"
34
+ }), (0, _react.jsx)("path", {
35
+ fillRule: "evenodd",
36
+ clipRule: "evenodd",
37
+ d: "M168 14H2V12H168V14Z",
38
+ fill: "#091E42",
39
+ fillOpacity: "0.14"
40
+ }), (0, _react.jsx)("path", {
41
+ fillRule: "evenodd",
42
+ clipRule: "evenodd",
43
+ d: "M168 43L2 43L2 41L168 41V43Z",
44
+ fill: "#091E42",
45
+ fillOpacity: "0.14"
46
+ }), (0, _react.jsx)("path", {
47
+ fillRule: "evenodd",
48
+ clipRule: "evenodd",
49
+ d: "M168 72H2V70H168V72Z",
50
+ fill: "#091E42",
51
+ fillOpacity: "0.14"
52
+ }), (0, _react.jsx)("path", {
53
+ fillRule: "evenodd",
54
+ clipRule: "evenodd",
55
+ d: "M28 128L28 2H30L30 128H28Z",
56
+ fill: "#091E42",
57
+ fillOpacity: "0.14"
58
+ }), (0, _react.jsx)("path", {
59
+ fillRule: "evenodd",
60
+ clipRule: "evenodd",
61
+ d: "M98 128L98 2H100L100 128H98Z",
62
+ fill: "#091E42",
63
+ fillOpacity: "0.14"
64
+ }), (0, _react.jsx)("rect", {
65
+ x: "34",
66
+ y: "24.5",
67
+ width: "60",
68
+ height: "6",
69
+ rx: "3",
70
+ fill: "#091E42",
71
+ fillOpacity: "0.06"
72
+ }), (0, _react.jsx)("rect", {
73
+ x: "104",
74
+ y: "24.5",
75
+ width: "60",
76
+ height: "6",
77
+ rx: "3",
78
+ fill: "#091E42",
79
+ fillOpacity: "0.06"
80
+ }), (0, _react.jsx)("rect", {
81
+ x: "34",
82
+ y: "53.5",
83
+ width: "60",
84
+ height: "6",
85
+ rx: "3",
86
+ fill: "#091E42",
87
+ fillOpacity: "0.06"
88
+ }), (0, _react.jsx)("rect", {
89
+ x: "104",
90
+ y: "53.5",
91
+ width: "60",
92
+ height: "6",
93
+ rx: "3",
94
+ fill: "#091E42",
95
+ fillOpacity: "0.06"
96
+ }), (0, _react.jsx)("rect", {
97
+ x: "34",
98
+ y: "111.5",
99
+ width: "60",
100
+ height: "6",
101
+ rx: "3",
102
+ fill: "#091E42",
103
+ fillOpacity: "0.06"
104
+ }), (0, _react.jsx)("rect", {
105
+ x: "104",
106
+ y: "111.5",
107
+ width: "60",
108
+ height: "6",
109
+ rx: "3",
110
+ fill: "#091E42",
111
+ fillOpacity: "0.06"
112
+ }), (0, _react.jsx)("rect", {
113
+ x: "34",
114
+ y: "82.5",
115
+ width: "60",
116
+ height: "6",
117
+ rx: "3",
118
+ fill: "#091E42",
119
+ fillOpacity: "0.06"
120
+ }), (0, _react.jsx)("rect", {
121
+ x: "104",
122
+ y: "82.5",
123
+ width: "60",
124
+ height: "6",
125
+ rx: "3",
126
+ fill: "#091E42",
127
+ fillOpacity: "0.06"
128
+ }), (0, _react.jsx)("rect", {
129
+ opacity: "0.5",
130
+ x: "8",
131
+ y: "20.5",
132
+ width: "14",
133
+ height: "14",
134
+ rx: "2",
135
+ fill: "#1D7AFC"
136
+ }), (0, _react.jsx)("rect", {
137
+ opacity: "0.5",
138
+ x: "8",
139
+ y: "49.5",
140
+ width: "14",
141
+ height: "14",
142
+ rx: "2",
143
+ fill: "#1D7AFC"
144
+ }), (0, _react.jsx)("path", {
145
+ fillRule: "evenodd",
146
+ clipRule: "evenodd",
147
+ d: "M168 101H2V99H168V101Z",
148
+ fill: "#091E42",
149
+ fillOpacity: "0.14"
150
+ }), (0, _react.jsx)("rect", {
151
+ opacity: "0.5",
152
+ x: "8",
153
+ y: "107.5",
154
+ width: "14",
155
+ height: "14",
156
+ rx: "2",
157
+ fill: "#1D7AFC"
158
+ }), (0, _react.jsx)("rect", {
159
+ opacity: "0.5",
160
+ x: "8",
161
+ y: "78.5",
162
+ width: "14",
163
+ height: "14",
164
+ rx: "2",
165
+ fill: "#1D7AFC"
166
+ }));
449
167
  };