@oceanbase/design 1.0.0-alpha.2 → 1.0.0-alpha.4

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 (194) hide show
  1. package/dist/design.min.js +1 -1
  2. package/es/_util/genComponentStyleHook.d.ts +2 -2
  3. package/es/_util/genComponentStyleHook.js +15 -2
  4. package/es/alert/index.d.ts +2 -2
  5. package/es/alert/index.js +13 -4
  6. package/es/alert/style/index.d.ts +1 -1
  7. package/es/alert/style/index.js +152 -58
  8. package/es/app/index.d.ts +8 -0
  9. package/es/app/index.js +36 -1
  10. package/es/app/style/index.d.ts +9 -0
  11. package/es/{_util/genStyle.js → app/style/index.js} +10 -11
  12. package/es/badge/index.js +2 -3
  13. package/es/badge/style/index.d.ts +1 -1
  14. package/es/badge/style/index.js +1 -3
  15. package/es/button/style/index.d.ts +1 -1
  16. package/es/card/index.d.ts +4 -0
  17. package/es/card/index.js +64 -7
  18. package/es/card/style/index.d.ts +1 -1
  19. package/es/card/style/index.js +32 -8
  20. package/es/checkbox/style/index.d.ts +1 -1
  21. package/es/config-provider/context.d.ts +11 -0
  22. package/es/config-provider/context.js +2 -1
  23. package/es/config-provider/index.d.ts +2 -2
  24. package/es/config-provider/index.js +57 -34
  25. package/es/descriptions/style/index.d.ts +1 -1
  26. package/es/drawer/index.js +7 -5
  27. package/es/drawer/style/index.d.ts +1 -1
  28. package/es/drawer/style/index.js +31 -9
  29. package/es/empty/index.js +1 -1
  30. package/es/empty/style/index.d.ts +1 -1
  31. package/es/form/FormItem.d.ts +2 -1
  32. package/es/form/FormItem.js +14 -4
  33. package/es/form/style/index.d.ts +1 -1
  34. package/es/form/style/index.js +13 -2
  35. package/es/index.d.ts +4 -2
  36. package/es/index.js +1 -0
  37. package/es/input-number/index.d.ts +2 -1
  38. package/es/locale/ja-JP.d.ts +3 -0
  39. package/es/locale/ja-JP.js +28 -0
  40. package/es/modal/Modal.js +20 -6
  41. package/es/modal/style/index.d.ts +1 -1
  42. package/es/modal/style/index.js +62 -19
  43. package/es/radio/style/index.d.ts +1 -1
  44. package/es/result/index.d.ts +2 -2
  45. package/es/result/index.js +5 -4
  46. package/es/result/style/index.d.ts +1 -1
  47. package/es/select/style/index.d.ts +1 -1
  48. package/es/slider/style/index.d.ts +1 -1
  49. package/es/space/style/index.d.ts +1 -1
  50. package/es/spin/style/index.d.ts +1 -1
  51. package/es/static-function/index.js +13 -4
  52. package/es/switch/style/index.d.ts +1 -1
  53. package/es/table/style/index.d.ts +1 -1
  54. package/es/table/style/index.js +3 -4
  55. package/es/tabs/style/index.d.ts +1 -1
  56. package/es/tabs/style/index.js +4 -2
  57. package/es/tag/index.d.ts +1 -0
  58. package/es/tag/index.js +3 -2
  59. package/es/tag/style/index.d.ts +2 -4
  60. package/es/tag/style/index.js +20 -31
  61. package/es/theme/dark.d.ts +1 -48
  62. package/es/theme/default.d.ts +4 -2
  63. package/es/theme/default.js +59 -28
  64. package/es/theme/index.d.ts +20 -57
  65. package/es/theme/interface.d.ts +66 -0
  66. package/es/theme/interface.js +4 -1
  67. package/es/theme/style/aliyun.less +40 -40
  68. package/es/theme/style/compact.less +79 -72
  69. package/es/theme/style/dark.less +53 -53
  70. package/es/theme/style/default.less +79 -72
  71. package/es/tooltip/style/index.d.ts +1 -1
  72. package/es/tree-select/style/index.d.ts +1 -1
  73. package/lib/_util/genComponentStyleHook.d.ts +2 -2
  74. package/lib/_util/genComponentStyleHook.js +20 -4
  75. package/lib/alert/index.d.ts +2 -2
  76. package/lib/alert/index.js +18 -9
  77. package/lib/alert/style/index.d.ts +1 -1
  78. package/lib/alert/style/index.js +170 -71
  79. package/lib/app/index.d.ts +8 -0
  80. package/lib/app/index.js +36 -1
  81. package/lib/app/style/index.d.ts +9 -0
  82. package/lib/{_util/getWeakenBorderColor.js → app/style/index.js} +20 -10
  83. package/lib/badge/index.js +23 -20
  84. package/lib/badge/style/index.d.ts +1 -1
  85. package/lib/badge/style/index.js +1 -3
  86. package/lib/button/index.js +2 -1
  87. package/lib/button/style/index.d.ts +1 -1
  88. package/lib/card/index.d.ts +4 -0
  89. package/lib/card/index.js +70 -9
  90. package/lib/card/style/index.d.ts +1 -1
  91. package/lib/card/style/index.js +56 -10
  92. package/lib/checkbox/index.js +2 -1
  93. package/lib/checkbox/style/index.d.ts +1 -1
  94. package/lib/config-provider/DefaultRenderEmpty.js +4 -3
  95. package/lib/config-provider/context.d.ts +11 -0
  96. package/lib/config-provider/index.d.ts +2 -2
  97. package/lib/config-provider/index.js +70 -26
  98. package/lib/descriptions/hooks/useItems.js +5 -4
  99. package/lib/descriptions/index.js +3 -2
  100. package/lib/descriptions/style/index.d.ts +1 -1
  101. package/lib/drawer/index.js +44 -33
  102. package/lib/drawer/style/index.d.ts +1 -1
  103. package/lib/drawer/style/index.js +33 -6
  104. package/lib/dropdown/dropdown-button.js +3 -13
  105. package/lib/dropdown/index.js +2 -2
  106. package/lib/empty/colored.js +413 -327
  107. package/lib/empty/database.js +267 -222
  108. package/lib/empty/default.js +16 -21
  109. package/lib/empty/guide.js +201 -184
  110. package/lib/empty/index.js +23 -18
  111. package/lib/empty/style/index.d.ts +1 -1
  112. package/lib/form/FormItem.d.ts +2 -1
  113. package/lib/form/FormItem.js +18 -6
  114. package/lib/form/index.js +6 -3
  115. package/lib/form/style/index.d.ts +1 -1
  116. package/lib/form/style/index.js +19 -0
  117. package/lib/grid/col.js +2 -1
  118. package/lib/grid/row.js +2 -1
  119. package/lib/index.d.ts +4 -2
  120. package/lib/index.js +3 -0
  121. package/lib/input/Input.js +3 -2
  122. package/lib/input/Password.js +3 -2
  123. package/lib/input/Search.js +3 -2
  124. package/lib/input/TextArea.js +3 -2
  125. package/lib/input-number/index.d.ts +2 -1
  126. package/lib/input-number/index.js +2 -1
  127. package/lib/list/index.js +3 -2
  128. package/lib/locale/ja-JP.d.ts +3 -0
  129. package/lib/locale/ja-JP.js +60 -0
  130. package/lib/lottie/index.js +2 -1
  131. package/lib/modal/Modal.js +33 -9
  132. package/lib/modal/Progress.js +9 -5
  133. package/lib/modal/style/index.d.ts +1 -1
  134. package/lib/modal/style/index.js +76 -17
  135. package/lib/radio/index.js +2 -1
  136. package/lib/radio/style/index.d.ts +1 -1
  137. package/lib/result/403.js +156 -121
  138. package/lib/result/404.js +328 -267
  139. package/lib/result/500.js +295 -257
  140. package/lib/result/Error.js +127 -99
  141. package/lib/result/Processing.js +246 -213
  142. package/lib/result/Success.js +233 -169
  143. package/lib/result/Warning.js +611 -515
  144. package/lib/result/index.d.ts +2 -2
  145. package/lib/result/index.js +12 -11
  146. package/lib/result/style/index.d.ts +1 -1
  147. package/lib/segmented/index.js +8 -4
  148. package/lib/select/index.js +2 -1
  149. package/lib/select/style/index.d.ts +1 -1
  150. package/lib/slider/index.js +2 -1
  151. package/lib/slider/style/index.d.ts +1 -1
  152. package/lib/space/index.js +2 -1
  153. package/lib/space/style/index.d.ts +1 -1
  154. package/lib/spin/index.js +5 -4
  155. package/lib/spin/style/index.d.ts +1 -1
  156. package/lib/static-function/index.js +7 -1
  157. package/lib/switch/index.js +2 -1
  158. package/lib/switch/style/index.d.ts +1 -1
  159. package/lib/table/index.js +44 -31
  160. package/lib/table/style/index.d.ts +1 -1
  161. package/lib/table/style/index.js +3 -4
  162. package/lib/tabs/index.js +10 -5
  163. package/lib/tabs/style/index.d.ts +1 -1
  164. package/lib/tabs/style/index.js +5 -0
  165. package/lib/tag/index.d.ts +1 -0
  166. package/lib/tag/index.js +12 -6
  167. package/lib/tag/style/index.d.ts +2 -4
  168. package/lib/tag/style/index.js +20 -27
  169. package/lib/theme/dark.d.ts +1 -48
  170. package/lib/theme/default.d.ts +4 -2
  171. package/lib/theme/default.js +67 -27
  172. package/lib/theme/index.d.ts +20 -57
  173. package/lib/theme/interface.d.ts +66 -0
  174. package/lib/theme/style/aliyun.less +40 -40
  175. package/lib/theme/style/compact.less +79 -72
  176. package/lib/theme/style/dark.less +53 -53
  177. package/lib/theme/style/default.less +79 -72
  178. package/lib/tooltip/MouseTooltip.js +43 -39
  179. package/lib/tooltip/ReactStickyMouseTooltip.js +5 -4
  180. package/lib/tooltip/index.js +14 -10
  181. package/lib/tooltip/style/index.d.ts +1 -1
  182. package/lib/tree-select/index.js +2 -1
  183. package/lib/tree-select/style/index.d.ts +1 -1
  184. package/lib/typography/Link.js +5 -4
  185. package/lib/typography/Paragraph.js +5 -4
  186. package/lib/typography/Text.js +5 -4
  187. package/lib/typography/Title.js +5 -4
  188. package/package.json +7 -6
  189. package/es/_util/genStyle.d.ts +0 -2
  190. package/es/_util/getWeakenBorderColor.d.ts +0 -1
  191. package/es/_util/getWeakenBorderColor.js +0 -4
  192. package/lib/_util/genStyle.d.ts +0 -2
  193. package/lib/_util/genStyle.js +0 -43
  194. package/lib/_util/getWeakenBorderColor.d.ts +0 -1
@@ -32,527 +32,623 @@ __export(Warning_exports, {
32
32
  default: () => Warning_default
33
33
  });
34
34
  module.exports = __toCommonJS(Warning_exports);
35
- var import_react = __toESM(require("react"));
36
35
  var import_icons = __toESM(require("@oceanbase/icons"));
37
- var WarningSvg = () => /* @__PURE__ */ import_react.default.createElement(
36
+ var import_jsx_runtime = require("react/jsx-runtime");
37
+ var WarningSvg = () => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
38
38
  "svg",
39
39
  {
40
40
  width: "160px",
41
41
  height: "160px",
42
42
  viewBox: "0 0 160 160",
43
43
  version: "1.1",
44
- xmlns: "http://www.w3.org/2000/svg"
45
- },
46
- /* @__PURE__ */ import_react.default.createElement("defs", null, /* @__PURE__ */ import_react.default.createElement(
47
- "path",
48
- {
49
- d: "M33.1125,0 L100.6125,0 C118.8875,0 133.725,14.8375 133.725,33.1125 L133.725,118.0875 L33.1125,118.0875 C14.8375,118.0875 -4.4408921e-15,103.25 -4.4408921e-15,84.975 L-4.4408921e-15,33.1125 C-4.4408921e-15,14.8375 14.8375,0 33.1125,0 Z",
50
- id: "oceanbase-design-result-warning-path-1"
51
- }
52
- )),
53
- /* @__PURE__ */ import_react.default.createElement("g", { stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(6, 14)" }, /* @__PURE__ */ import_react.default.createElement(
54
- "path",
55
- {
56
- d: "M115.525,13.75 L48.025,13.75 C29.7375,13.75 14.9125,28.575 14.9125,46.8625 L14.9125,72.8 L49.5625,72.8 C50.15,72.8 50.6375,73.275 50.6375,73.875 L50.6375,88.1125 C50.6375,88.7 50.1625,89.1875 49.5625,89.1875 L48.0625,89.1875 L48.0625,91.6 L49.5625,91.6 C50.15,91.6 50.6375,92.075 50.6375,92.675 L50.6375,106.9125 C50.6375,107.5 50.1625,107.9875 49.5625,107.9875 L48.0625,107.9875 L48.0625,110.4 L49.5625,110.4 C50.15,110.4 50.6375,110.875 50.6375,111.475 L50.6375,130.65 C50.6375,131.2375 50.1625,131.725 49.5625,131.725 L45.0625,131.725 C46.0375,131.8125 47.025,131.8625 48.025,131.8625 L91.4625,131.8625 L91.4625,37.15 C91.4625,33.5875 94.35,30.7 97.9125,30.7 L144.4125,30.7 C138.75,20.5875 127.9375,13.75 115.525,13.75 Z",
57
- fill: "#0181FD",
58
- fillRule: "nonzero"
59
- }
60
- ), /* @__PURE__ */ import_react.default.createElement("g", { id: "Clipped", transform: "translate(14.9125, 13.75)" }, /* @__PURE__ */ import_react.default.createElement("mask", { id: "oceanbase-design-result-warning-mask-2", fill: "white" }, /* @__PURE__ */ import_react.default.createElement("use", { href: "#oceanbase-design-result-warning-path-1" })), /* @__PURE__ */ import_react.default.createElement("g", null), /* @__PURE__ */ import_react.default.createElement("g", { mask: "url(#oceanbase-design-result-warning-mask-2)" }, /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(-13.25, 47.0625)" }, /* @__PURE__ */ import_react.default.createElement(
61
- "path",
62
- {
63
- d: "M76.075,40.3375 C85.7625,33.55 97.6875,18.85 104.2,0",
64
- stroke: "#07C846",
65
- strokeWidth: "2.0125"
66
- }
67
- ), /* @__PURE__ */ import_react.default.createElement(
68
- "path",
69
- {
70
- d: "M46.8,36.0375 C48.675,41.1 56.5625,49.7 69.95,43.7125",
71
- stroke: "#07C846",
72
- strokeWidth: "2.0125"
73
- }
74
- ), /* @__PURE__ */ import_react.default.createElement(
75
- "line",
76
- {
77
- x1: "66.525",
78
- y1: "37.125",
79
- x2: "69.475",
80
- y2: "39.75",
81
- stroke: "#FFA005",
82
- strokeWidth: "2.475",
83
- strokeLinecap: "round",
84
- strokeLinejoin: "round"
85
- }
86
- ), /* @__PURE__ */ import_react.default.createElement(
87
- "line",
88
- {
89
- x1: "72.7",
90
- y1: "33.1625",
91
- x2: "73.0875",
92
- y2: "38.075",
93
- stroke: "#FFA005",
94
- strokeWidth: "2.475",
95
- strokeLinecap: "round",
96
- strokeLinejoin: "round"
97
- }
98
- ), /* @__PURE__ */ import_react.default.createElement("g", { stroke: "none", strokeWidth: "1", fillRule: "evenodd", transform: "translate(0, 11.975)" }, /* @__PURE__ */ import_react.default.createElement(
99
- "rect",
100
- {
101
- fill: "#132039",
102
- fillRule: "nonzero",
103
- transform: "translate(24.4875, 26.3375) rotate(-180) translate(-24.4875, -26.3375)",
104
- x: "2.575",
105
- y: "13.0125",
106
- width: "43.825",
107
- height: "26.65"
108
- }
109
- ), /* @__PURE__ */ import_react.default.createElement(
110
- "rect",
111
- {
112
- fill: "#FFFFFF",
113
- fillRule: "nonzero",
114
- transform: "translate(24.4875, 48.25) rotate(-180) translate(-24.4875, -48.25)",
115
- x: "0",
116
- y: "37.5875",
117
- width: "48.975",
118
- height: "21.325",
119
- rx: "1.075"
120
- }
121
- ), /* @__PURE__ */ import_react.default.createElement(
122
- "rect",
123
- {
124
- fill: "#07C846",
125
- fillRule: "nonzero",
126
- transform: "translate(24.4875, 48.25) rotate(-180) translate(-24.4875, -48.25)",
127
- x: "0",
128
- y: "37.5875",
129
- width: "48.975",
130
- height: "21.325",
131
- rx: "1.075"
132
- }
133
- ), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "45.3875", cy: "41.8", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "41.2375", cy: "41.8", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "37.0875", cy: "41.8", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement(
134
- "rect",
135
- {
136
- fill: "#39D36B",
137
- fillRule: "nonzero",
138
- transform: "translate(27.0313, 45.9125) rotate(-180) translate(-27.0313, -45.9125)",
139
- x: "25.8",
140
- y: "40.5875",
141
- width: "2.4625",
142
- height: "10.65"
143
- }
144
- ), /* @__PURE__ */ import_react.default.createElement(
145
- "rect",
146
- {
147
- fill: "#39D36B",
148
- fillRule: "nonzero",
149
- transform: "translate(23.3562, 45.9125) rotate(-180) translate(-23.3562, -45.9125)",
150
- x: "22.125",
151
- y: "40.5875",
152
- width: "2.4625",
153
- height: "10.65"
154
- }
155
- ), /* @__PURE__ */ import_react.default.createElement(
156
- "rect",
157
- {
158
- fill: "#39D36B",
159
- fillRule: "nonzero",
160
- transform: "translate(19.6688, 45.9125) rotate(-180) translate(-19.6688, -45.9125)",
161
- x: "18.4375",
162
- y: "40.5875",
163
- width: "2.4625",
164
- height: "10.65"
165
- }
166
- ), /* @__PURE__ */ import_react.default.createElement(
167
- "rect",
168
- {
169
- fill: "#39D36B",
170
- fillRule: "nonzero",
171
- transform: "translate(15.9937, 45.9125) rotate(-180) translate(-15.9937, -45.9125)",
172
- x: "14.7625",
173
- y: "40.5875",
174
- width: "2.4625",
175
- height: "10.65"
176
- }
177
- ), /* @__PURE__ */ import_react.default.createElement(
178
- "rect",
179
- {
180
- fill: "#39D36B",
181
- fillRule: "nonzero",
182
- transform: "translate(12.3062, 45.9125) rotate(-180) translate(-12.3062, -45.9125)",
183
- x: "11.075",
184
- y: "40.5875",
185
- width: "2.4625",
186
- height: "10.65"
187
- }
188
- ), /* @__PURE__ */ import_react.default.createElement(
189
- "rect",
190
- {
191
- fill: "#39D36B",
192
- fillRule: "nonzero",
193
- transform: "translate(8.6312, 45.9125) rotate(-180) translate(-8.6312, -45.9125)",
194
- x: "7.4",
195
- y: "40.5875",
196
- width: "2.4625",
197
- height: "10.65"
198
- }
199
- ), /* @__PURE__ */ import_react.default.createElement(
200
- "rect",
201
- {
202
- fill: "#39D36B",
203
- fillRule: "nonzero",
204
- transform: "translate(4.9437, 45.9125) rotate(-180) translate(-4.9437, -45.9125)",
205
- x: "3.7125",
206
- y: "40.5875",
207
- width: "2.4625",
208
- height: "10.65"
209
- }
210
- ), /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(0, 18.7875)", fillRule: "nonzero" }, /* @__PURE__ */ import_react.default.createElement(
211
- "rect",
212
- {
213
- fill: "#FFFFFF",
214
- transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
215
- x: "0",
216
- y: "0",
217
- width: "48.975",
218
- height: "16.3875",
219
- rx: "1.075"
220
- }
221
- ), /* @__PURE__ */ import_react.default.createElement(
222
- "rect",
223
- {
224
- fill: "#FFFFFF",
225
- transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
226
- x: "0",
227
- y: "0",
228
- width: "48.975",
229
- height: "16.3875",
230
- rx: "1.075"
231
- }
232
- ), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#E6E6E6", cx: "45.3875", cy: "4", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#E6E6E6", cx: "41.2375", cy: "4", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#E6E6E6", cx: "37.0875", cy: "4", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement(
233
- "rect",
234
- {
235
- fill: "#E6E6E6",
236
- transform: "translate(27.0313, 8.8375) rotate(-180) translate(-27.0313, -8.8375)",
237
- x: "25.8",
238
- y: "3.5125",
239
- width: "2.4625",
240
- height: "10.65"
241
- }
242
- ), /* @__PURE__ */ import_react.default.createElement(
243
- "rect",
244
- {
245
- fill: "#E6E6E6",
246
- transform: "translate(23.3562, 8.8375) rotate(-180) translate(-23.3562, -8.8375)",
247
- x: "22.125",
248
- y: "3.5125",
249
- width: "2.4625",
250
- height: "10.65"
251
- }
252
- ), /* @__PURE__ */ import_react.default.createElement(
253
- "rect",
254
- {
255
- fill: "#E6E6E6",
256
- transform: "translate(19.6688, 8.8375) rotate(-180) translate(-19.6688, -8.8375)",
257
- x: "18.4375",
258
- y: "3.5125",
259
- width: "2.4625",
260
- height: "10.65"
261
- }
262
- ), /* @__PURE__ */ import_react.default.createElement(
263
- "rect",
264
- {
265
- fill: "#E6E6E6",
266
- transform: "translate(15.9937, 8.8375) rotate(-180) translate(-15.9937, -8.8375)",
267
- x: "14.7625",
268
- y: "3.5125",
269
- width: "2.4625",
270
- height: "10.65"
271
- }
272
- ), /* @__PURE__ */ import_react.default.createElement(
273
- "rect",
274
- {
275
- fill: "#E6E6E6",
276
- transform: "translate(12.3062, 8.8375) rotate(-180) translate(-12.3062, -8.8375)",
277
- x: "11.075",
278
- y: "3.5125",
279
- width: "2.4625",
280
- height: "10.65"
281
- }
282
- ), /* @__PURE__ */ import_react.default.createElement(
283
- "rect",
284
- {
285
- fill: "#E6E6E6",
286
- transform: "translate(8.6312, 8.8375) rotate(-180) translate(-8.6312, -8.8375)",
287
- x: "7.4",
288
- y: "3.5125",
289
- width: "2.4625",
290
- height: "10.65"
291
- }
292
- ), /* @__PURE__ */ import_react.default.createElement(
293
- "rect",
294
- {
295
- fill: "#E6E6E6",
296
- transform: "translate(4.9437, 8.8375) rotate(-180) translate(-4.9437, -8.8375)",
297
- x: "3.7125",
298
- y: "3.5125",
299
- width: "2.4625",
300
- height: "10.65"
301
- }
302
- )), /* @__PURE__ */ import_react.default.createElement("g", { fillRule: "nonzero" }, /* @__PURE__ */ import_react.default.createElement(
303
- "rect",
304
- {
305
- fill: "#FFFFFF",
306
- transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
307
- x: "0",
308
- y: "0",
309
- width: "48.975",
310
- height: "16.3875",
311
- rx: "1.075"
312
- }
313
- ), /* @__PURE__ */ import_react.default.createElement(
314
- "rect",
315
- {
316
- fill: "#FFFFFF",
317
- transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
318
- x: "0",
319
- y: "0",
320
- width: "48.975",
321
- height: "16.3875",
322
- rx: "1.075"
323
- }
324
- ), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#E6E6E6", cx: "45.3875", cy: "3.9875", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#E6E6E6", cx: "41.2375", cy: "3.9875", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#E6E6E6", cx: "37.0875", cy: "3.9875", r: "1.2" }), /* @__PURE__ */ import_react.default.createElement(
325
- "rect",
326
- {
327
- fill: "#E6E6E6",
328
- transform: "translate(27.0313, 8.8375) rotate(-180) translate(-27.0313, -8.8375)",
329
- x: "25.8",
330
- y: "3.5125",
331
- width: "2.4625",
332
- height: "10.65"
333
- }
334
- ), /* @__PURE__ */ import_react.default.createElement(
335
- "rect",
336
- {
337
- fill: "#E6E6E6",
338
- transform: "translate(23.3562, 8.8375) rotate(-180) translate(-23.3562, -8.8375)",
339
- x: "22.125",
340
- y: "3.5125",
341
- width: "2.4625",
342
- height: "10.65"
343
- }
344
- ), /* @__PURE__ */ import_react.default.createElement(
345
- "rect",
346
- {
347
- fill: "#E6E6E6",
348
- transform: "translate(19.6688, 8.8375) rotate(-180) translate(-19.6688, -8.8375)",
349
- x: "18.4375",
350
- y: "3.5125",
351
- width: "2.4625",
352
- height: "10.65"
353
- }
354
- ), /* @__PURE__ */ import_react.default.createElement(
355
- "rect",
356
- {
357
- fill: "#E6E6E6",
358
- transform: "translate(15.9937, 8.8375) rotate(-180) translate(-15.9937, -8.8375)",
359
- x: "14.7625",
360
- y: "3.5125",
361
- width: "2.4625",
362
- height: "10.65"
363
- }
364
- ), /* @__PURE__ */ import_react.default.createElement(
365
- "rect",
366
- {
367
- fill: "#E6E6E6",
368
- transform: "translate(12.3062, 8.8375) rotate(-180) translate(-12.3062, -8.8375)",
369
- x: "11.075",
370
- y: "3.5125",
371
- width: "2.4625",
372
- height: "10.65"
373
- }
374
- ), /* @__PURE__ */ import_react.default.createElement(
375
- "rect",
376
- {
377
- fill: "#E6E6E6",
378
- transform: "translate(8.6312, 8.8375) rotate(-180) translate(-8.6312, -8.8375)",
379
- x: "7.4",
380
- y: "3.5125",
381
- width: "2.4625",
382
- height: "10.65"
383
- }
384
- ), /* @__PURE__ */ import_react.default.createElement(
385
- "rect",
386
- {
387
- fill: "#E6E6E6",
388
- transform: "translate(4.9437, 8.8375) rotate(-180) translate(-4.9437, -8.8375)",
389
- x: "3.7125",
390
- y: "3.5125",
391
- width: "2.4625",
392
- height: "10.65"
393
- }
394
- ))), /* @__PURE__ */ import_react.default.createElement(
395
- "g",
396
- {
397
- stroke: "none",
398
- strokeWidth: "1",
399
- fillRule: "evenodd",
400
- transform: "translate(36.825, 4.0375)"
401
- },
402
- /* @__PURE__ */ import_react.default.createElement(
403
- "path",
404
- {
405
- d: "M4.4125,0 L4.4125,0 C6.85,0 8.825,1.975 8.825,4.4125 L8.825,7.95 L0,7.95 L0,4.4125 C0,1.975 1.975,0 4.4125,0 Z",
406
- fill: "#FFA005",
407
- fillRule: "nonzero"
408
- }
409
- ),
410
- /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "3.0375", cy: "3.4", r: "1.7" })
411
- )))), /* @__PURE__ */ import_react.default.createElement("g", null, /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFA005", fillRule: "nonzero", cx: "24.7375", cy: "24.7375", r: "24.7375" }), /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(21.5222, 13.9875)", fill: "#FFFFFF" }, /* @__PURE__ */ import_react.default.createElement("path", { d: "M0.815346205,0 L5.61534621,0 C6.06534621,0 6.44034621,0.3625 6.44034621,0.825 C6.44034621,0.85 6.44034621,0.875 6.44034621,0.8875 L5.26534621,15.1875 C5.22784621,15.6125 4.87784621,15.9375 4.44034621,15.9375 L2.00284621,15.9375 C1.57784621,15.9375 1.21534621,15.6125 1.17784621,15.1875 L0.00284620526,0.8875 C-0.0346537947,0.4375 0.302846205,0.0375 0.752846205,0 C0.777846205,0 0.802846205,0 0.815346205,0 Z" }), /* @__PURE__ */ import_react.default.createElement(
412
- "rect",
413
- {
414
- fillRule: "nonzero",
415
- x: "1.24034621",
416
- y: "17.55",
417
- width: "3.95",
418
- height: "3.95",
419
- rx: "0.825"
420
- }
421
- ))), /* @__PURE__ */ import_react.default.createElement(
422
- "path",
423
- {
424
- d: "M148.625,46.8625 C148.625,40.9875 147.0875,35.4875 144.4125,30.7 L97.9125,30.7 C94.35,30.7 91.4625,33.5875 91.4625,37.15 L91.4625,131.8375 L148.6375,131.8375 L148.6375,46.8625 L148.625,46.8625 Z",
425
- fill: "#F2F2F2",
426
- fillRule: "nonzero"
427
- }
428
- ), /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(100.546, 55.5688)" }, /* @__PURE__ */ import_react.default.createElement(
429
- "path",
430
- {
431
- d: "M10.7914603,1.06875 L0.291460333,19.25625 C-0.533539667,20.68125 0.491460333,22.44375 2.12896033,22.44375 L23.1289603,22.44375 C24.7664603,22.44375 25.7914603,20.66875 24.9664603,19.25625 L14.4664603,1.06875 C13.6414603,-0.35625 11.6039603,-0.35625 10.7789603,1.06875 L10.7914603,1.06875 Z",
432
- fill: "#CCCCCC",
433
- fillRule: "nonzero"
434
- }
435
- ), /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(11.1157, 8.6187)", fill: "#FFFFFF" }, /* @__PURE__ */ import_react.default.createElement("path", { d: "M0.388226947,0 L2.63822695,0 C2.85072695,0 3.02572695,0.175 3.02572695,0.3875 C3.02572695,0.3875 3.02572695,0.4125 3.02572695,0.425 L2.47572695,7.15 C2.46322695,7.35 2.28822695,7.5 2.08822695,7.5 L0.938226947,7.5 C0.738226947,7.5 0.563226947,7.35 0.550726947,7.15 L0.00072694688,0.425 C-0.0117730531,0.2125 0.138226947,0.025 0.350726947,0.0125 C0.350726947,0.0125 0.375726947,0.0125 0.388226947,0.0125 L0.388226947,0 Z" }), /* @__PURE__ */ import_react.default.createElement(
436
- "rect",
437
- {
438
- fillRule: "nonzero",
439
- x: "0.588226947",
440
- y: "8.2375",
441
- width: "1.8625",
442
- height: "1.8625",
443
- rx: "0.3875"
444
- }
445
- ))), /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(121.596, 95.8813)" }, /* @__PURE__ */ import_react.default.createElement(
446
- "path",
447
- {
448
- d: "M10.7914603,1.06875 L0.291460333,19.25625 C-0.533539667,20.68125 0.491460333,22.44375 2.12896033,22.44375 L23.1289603,22.44375 C24.7664603,22.44375 25.7914603,20.66875 24.9664603,19.25625 L14.4664603,1.06875 C13.6414603,-0.35625 11.6039603,-0.35625 10.7789603,1.06875 L10.7914603,1.06875 Z",
449
- fill: "#CCCCCC",
450
- fillRule: "nonzero"
451
- }
452
- ), /* @__PURE__ */ import_react.default.createElement("g", { transform: "translate(11.1157, 8.6187)", fill: "#FFFFFF" }, /* @__PURE__ */ import_react.default.createElement("path", { d: "M0.388226947,0 L2.63822695,0 C2.85072695,0 3.02572695,0.175 3.02572695,0.3875 C3.02572695,0.3875 3.02572695,0.4125 3.02572695,0.425 L2.47572695,7.15 C2.46322695,7.35 2.28822695,7.5 2.08822695,7.5 L0.938226947,7.5 C0.738226947,7.5 0.563226947,7.35 0.550726947,7.15 L0.00072694688,0.425 C-0.0117730531,0.2125 0.138226947,0.025 0.350726947,0.0125 C0.350726947,0.0125 0.375726947,0.0125 0.388226947,0.0125 L0.388226947,0 Z" }), /* @__PURE__ */ import_react.default.createElement(
453
- "rect",
454
- {
455
- fillRule: "nonzero",
456
- x: "0.588226947",
457
- y: "8.25",
458
- width: "1.8625",
459
- height: "1.8625",
460
- rx: "0.3875"
461
- }
462
- ))), /* @__PURE__ */ import_react.default.createElement(
463
- "path",
464
- {
465
- d: "M97.9125,30.7 C94.35,30.7 91.4625,33.5875 91.4625,37.15 L91.4625,42.0375 L148.275,42.0375 C147.6875,37.975 146.35,34.15 144.4125,30.7 L97.9125,30.7 L97.9125,30.7 Z",
466
- fill: "#132039",
467
- fillRule: "nonzero"
468
- }
469
- ), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "97.55", cy: "36.3625", r: "1.725" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "102.85", cy: "36.3625", r: "1.725" }), /* @__PURE__ */ import_react.default.createElement("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "108.1375", cy: "36.3625", r: "1.725" }), /* @__PURE__ */ import_react.default.createElement(
470
- "rect",
471
- {
472
- fill: "#E6E6E6",
473
- fillRule: "nonzero",
474
- x: "100.0875",
475
- y: "50.25",
476
- width: "26.4875",
477
- height: "3.4875",
478
- rx: "1.225"
479
- }
480
- ), /* @__PURE__ */ import_react.default.createElement(
481
- "path",
482
- {
483
- d: "M130.9625,50.25 L148.275,50.25 L148.275,53.7375 L130.9625,53.7375 C130.2875,53.7375 129.7375,53.1875 129.7375,52.5125 L129.7375,51.4875 C129.7375,50.8125 130.2875,50.2625 130.9625,50.2625 L130.9625,50.25 Z",
484
- fill: "#E6E6E6",
485
- fillRule: "nonzero"
486
- }
487
- ), /* @__PURE__ */ import_react.default.createElement(
488
- "path",
489
- {
490
- d: "M123.725,58.2625 L148.275,58.2625 L148.275,61.75 L123.725,61.75 C123.05,61.75 122.5,61.2 122.5,60.525 L122.5,59.5 C122.5,58.825 123.05,58.275 123.725,58.275 L123.725,58.2625 Z",
491
- fill: "#E6E6E6",
492
- fillRule: "nonzero"
493
- }
494
- ), /* @__PURE__ */ import_react.default.createElement(
495
- "path",
496
- {
497
- d: "M131.025,66.275 L148.275,66.275 L148.275,69.7625 L131.025,69.7625 C130.35,69.7625 129.8,69.2125 129.8,68.5375 L129.8,67.5125 C129.8,66.8375 130.35,66.2875 131.025,66.2875 L131.025,66.275 Z",
498
- fill: "#E6E6E6",
499
- fillRule: "nonzero"
500
- }
501
- ), /* @__PURE__ */ import_react.default.createElement(
502
- "path",
503
- {
504
- d: "M131.025,74.2875 L148.275,74.2875 L148.275,77.775 L131.025,77.775 C130.35,77.775 129.8,77.225 129.8,76.55 L129.8,75.525 C129.8,74.85 130.35,74.3 131.025,74.3 L131.025,74.2875 Z",
505
- fill: "#E6E6E6",
506
- fillRule: "nonzero"
507
- }
508
- ), /* @__PURE__ */ import_react.default.createElement(
509
- "path",
510
- {
511
- d: "M101.3125,82.3 L148.275,82.3 L148.275,85.7875 L101.3125,85.7875 C100.6375,85.7875 100.0875,85.2375 100.0875,84.5625 L100.0875,83.5375 C100.0875,82.8625 100.6375,82.3125 101.3125,82.3125 L101.3125,82.3 Z",
512
- fill: "#E6E6E6",
513
- fillRule: "nonzero"
514
- }
515
- ), /* @__PURE__ */ import_react.default.createElement(
516
- "path",
517
- {
518
- d: "M101.3125,90.3125 L148.275,90.3125 L148.275,93.8 L101.3125,93.8 C100.6375,93.8 100.0875,93.25 100.0875,92.575 L100.0875,91.55 C100.0875,90.875 100.6375,90.325 101.3125,90.325 L101.3125,90.3125 Z",
519
- fill: "#E6E6E6",
520
- fillRule: "nonzero"
521
- }
522
- ), /* @__PURE__ */ import_react.default.createElement(
523
- "rect",
524
- {
525
- fill: "#E6E6E6",
526
- fillRule: "nonzero",
527
- x: "100.0875",
528
- y: "98.325",
529
- width: "24.075",
530
- height: "3.4875",
531
- rx: "1.225"
532
- }
533
- ), /* @__PURE__ */ import_react.default.createElement(
534
- "rect",
535
- {
536
- fill: "#E6E6E6",
537
- fillRule: "nonzero",
538
- x: "100.0875",
539
- y: "106.3375",
540
- width: "17.9875",
541
- height: "3.4875",
542
- rx: "1.225"
543
- }
544
- ), /* @__PURE__ */ import_react.default.createElement(
545
- "rect",
546
- {
547
- fill: "#E6E6E6",
548
- fillRule: "nonzero",
549
- x: "100.0875",
550
- y: "114.35",
551
- width: "17.9875",
552
- height: "3.4875",
553
- rx: "1.225"
554
- }
555
- )))
44
+ xmlns: "http://www.w3.org/2000/svg",
45
+ children: [
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
47
+ "path",
48
+ {
49
+ d: "M33.1125,0 L100.6125,0 C118.8875,0 133.725,14.8375 133.725,33.1125 L133.725,118.0875 L33.1125,118.0875 C14.8375,118.0875 -4.4408921e-15,103.25 -4.4408921e-15,84.975 L-4.4408921e-15,33.1125 C-4.4408921e-15,14.8375 14.8375,0 33.1125,0 Z",
50
+ id: "oceanbase-design-result-warning-path-1"
51
+ }
52
+ ) }),
53
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(6, 14)", children: [
54
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
55
+ "path",
56
+ {
57
+ d: "M115.525,13.75 L48.025,13.75 C29.7375,13.75 14.9125,28.575 14.9125,46.8625 L14.9125,72.8 L49.5625,72.8 C50.15,72.8 50.6375,73.275 50.6375,73.875 L50.6375,88.1125 C50.6375,88.7 50.1625,89.1875 49.5625,89.1875 L48.0625,89.1875 L48.0625,91.6 L49.5625,91.6 C50.15,91.6 50.6375,92.075 50.6375,92.675 L50.6375,106.9125 C50.6375,107.5 50.1625,107.9875 49.5625,107.9875 L48.0625,107.9875 L48.0625,110.4 L49.5625,110.4 C50.15,110.4 50.6375,110.875 50.6375,111.475 L50.6375,130.65 C50.6375,131.2375 50.1625,131.725 49.5625,131.725 L45.0625,131.725 C46.0375,131.8125 47.025,131.8625 48.025,131.8625 L91.4625,131.8625 L91.4625,37.15 C91.4625,33.5875 94.35,30.7 97.9125,30.7 L144.4125,30.7 C138.75,20.5875 127.9375,13.75 115.525,13.75 Z",
58
+ fill: "#0181FD",
59
+ fillRule: "nonzero"
60
+ }
61
+ ),
62
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { id: "Clipped", transform: "translate(14.9125, 13.75)", children: [
63
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("mask", { id: "oceanbase-design-result-warning-mask-2", fill: "white", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("use", { href: "#oceanbase-design-result-warning-path-1" }) }),
64
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", {}),
65
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { mask: "url(#oceanbase-design-result-warning-mask-2)", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(-13.25, 47.0625)", children: [
66
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
67
+ "path",
68
+ {
69
+ d: "M76.075,40.3375 C85.7625,33.55 97.6875,18.85 104.2,0",
70
+ stroke: "#07C846",
71
+ strokeWidth: "2.0125"
72
+ }
73
+ ),
74
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
75
+ "path",
76
+ {
77
+ d: "M46.8,36.0375 C48.675,41.1 56.5625,49.7 69.95,43.7125",
78
+ stroke: "#07C846",
79
+ strokeWidth: "2.0125"
80
+ }
81
+ ),
82
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
83
+ "line",
84
+ {
85
+ x1: "66.525",
86
+ y1: "37.125",
87
+ x2: "69.475",
88
+ y2: "39.75",
89
+ stroke: "#FFA005",
90
+ strokeWidth: "2.475",
91
+ strokeLinecap: "round",
92
+ strokeLinejoin: "round"
93
+ }
94
+ ),
95
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
96
+ "line",
97
+ {
98
+ x1: "72.7",
99
+ y1: "33.1625",
100
+ x2: "73.0875",
101
+ y2: "38.075",
102
+ stroke: "#FFA005",
103
+ strokeWidth: "2.475",
104
+ strokeLinecap: "round",
105
+ strokeLinejoin: "round"
106
+ }
107
+ ),
108
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { stroke: "none", strokeWidth: "1", fillRule: "evenodd", transform: "translate(0, 11.975)", children: [
109
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
110
+ "rect",
111
+ {
112
+ fill: "#132039",
113
+ fillRule: "nonzero",
114
+ transform: "translate(24.4875, 26.3375) rotate(-180) translate(-24.4875, -26.3375)",
115
+ x: "2.575",
116
+ y: "13.0125",
117
+ width: "43.825",
118
+ height: "26.65"
119
+ }
120
+ ),
121
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
122
+ "rect",
123
+ {
124
+ fill: "#FFFFFF",
125
+ fillRule: "nonzero",
126
+ transform: "translate(24.4875, 48.25) rotate(-180) translate(-24.4875, -48.25)",
127
+ x: "0",
128
+ y: "37.5875",
129
+ width: "48.975",
130
+ height: "21.325",
131
+ rx: "1.075"
132
+ }
133
+ ),
134
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
135
+ "rect",
136
+ {
137
+ fill: "#07C846",
138
+ fillRule: "nonzero",
139
+ transform: "translate(24.4875, 48.25) rotate(-180) translate(-24.4875, -48.25)",
140
+ x: "0",
141
+ y: "37.5875",
142
+ width: "48.975",
143
+ height: "21.325",
144
+ rx: "1.075"
145
+ }
146
+ ),
147
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "45.3875", cy: "41.8", r: "1.2" }),
148
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "41.2375", cy: "41.8", r: "1.2" }),
149
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "37.0875", cy: "41.8", r: "1.2" }),
150
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
151
+ "rect",
152
+ {
153
+ fill: "#39D36B",
154
+ fillRule: "nonzero",
155
+ transform: "translate(27.0313, 45.9125) rotate(-180) translate(-27.0313, -45.9125)",
156
+ x: "25.8",
157
+ y: "40.5875",
158
+ width: "2.4625",
159
+ height: "10.65"
160
+ }
161
+ ),
162
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
163
+ "rect",
164
+ {
165
+ fill: "#39D36B",
166
+ fillRule: "nonzero",
167
+ transform: "translate(23.3562, 45.9125) rotate(-180) translate(-23.3562, -45.9125)",
168
+ x: "22.125",
169
+ y: "40.5875",
170
+ width: "2.4625",
171
+ height: "10.65"
172
+ }
173
+ ),
174
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
175
+ "rect",
176
+ {
177
+ fill: "#39D36B",
178
+ fillRule: "nonzero",
179
+ transform: "translate(19.6688, 45.9125) rotate(-180) translate(-19.6688, -45.9125)",
180
+ x: "18.4375",
181
+ y: "40.5875",
182
+ width: "2.4625",
183
+ height: "10.65"
184
+ }
185
+ ),
186
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
187
+ "rect",
188
+ {
189
+ fill: "#39D36B",
190
+ fillRule: "nonzero",
191
+ transform: "translate(15.9937, 45.9125) rotate(-180) translate(-15.9937, -45.9125)",
192
+ x: "14.7625",
193
+ y: "40.5875",
194
+ width: "2.4625",
195
+ height: "10.65"
196
+ }
197
+ ),
198
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
199
+ "rect",
200
+ {
201
+ fill: "#39D36B",
202
+ fillRule: "nonzero",
203
+ transform: "translate(12.3062, 45.9125) rotate(-180) translate(-12.3062, -45.9125)",
204
+ x: "11.075",
205
+ y: "40.5875",
206
+ width: "2.4625",
207
+ height: "10.65"
208
+ }
209
+ ),
210
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
211
+ "rect",
212
+ {
213
+ fill: "#39D36B",
214
+ fillRule: "nonzero",
215
+ transform: "translate(8.6312, 45.9125) rotate(-180) translate(-8.6312, -45.9125)",
216
+ x: "7.4",
217
+ y: "40.5875",
218
+ width: "2.4625",
219
+ height: "10.65"
220
+ }
221
+ ),
222
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
223
+ "rect",
224
+ {
225
+ fill: "#39D36B",
226
+ fillRule: "nonzero",
227
+ transform: "translate(4.9437, 45.9125) rotate(-180) translate(-4.9437, -45.9125)",
228
+ x: "3.7125",
229
+ y: "40.5875",
230
+ width: "2.4625",
231
+ height: "10.65"
232
+ }
233
+ ),
234
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(0, 18.7875)", fillRule: "nonzero", children: [
235
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
236
+ "rect",
237
+ {
238
+ fill: "#FFFFFF",
239
+ transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
240
+ x: "0",
241
+ y: "0",
242
+ width: "48.975",
243
+ height: "16.3875",
244
+ rx: "1.075"
245
+ }
246
+ ),
247
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
248
+ "rect",
249
+ {
250
+ fill: "#FFFFFF",
251
+ transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
252
+ x: "0",
253
+ y: "0",
254
+ width: "48.975",
255
+ height: "16.3875",
256
+ rx: "1.075"
257
+ }
258
+ ),
259
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#E6E6E6", cx: "45.3875", cy: "4", r: "1.2" }),
260
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#E6E6E6", cx: "41.2375", cy: "4", r: "1.2" }),
261
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#E6E6E6", cx: "37.0875", cy: "4", r: "1.2" }),
262
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
263
+ "rect",
264
+ {
265
+ fill: "#E6E6E6",
266
+ transform: "translate(27.0313, 8.8375) rotate(-180) translate(-27.0313, -8.8375)",
267
+ x: "25.8",
268
+ y: "3.5125",
269
+ width: "2.4625",
270
+ height: "10.65"
271
+ }
272
+ ),
273
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
274
+ "rect",
275
+ {
276
+ fill: "#E6E6E6",
277
+ transform: "translate(23.3562, 8.8375) rotate(-180) translate(-23.3562, -8.8375)",
278
+ x: "22.125",
279
+ y: "3.5125",
280
+ width: "2.4625",
281
+ height: "10.65"
282
+ }
283
+ ),
284
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
285
+ "rect",
286
+ {
287
+ fill: "#E6E6E6",
288
+ transform: "translate(19.6688, 8.8375) rotate(-180) translate(-19.6688, -8.8375)",
289
+ x: "18.4375",
290
+ y: "3.5125",
291
+ width: "2.4625",
292
+ height: "10.65"
293
+ }
294
+ ),
295
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
296
+ "rect",
297
+ {
298
+ fill: "#E6E6E6",
299
+ transform: "translate(15.9937, 8.8375) rotate(-180) translate(-15.9937, -8.8375)",
300
+ x: "14.7625",
301
+ y: "3.5125",
302
+ width: "2.4625",
303
+ height: "10.65"
304
+ }
305
+ ),
306
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
307
+ "rect",
308
+ {
309
+ fill: "#E6E6E6",
310
+ transform: "translate(12.3062, 8.8375) rotate(-180) translate(-12.3062, -8.8375)",
311
+ x: "11.075",
312
+ y: "3.5125",
313
+ width: "2.4625",
314
+ height: "10.65"
315
+ }
316
+ ),
317
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
318
+ "rect",
319
+ {
320
+ fill: "#E6E6E6",
321
+ transform: "translate(8.6312, 8.8375) rotate(-180) translate(-8.6312, -8.8375)",
322
+ x: "7.4",
323
+ y: "3.5125",
324
+ width: "2.4625",
325
+ height: "10.65"
326
+ }
327
+ ),
328
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
329
+ "rect",
330
+ {
331
+ fill: "#E6E6E6",
332
+ transform: "translate(4.9437, 8.8375) rotate(-180) translate(-4.9437, -8.8375)",
333
+ x: "3.7125",
334
+ y: "3.5125",
335
+ width: "2.4625",
336
+ height: "10.65"
337
+ }
338
+ )
339
+ ] }),
340
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { fillRule: "nonzero", children: [
341
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
342
+ "rect",
343
+ {
344
+ fill: "#FFFFFF",
345
+ transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
346
+ x: "0",
347
+ y: "0",
348
+ width: "48.975",
349
+ height: "16.3875",
350
+ rx: "1.075"
351
+ }
352
+ ),
353
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
354
+ "rect",
355
+ {
356
+ fill: "#FFFFFF",
357
+ transform: "translate(24.4875, 8.1938) rotate(-180) translate(-24.4875, -8.1938)",
358
+ x: "0",
359
+ y: "0",
360
+ width: "48.975",
361
+ height: "16.3875",
362
+ rx: "1.075"
363
+ }
364
+ ),
365
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#E6E6E6", cx: "45.3875", cy: "3.9875", r: "1.2" }),
366
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#E6E6E6", cx: "41.2375", cy: "3.9875", r: "1.2" }),
367
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#E6E6E6", cx: "37.0875", cy: "3.9875", r: "1.2" }),
368
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
369
+ "rect",
370
+ {
371
+ fill: "#E6E6E6",
372
+ transform: "translate(27.0313, 8.8375) rotate(-180) translate(-27.0313, -8.8375)",
373
+ x: "25.8",
374
+ y: "3.5125",
375
+ width: "2.4625",
376
+ height: "10.65"
377
+ }
378
+ ),
379
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
380
+ "rect",
381
+ {
382
+ fill: "#E6E6E6",
383
+ transform: "translate(23.3562, 8.8375) rotate(-180) translate(-23.3562, -8.8375)",
384
+ x: "22.125",
385
+ y: "3.5125",
386
+ width: "2.4625",
387
+ height: "10.65"
388
+ }
389
+ ),
390
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
391
+ "rect",
392
+ {
393
+ fill: "#E6E6E6",
394
+ transform: "translate(19.6688, 8.8375) rotate(-180) translate(-19.6688, -8.8375)",
395
+ x: "18.4375",
396
+ y: "3.5125",
397
+ width: "2.4625",
398
+ height: "10.65"
399
+ }
400
+ ),
401
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
402
+ "rect",
403
+ {
404
+ fill: "#E6E6E6",
405
+ transform: "translate(15.9937, 8.8375) rotate(-180) translate(-15.9937, -8.8375)",
406
+ x: "14.7625",
407
+ y: "3.5125",
408
+ width: "2.4625",
409
+ height: "10.65"
410
+ }
411
+ ),
412
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
413
+ "rect",
414
+ {
415
+ fill: "#E6E6E6",
416
+ transform: "translate(12.3062, 8.8375) rotate(-180) translate(-12.3062, -8.8375)",
417
+ x: "11.075",
418
+ y: "3.5125",
419
+ width: "2.4625",
420
+ height: "10.65"
421
+ }
422
+ ),
423
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
424
+ "rect",
425
+ {
426
+ fill: "#E6E6E6",
427
+ transform: "translate(8.6312, 8.8375) rotate(-180) translate(-8.6312, -8.8375)",
428
+ x: "7.4",
429
+ y: "3.5125",
430
+ width: "2.4625",
431
+ height: "10.65"
432
+ }
433
+ ),
434
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
435
+ "rect",
436
+ {
437
+ fill: "#E6E6E6",
438
+ transform: "translate(4.9437, 8.8375) rotate(-180) translate(-4.9437, -8.8375)",
439
+ x: "3.7125",
440
+ y: "3.5125",
441
+ width: "2.4625",
442
+ height: "10.65"
443
+ }
444
+ )
445
+ ] })
446
+ ] }),
447
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
448
+ "g",
449
+ {
450
+ stroke: "none",
451
+ strokeWidth: "1",
452
+ fillRule: "evenodd",
453
+ transform: "translate(36.825, 4.0375)",
454
+ children: [
455
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
456
+ "path",
457
+ {
458
+ d: "M4.4125,0 L4.4125,0 C6.85,0 8.825,1.975 8.825,4.4125 L8.825,7.95 L0,7.95 L0,4.4125 C0,1.975 1.975,0 4.4125,0 Z",
459
+ fill: "#FFA005",
460
+ fillRule: "nonzero"
461
+ }
462
+ ),
463
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "3.0375", cy: "3.4", r: "1.7" })
464
+ ]
465
+ }
466
+ )
467
+ ] }) })
468
+ ] }),
469
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
470
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFA005", fillRule: "nonzero", cx: "24.7375", cy: "24.7375", r: "24.7375" }),
471
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(21.5222, 13.9875)", fill: "#FFFFFF", children: [
472
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M0.815346205,0 L5.61534621,0 C6.06534621,0 6.44034621,0.3625 6.44034621,0.825 C6.44034621,0.85 6.44034621,0.875 6.44034621,0.8875 L5.26534621,15.1875 C5.22784621,15.6125 4.87784621,15.9375 4.44034621,15.9375 L2.00284621,15.9375 C1.57784621,15.9375 1.21534621,15.6125 1.17784621,15.1875 L0.00284620526,0.8875 C-0.0346537947,0.4375 0.302846205,0.0375 0.752846205,0 C0.777846205,0 0.802846205,0 0.815346205,0 Z" }),
473
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
474
+ "rect",
475
+ {
476
+ fillRule: "nonzero",
477
+ x: "1.24034621",
478
+ y: "17.55",
479
+ width: "3.95",
480
+ height: "3.95",
481
+ rx: "0.825"
482
+ }
483
+ )
484
+ ] })
485
+ ] }),
486
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
487
+ "path",
488
+ {
489
+ d: "M148.625,46.8625 C148.625,40.9875 147.0875,35.4875 144.4125,30.7 L97.9125,30.7 C94.35,30.7 91.4625,33.5875 91.4625,37.15 L91.4625,131.8375 L148.6375,131.8375 L148.6375,46.8625 L148.625,46.8625 Z",
490
+ fill: "#F2F2F2",
491
+ fillRule: "nonzero"
492
+ }
493
+ ),
494
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(100.546, 55.5688)", children: [
495
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
496
+ "path",
497
+ {
498
+ d: "M10.7914603,1.06875 L0.291460333,19.25625 C-0.533539667,20.68125 0.491460333,22.44375 2.12896033,22.44375 L23.1289603,22.44375 C24.7664603,22.44375 25.7914603,20.66875 24.9664603,19.25625 L14.4664603,1.06875 C13.6414603,-0.35625 11.6039603,-0.35625 10.7789603,1.06875 L10.7914603,1.06875 Z",
499
+ fill: "#CCCCCC",
500
+ fillRule: "nonzero"
501
+ }
502
+ ),
503
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(11.1157, 8.6187)", fill: "#FFFFFF", children: [
504
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M0.388226947,0 L2.63822695,0 C2.85072695,0 3.02572695,0.175 3.02572695,0.3875 C3.02572695,0.3875 3.02572695,0.4125 3.02572695,0.425 L2.47572695,7.15 C2.46322695,7.35 2.28822695,7.5 2.08822695,7.5 L0.938226947,7.5 C0.738226947,7.5 0.563226947,7.35 0.550726947,7.15 L0.00072694688,0.425 C-0.0117730531,0.2125 0.138226947,0.025 0.350726947,0.0125 C0.350726947,0.0125 0.375726947,0.0125 0.388226947,0.0125 L0.388226947,0 Z" }),
505
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
506
+ "rect",
507
+ {
508
+ fillRule: "nonzero",
509
+ x: "0.588226947",
510
+ y: "8.2375",
511
+ width: "1.8625",
512
+ height: "1.8625",
513
+ rx: "0.3875"
514
+ }
515
+ )
516
+ ] })
517
+ ] }),
518
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(121.596, 95.8813)", children: [
519
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
520
+ "path",
521
+ {
522
+ d: "M10.7914603,1.06875 L0.291460333,19.25625 C-0.533539667,20.68125 0.491460333,22.44375 2.12896033,22.44375 L23.1289603,22.44375 C24.7664603,22.44375 25.7914603,20.66875 24.9664603,19.25625 L14.4664603,1.06875 C13.6414603,-0.35625 11.6039603,-0.35625 10.7789603,1.06875 L10.7914603,1.06875 Z",
523
+ fill: "#CCCCCC",
524
+ fillRule: "nonzero"
525
+ }
526
+ ),
527
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "translate(11.1157, 8.6187)", fill: "#FFFFFF", children: [
528
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M0.388226947,0 L2.63822695,0 C2.85072695,0 3.02572695,0.175 3.02572695,0.3875 C3.02572695,0.3875 3.02572695,0.4125 3.02572695,0.425 L2.47572695,7.15 C2.46322695,7.35 2.28822695,7.5 2.08822695,7.5 L0.938226947,7.5 C0.738226947,7.5 0.563226947,7.35 0.550726947,7.15 L0.00072694688,0.425 C-0.0117730531,0.2125 0.138226947,0.025 0.350726947,0.0125 C0.350726947,0.0125 0.375726947,0.0125 0.388226947,0.0125 L0.388226947,0 Z" }),
529
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
530
+ "rect",
531
+ {
532
+ fillRule: "nonzero",
533
+ x: "0.588226947",
534
+ y: "8.25",
535
+ width: "1.8625",
536
+ height: "1.8625",
537
+ rx: "0.3875"
538
+ }
539
+ )
540
+ ] })
541
+ ] }),
542
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
543
+ "path",
544
+ {
545
+ d: "M97.9125,30.7 C94.35,30.7 91.4625,33.5875 91.4625,37.15 L91.4625,42.0375 L148.275,42.0375 C147.6875,37.975 146.35,34.15 144.4125,30.7 L97.9125,30.7 L97.9125,30.7 Z",
546
+ fill: "#132039",
547
+ fillRule: "nonzero"
548
+ }
549
+ ),
550
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "97.55", cy: "36.3625", r: "1.725" }),
551
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "102.85", cy: "36.3625", r: "1.725" }),
552
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { fill: "#FFFFFF", fillRule: "nonzero", cx: "108.1375", cy: "36.3625", r: "1.725" }),
553
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
554
+ "rect",
555
+ {
556
+ fill: "#E6E6E6",
557
+ fillRule: "nonzero",
558
+ x: "100.0875",
559
+ y: "50.25",
560
+ width: "26.4875",
561
+ height: "3.4875",
562
+ rx: "1.225"
563
+ }
564
+ ),
565
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
566
+ "path",
567
+ {
568
+ d: "M130.9625,50.25 L148.275,50.25 L148.275,53.7375 L130.9625,53.7375 C130.2875,53.7375 129.7375,53.1875 129.7375,52.5125 L129.7375,51.4875 C129.7375,50.8125 130.2875,50.2625 130.9625,50.2625 L130.9625,50.25 Z",
569
+ fill: "#E6E6E6",
570
+ fillRule: "nonzero"
571
+ }
572
+ ),
573
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
574
+ "path",
575
+ {
576
+ d: "M123.725,58.2625 L148.275,58.2625 L148.275,61.75 L123.725,61.75 C123.05,61.75 122.5,61.2 122.5,60.525 L122.5,59.5 C122.5,58.825 123.05,58.275 123.725,58.275 L123.725,58.2625 Z",
577
+ fill: "#E6E6E6",
578
+ fillRule: "nonzero"
579
+ }
580
+ ),
581
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
582
+ "path",
583
+ {
584
+ d: "M131.025,66.275 L148.275,66.275 L148.275,69.7625 L131.025,69.7625 C130.35,69.7625 129.8,69.2125 129.8,68.5375 L129.8,67.5125 C129.8,66.8375 130.35,66.2875 131.025,66.2875 L131.025,66.275 Z",
585
+ fill: "#E6E6E6",
586
+ fillRule: "nonzero"
587
+ }
588
+ ),
589
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
590
+ "path",
591
+ {
592
+ d: "M131.025,74.2875 L148.275,74.2875 L148.275,77.775 L131.025,77.775 C130.35,77.775 129.8,77.225 129.8,76.55 L129.8,75.525 C129.8,74.85 130.35,74.3 131.025,74.3 L131.025,74.2875 Z",
593
+ fill: "#E6E6E6",
594
+ fillRule: "nonzero"
595
+ }
596
+ ),
597
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
598
+ "path",
599
+ {
600
+ d: "M101.3125,82.3 L148.275,82.3 L148.275,85.7875 L101.3125,85.7875 C100.6375,85.7875 100.0875,85.2375 100.0875,84.5625 L100.0875,83.5375 C100.0875,82.8625 100.6375,82.3125 101.3125,82.3125 L101.3125,82.3 Z",
601
+ fill: "#E6E6E6",
602
+ fillRule: "nonzero"
603
+ }
604
+ ),
605
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
606
+ "path",
607
+ {
608
+ d: "M101.3125,90.3125 L148.275,90.3125 L148.275,93.8 L101.3125,93.8 C100.6375,93.8 100.0875,93.25 100.0875,92.575 L100.0875,91.55 C100.0875,90.875 100.6375,90.325 101.3125,90.325 L101.3125,90.3125 Z",
609
+ fill: "#E6E6E6",
610
+ fillRule: "nonzero"
611
+ }
612
+ ),
613
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
614
+ "rect",
615
+ {
616
+ fill: "#E6E6E6",
617
+ fillRule: "nonzero",
618
+ x: "100.0875",
619
+ y: "98.325",
620
+ width: "24.075",
621
+ height: "3.4875",
622
+ rx: "1.225"
623
+ }
624
+ ),
625
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
626
+ "rect",
627
+ {
628
+ fill: "#E6E6E6",
629
+ fillRule: "nonzero",
630
+ x: "100.0875",
631
+ y: "106.3375",
632
+ width: "17.9875",
633
+ height: "3.4875",
634
+ rx: "1.225"
635
+ }
636
+ ),
637
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
638
+ "rect",
639
+ {
640
+ fill: "#E6E6E6",
641
+ fillRule: "nonzero",
642
+ x: "100.0875",
643
+ y: "114.35",
644
+ width: "17.9875",
645
+ height: "3.4875",
646
+ rx: "1.225"
647
+ }
648
+ )
649
+ ] }) })
650
+ ]
651
+ }
556
652
  );
557
- var Warning = (props) => /* @__PURE__ */ import_react.default.createElement(import_icons.default, { component: WarningSvg, ...props });
653
+ var Warning = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_icons.default, { component: WarningSvg, ...props });
558
654
  var Warning_default = Warning;