rechtspilot-ui 1.3.1 → 1.4.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.
- package/dist/chunks-native.cjs +1 -1
- package/dist/chunks-native.js +149 -148
- package/dist/chunks.cjs +1 -1
- package/dist/chunks.js +8 -4
- package/dist/icons.native.cjs +1 -1
- package/dist/icons.native.es.js +1 -1
- package/dist/index.d.ts +8 -4
- package/dist/index.native.cjs +1 -1
- package/dist/index.native.es.js +437 -121
- package/dist/native/components/IconButton/IconButton.native.d.ts +8 -0
- package/dist/native/components/Input/Input.native.d.ts +3 -3
- package/dist/native/components/Select/Select.native.d.ts +13 -0
- package/dist/native/components/Sheet/Sheet.native.d.ts +10 -0
- package/dist/native/components/Text/Text.native.d.ts +9 -0
- package/dist/native/index.native.d.ts +10 -0
- package/dist/native/lib/theme.d.ts +8 -4
- package/dist/native/lib/ui/command.d.ts +1 -1
- package/package.json +6 -2
package/dist/chunks-native.js
CHANGED
|
@@ -93,26 +93,71 @@ var u = Object.defineProperty, ee = (e, t) => {
|
|
|
93
93
|
coralTint: "hsla(17, 100%, 85%, 1)",
|
|
94
94
|
signatureInk: "hsla(222, 77%, 51%, 1)"
|
|
95
95
|
}, te = {
|
|
96
|
+
heading: {
|
|
97
|
+
fontFamily: "Lora",
|
|
98
|
+
fontWeight: "500"
|
|
99
|
+
},
|
|
96
100
|
title: {
|
|
97
101
|
fontFamily: "Lora",
|
|
98
|
-
fontWeight: 500
|
|
102
|
+
fontWeight: "500"
|
|
99
103
|
},
|
|
100
104
|
label: {
|
|
101
105
|
fontFamily: "Inter",
|
|
102
|
-
fontWeight: 500
|
|
106
|
+
fontWeight: "500"
|
|
103
107
|
},
|
|
104
108
|
body: {
|
|
105
109
|
fontFamily: "Inter",
|
|
106
|
-
fontWeight: 400
|
|
110
|
+
fontWeight: "400"
|
|
107
111
|
},
|
|
108
112
|
caption: {
|
|
109
113
|
fontFamily: "Inter",
|
|
110
|
-
fontWeight: 600
|
|
114
|
+
fontWeight: "600"
|
|
111
115
|
}
|
|
112
|
-
}
|
|
116
|
+
}, m = (e) => e === "small" ? "24" : e === "large" ? "64" : isNaN(Number(e)) ? "24" : `${e}`;
|
|
117
|
+
//#endregion
|
|
118
|
+
//#region src/icons/native/Chevron.native.tsx
|
|
119
|
+
function h({ color: e = p.primary[900], size: n = "small", direction: r = "right", ...i }) {
|
|
120
|
+
return /* @__PURE__ */ t(l, {
|
|
121
|
+
width: m(n),
|
|
122
|
+
height: m(n),
|
|
123
|
+
viewBox: "0 0 24 24",
|
|
124
|
+
fill: "none",
|
|
125
|
+
style: { transform: [{ rotate: (() => {
|
|
126
|
+
switch (r) {
|
|
127
|
+
case "right": return "180deg";
|
|
128
|
+
case "up": return "90deg";
|
|
129
|
+
case "down": return "-90deg";
|
|
130
|
+
default: return "0deg";
|
|
131
|
+
}
|
|
132
|
+
})() }] },
|
|
133
|
+
...i,
|
|
134
|
+
children: /* @__PURE__ */ t(s, {
|
|
135
|
+
d: "M14.2929 19.7071C14.6834 20.0976 15.3166 20.0976 15.7071 19.7071C16.0976 19.3166 16.0976 18.6834 15.7071 18.2929L14.2929 19.7071ZM8 12L7.29289 11.2929C7.10536 11.4804 7 11.7348 7 12C7 12.2652 7.10536 12.5196 7.29289 12.7071L8 12ZM15.7071 5.70711C16.0976 5.31658 16.0976 4.68342 15.7071 4.29289C15.3166 3.90237 14.6834 3.90237 14.2929 4.29289L15.7071 5.70711ZM15.7071 18.2929L8.70711 11.2929L7.29289 12.7071L14.2929 19.7071L15.7071 18.2929ZM8.70711 12.7071L15.7071 5.70711L14.2929 4.29289L7.29289 11.2929L8.70711 12.7071Z",
|
|
136
|
+
fill: e
|
|
137
|
+
})
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
//#endregion
|
|
141
|
+
//#region src/icons/native/Close.native.tsx
|
|
142
|
+
function g({ color: e = p.primary[900], size: n = "small", ...r }) {
|
|
143
|
+
return /* @__PURE__ */ t(l, {
|
|
144
|
+
width: m(n),
|
|
145
|
+
height: m(n),
|
|
146
|
+
viewBox: "0 0 24 24",
|
|
147
|
+
fill: "none",
|
|
148
|
+
...r,
|
|
149
|
+
children: /* @__PURE__ */ t(s, {
|
|
150
|
+
d: "M7 7.00003L17 17M17 7.00003L7 17",
|
|
151
|
+
stroke: e,
|
|
152
|
+
strokeWidth: "2",
|
|
153
|
+
strokeLinecap: "round",
|
|
154
|
+
strokeLinejoin: "round"
|
|
155
|
+
})
|
|
156
|
+
});
|
|
157
|
+
}
|
|
113
158
|
//#endregion
|
|
114
159
|
//#region src/icons/native/ArrowUp.native.tsx
|
|
115
|
-
function
|
|
160
|
+
function _({ color: e = p.primary[800] }) {
|
|
116
161
|
return /* @__PURE__ */ t(l, {
|
|
117
162
|
width: "14",
|
|
118
163
|
height: "18",
|
|
@@ -129,14 +174,11 @@ function m({ color: e = p.primary[800] }) {
|
|
|
129
174
|
});
|
|
130
175
|
}
|
|
131
176
|
//#endregion
|
|
132
|
-
//#region src/lib/utils.ts
|
|
133
|
-
var h = (e) => e === "small" ? "24" : e === "large" ? "64" : isNaN(Number(e)) ? "24" : `${e}`;
|
|
134
|
-
//#endregion
|
|
135
177
|
//#region src/icons/native/Attach.native.tsx
|
|
136
|
-
function
|
|
178
|
+
function v({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
137
179
|
return /* @__PURE__ */ t(l, {
|
|
138
|
-
width:
|
|
139
|
-
height:
|
|
180
|
+
width: m(n),
|
|
181
|
+
height: m(n),
|
|
140
182
|
viewBox: "0 0 24 24",
|
|
141
183
|
fill: "none",
|
|
142
184
|
...r,
|
|
@@ -148,10 +190,10 @@ function g({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
|
148
190
|
}
|
|
149
191
|
//#endregion
|
|
150
192
|
//#region src/icons/native/Badge.native.tsx
|
|
151
|
-
function
|
|
193
|
+
function y({ color: e = p.primary[700], size: n = "small", ...r }) {
|
|
152
194
|
return /* @__PURE__ */ t(l, {
|
|
153
|
-
width:
|
|
154
|
-
height:
|
|
195
|
+
width: m(n),
|
|
196
|
+
height: m(n),
|
|
155
197
|
viewBox: "0 0 21 25",
|
|
156
198
|
fill: "none",
|
|
157
199
|
...r,
|
|
@@ -165,10 +207,10 @@ function _({ color: e = p.primary[700], size: n = "small", ...r }) {
|
|
|
165
207
|
}
|
|
166
208
|
//#endregion
|
|
167
209
|
//#region src/icons/native/Calendar.native.tsx
|
|
168
|
-
function
|
|
210
|
+
function b({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
169
211
|
return /* @__PURE__ */ t(l, {
|
|
170
|
-
width:
|
|
171
|
-
height:
|
|
212
|
+
width: m(n),
|
|
213
|
+
height: m(n),
|
|
172
214
|
viewBox: "0 0 24 24",
|
|
173
215
|
fill: "none",
|
|
174
216
|
...r,
|
|
@@ -183,10 +225,10 @@ function v({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
|
183
225
|
}
|
|
184
226
|
//#endregion
|
|
185
227
|
//#region src/icons/native/Check.native.tsx
|
|
186
|
-
function
|
|
228
|
+
function x({ color: e = p.sf.primary, size: n = "small", ...r }) {
|
|
187
229
|
return /* @__PURE__ */ t(l, {
|
|
188
|
-
width:
|
|
189
|
-
height:
|
|
230
|
+
width: m(n),
|
|
231
|
+
height: m(n),
|
|
190
232
|
viewBox: "0 0 24 24",
|
|
191
233
|
fill: "none",
|
|
192
234
|
...r,
|
|
@@ -201,10 +243,10 @@ function y({ color: e = p.sf.primary, size: n = "small", ...r }) {
|
|
|
201
243
|
}
|
|
202
244
|
//#endregion
|
|
203
245
|
//#region src/icons/native/CheckCircle.native.tsx
|
|
204
|
-
function
|
|
246
|
+
function S({ size: e = "small", color: n = p.primary[600], ...r }) {
|
|
205
247
|
return /* @__PURE__ */ t(l, {
|
|
206
|
-
width:
|
|
207
|
-
height:
|
|
248
|
+
width: m(e),
|
|
249
|
+
height: m(e),
|
|
208
250
|
viewBox: "0 0 24 24",
|
|
209
251
|
fill: "none",
|
|
210
252
|
...r,
|
|
@@ -218,34 +260,11 @@ function b({ size: e = "small", color: n = p.primary[600], ...r }) {
|
|
|
218
260
|
});
|
|
219
261
|
}
|
|
220
262
|
//#endregion
|
|
221
|
-
//#region src/icons/native/Chevron.native.tsx
|
|
222
|
-
function x({ color: e = p.primary[900], size: n = "small", direction: r = "right", ...i }) {
|
|
223
|
-
return /* @__PURE__ */ t(l, {
|
|
224
|
-
width: h(n),
|
|
225
|
-
height: h(n),
|
|
226
|
-
viewBox: "0 0 24 24",
|
|
227
|
-
fill: "none",
|
|
228
|
-
style: { transform: [{ rotate: (() => {
|
|
229
|
-
switch (r) {
|
|
230
|
-
case "right": return "180deg";
|
|
231
|
-
case "up": return "90deg";
|
|
232
|
-
case "down": return "-90deg";
|
|
233
|
-
default: return "0deg";
|
|
234
|
-
}
|
|
235
|
-
})() }] },
|
|
236
|
-
...i,
|
|
237
|
-
children: /* @__PURE__ */ t(s, {
|
|
238
|
-
d: "M14.2929 19.7071C14.6834 20.0976 15.3166 20.0976 15.7071 19.7071C16.0976 19.3166 16.0976 18.6834 15.7071 18.2929L14.2929 19.7071ZM8 12L7.29289 11.2929C7.10536 11.4804 7 11.7348 7 12C7 12.2652 7.10536 12.5196 7.29289 12.7071L8 12ZM15.7071 5.70711C16.0976 5.31658 16.0976 4.68342 15.7071 4.29289C15.3166 3.90237 14.6834 3.90237 14.2929 4.29289L15.7071 5.70711ZM15.7071 18.2929L8.70711 11.2929L7.29289 12.7071L14.2929 19.7071L15.7071 18.2929ZM8.70711 12.7071L15.7071 5.70711L14.2929 4.29289L7.29289 11.2929L8.70711 12.7071Z",
|
|
239
|
-
fill: e
|
|
240
|
-
})
|
|
241
|
-
});
|
|
242
|
-
}
|
|
243
|
-
//#endregion
|
|
244
263
|
//#region src/icons/native/Clock.native.tsx
|
|
245
|
-
function
|
|
264
|
+
function C({ color: e = p.fg.tertiary, size: i = 14, ...a }) {
|
|
246
265
|
return /* @__PURE__ */ n(l, {
|
|
247
|
-
width:
|
|
248
|
-
height:
|
|
266
|
+
width: m(i),
|
|
267
|
+
height: m(i),
|
|
249
268
|
viewBox: "0 0 14 14",
|
|
250
269
|
fill: "none",
|
|
251
270
|
...a,
|
|
@@ -265,29 +284,11 @@ function S({ color: e = p.fg.tertiary, size: i = 14, ...a }) {
|
|
|
265
284
|
});
|
|
266
285
|
}
|
|
267
286
|
//#endregion
|
|
268
|
-
//#region src/icons/native/Close.native.tsx
|
|
269
|
-
function C({ color: e = p.primary[900], size: n = "small", ...r }) {
|
|
270
|
-
return /* @__PURE__ */ t(l, {
|
|
271
|
-
width: h(n),
|
|
272
|
-
height: h(n),
|
|
273
|
-
viewBox: "0 0 24 24",
|
|
274
|
-
fill: "none",
|
|
275
|
-
...r,
|
|
276
|
-
children: /* @__PURE__ */ t(s, {
|
|
277
|
-
d: "M7 7.00003L17 17M17 7.00003L7 17",
|
|
278
|
-
stroke: e,
|
|
279
|
-
strokeWidth: "2",
|
|
280
|
-
strokeLinecap: "round",
|
|
281
|
-
strokeLinejoin: "round"
|
|
282
|
-
})
|
|
283
|
-
});
|
|
284
|
-
}
|
|
285
|
-
//#endregion
|
|
286
287
|
//#region src/icons/native/Cloud.native.tsx
|
|
287
288
|
function w({ size: e = "small", color: n = p.primary[900], ...r }) {
|
|
288
289
|
return /* @__PURE__ */ t(l, {
|
|
289
|
-
width:
|
|
290
|
-
height:
|
|
290
|
+
width: m(e),
|
|
291
|
+
height: m(e),
|
|
291
292
|
viewBox: "0 0 24 24",
|
|
292
293
|
fill: "none",
|
|
293
294
|
...r,
|
|
@@ -304,8 +305,8 @@ function w({ size: e = "small", color: n = p.primary[900], ...r }) {
|
|
|
304
305
|
//#region src/icons/native/Compose.native.tsx
|
|
305
306
|
function T({ color: e = p.primary[900], size: r = "small", ...i }) {
|
|
306
307
|
return /* @__PURE__ */ n(l, {
|
|
307
|
-
width:
|
|
308
|
-
height:
|
|
308
|
+
width: m(r),
|
|
309
|
+
height: m(r),
|
|
309
310
|
viewBox: "0 0 24 24",
|
|
310
311
|
fill: "none",
|
|
311
312
|
...i,
|
|
@@ -325,8 +326,8 @@ function T({ color: e = p.primary[900], size: r = "small", ...i }) {
|
|
|
325
326
|
//#region src/icons/native/Copy.native.tsx
|
|
326
327
|
function E({ size: e = "small", color: n = p.primary[900], ...r }) {
|
|
327
328
|
return /* @__PURE__ */ t(l, {
|
|
328
|
-
width:
|
|
329
|
-
height:
|
|
329
|
+
width: m(e),
|
|
330
|
+
height: m(e),
|
|
330
331
|
viewBox: "0 0 24 24",
|
|
331
332
|
fill: "none",
|
|
332
333
|
...r,
|
|
@@ -343,8 +344,8 @@ function E({ size: e = "small", color: n = p.primary[900], ...r }) {
|
|
|
343
344
|
//#region src/icons/native/Data.native.tsx
|
|
344
345
|
function D({ color: e = p.primary[900], size: r = "small", ...i }) {
|
|
345
346
|
return /* @__PURE__ */ n(l, {
|
|
346
|
-
width:
|
|
347
|
-
height:
|
|
347
|
+
width: m(r),
|
|
348
|
+
height: m(r),
|
|
348
349
|
viewBox: "0 0 24 24",
|
|
349
350
|
fill: "none",
|
|
350
351
|
...i,
|
|
@@ -364,8 +365,8 @@ function D({ color: e = p.primary[900], size: r = "small", ...i }) {
|
|
|
364
365
|
//#region src/icons/native/DoubleChevron.native.tsx
|
|
365
366
|
function O({ color: e = p.primary[900], size: n = "small", direction: r = "right", ...i }) {
|
|
366
367
|
return /* @__PURE__ */ t(l, {
|
|
367
|
-
width:
|
|
368
|
-
height:
|
|
368
|
+
width: m(n),
|
|
369
|
+
height: m(n),
|
|
369
370
|
viewBox: "0 0 24 24",
|
|
370
371
|
fill: "none",
|
|
371
372
|
style: { transform: r === "left" ? [{ rotate: "180deg" }] : [] },
|
|
@@ -382,8 +383,8 @@ function O({ color: e = p.primary[900], size: n = "small", direction: r = "right
|
|
|
382
383
|
//#region src/icons/native/Download.native.tsx
|
|
383
384
|
function k({ size: e = "small", color: r = p.fg.accent.action, ...i }) {
|
|
384
385
|
return /* @__PURE__ */ n(l, {
|
|
385
|
-
width:
|
|
386
|
-
height:
|
|
386
|
+
width: m(e),
|
|
387
|
+
height: m(e),
|
|
387
388
|
viewBox: "0 0 24 24",
|
|
388
389
|
fill: "none",
|
|
389
390
|
...i,
|
|
@@ -406,8 +407,8 @@ function k({ size: e = "small", color: r = p.fg.accent.action, ...i }) {
|
|
|
406
407
|
//#region src/icons/native/Edit.native.tsx
|
|
407
408
|
function A({ size: e = "small", color: r = p.fg.tertiary, ...i }) {
|
|
408
409
|
return /* @__PURE__ */ n(l, {
|
|
409
|
-
width:
|
|
410
|
-
height:
|
|
410
|
+
width: m(e),
|
|
411
|
+
height: m(e),
|
|
411
412
|
viewBox: "0 0 24 24",
|
|
412
413
|
fill: "none",
|
|
413
414
|
...i,
|
|
@@ -451,8 +452,8 @@ function j({ color: e = p.fg.tertiary, ...n }) {
|
|
|
451
452
|
//#region src/icons/native/Email.native.tsx
|
|
452
453
|
function M({ color: e = p.primary[900], size: n = "small", ...r }) {
|
|
453
454
|
return /* @__PURE__ */ t(l, {
|
|
454
|
-
width:
|
|
455
|
-
height:
|
|
455
|
+
width: m(n),
|
|
456
|
+
height: m(n),
|
|
456
457
|
viewBox: "0 0 24 24",
|
|
457
458
|
fill: "none",
|
|
458
459
|
...r,
|
|
@@ -466,8 +467,8 @@ function M({ color: e = p.primary[900], size: n = "small", ...r }) {
|
|
|
466
467
|
//#region src/icons/native/Enter.native.tsx
|
|
467
468
|
function N({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
468
469
|
return /* @__PURE__ */ t(l, {
|
|
469
|
-
width:
|
|
470
|
-
height:
|
|
470
|
+
width: m(n),
|
|
471
|
+
height: m(n),
|
|
471
472
|
viewBox: "0 0 24 24",
|
|
472
473
|
fill: "none",
|
|
473
474
|
...r,
|
|
@@ -484,8 +485,8 @@ function N({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
|
484
485
|
//#region src/icons/native/ErrorCircle.native.tsx
|
|
485
486
|
function P({ size: e = "small", color: r = p.primary[600], ...i }) {
|
|
486
487
|
return /* @__PURE__ */ n(l, {
|
|
487
|
-
width:
|
|
488
|
-
height:
|
|
488
|
+
width: m(e),
|
|
489
|
+
height: m(e),
|
|
489
490
|
viewBox: "0 0 24 24",
|
|
490
491
|
fill: "none",
|
|
491
492
|
...i,
|
|
@@ -507,8 +508,8 @@ function P({ size: e = "small", color: r = p.primary[600], ...i }) {
|
|
|
507
508
|
//#region src/icons/native/Fax.native.tsx
|
|
508
509
|
function F({ color: e = p.fg.tertiary, size: r = "small", ...i }) {
|
|
509
510
|
return /* @__PURE__ */ n(l, {
|
|
510
|
-
width:
|
|
511
|
-
height:
|
|
511
|
+
width: m(r),
|
|
512
|
+
height: m(r),
|
|
512
513
|
viewBox: "0 0 58.6667 58.6667",
|
|
513
514
|
fill: e,
|
|
514
515
|
...i,
|
|
@@ -524,8 +525,8 @@ function F({ color: e = p.fg.tertiary, size: r = "small", ...i }) {
|
|
|
524
525
|
//#region src/icons/native/FileDownload.native.tsx
|
|
525
526
|
function I({ size: e = "small", color: n = p.fg.accent.action, ...r }) {
|
|
526
527
|
return /* @__PURE__ */ t(l, {
|
|
527
|
-
width:
|
|
528
|
-
height:
|
|
528
|
+
width: m(e),
|
|
529
|
+
height: m(e),
|
|
529
530
|
viewBox: "0 0 24 24",
|
|
530
531
|
fill: "none",
|
|
531
532
|
...r,
|
|
@@ -542,8 +543,8 @@ function I({ size: e = "small", color: n = p.fg.accent.action, ...r }) {
|
|
|
542
543
|
//#region src/icons/native/GenerateDoc.native.tsx
|
|
543
544
|
function ne({ color: e = p.primary[950], size: r = "small", ...i }) {
|
|
544
545
|
return /* @__PURE__ */ n(l, {
|
|
545
|
-
width:
|
|
546
|
-
height:
|
|
546
|
+
width: m(r),
|
|
547
|
+
height: m(r),
|
|
547
548
|
viewBox: "0 0 24 24",
|
|
548
549
|
fill: "none",
|
|
549
550
|
...i,
|
|
@@ -585,8 +586,8 @@ function ne({ color: e = p.primary[950], size: r = "small", ...i }) {
|
|
|
585
586
|
//#region src/icons/native/GenerateSignature.native.tsx
|
|
586
587
|
function L({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
587
588
|
return /* @__PURE__ */ t(l, {
|
|
588
|
-
width:
|
|
589
|
-
height:
|
|
589
|
+
width: m(n),
|
|
590
|
+
height: m(n),
|
|
590
591
|
viewBox: "0 0 900 900",
|
|
591
592
|
preserveAspectRatio: "xMidYMid meet",
|
|
592
593
|
...r,
|
|
@@ -600,8 +601,8 @@ function L({ color: e = p.fg.tertiary, size: n = "small", ...r }) {
|
|
|
600
601
|
//#region src/icons/native/Home.native.tsx
|
|
601
602
|
function R({ color: e = p.white, size: r = "small", ...i }) {
|
|
602
603
|
return /* @__PURE__ */ n(l, {
|
|
603
|
-
width:
|
|
604
|
-
height:
|
|
604
|
+
width: m(r),
|
|
605
|
+
height: m(r),
|
|
605
606
|
viewBox: "0 0 32 32",
|
|
606
607
|
fill: "none",
|
|
607
608
|
...i,
|
|
@@ -649,8 +650,8 @@ function z({ color: e = "#7D8983", ...r }) {
|
|
|
649
650
|
//#region src/icons/native/Login.native.tsx
|
|
650
651
|
function B({ color: e = p.fg.accent.error, size: n = "small", ...r }) {
|
|
651
652
|
return /* @__PURE__ */ t(l, {
|
|
652
|
-
width:
|
|
653
|
-
height:
|
|
653
|
+
width: m(n),
|
|
654
|
+
height: m(n),
|
|
654
655
|
viewBox: "0 0 24 24",
|
|
655
656
|
fill: "none",
|
|
656
657
|
...r,
|
|
@@ -793,8 +794,8 @@ function H({ size: e = "large" }) {
|
|
|
793
794
|
//#region src/icons/native/Menu.native.tsx
|
|
794
795
|
function U({ color: e = p.primary[900], size: n = "small", ...r }) {
|
|
795
796
|
return /* @__PURE__ */ t(l, {
|
|
796
|
-
width:
|
|
797
|
-
height:
|
|
797
|
+
width: m(n),
|
|
798
|
+
height: m(n),
|
|
798
799
|
viewBox: "0 0 24 24",
|
|
799
800
|
fill: "none",
|
|
800
801
|
...r,
|
|
@@ -810,8 +811,8 @@ function U({ color: e = p.primary[900], size: n = "small", ...r }) {
|
|
|
810
811
|
//#region src/icons/native/Message.native.tsx
|
|
811
812
|
function W({ color: e = p.white, size: n = "small", ...r }) {
|
|
812
813
|
return /* @__PURE__ */ t(l, {
|
|
813
|
-
width:
|
|
814
|
-
height:
|
|
814
|
+
width: m(n),
|
|
815
|
+
height: m(n),
|
|
815
816
|
viewBox: "0 0 32 32",
|
|
816
817
|
fill: "none",
|
|
817
818
|
...r,
|
|
@@ -828,8 +829,8 @@ function W({ color: e = p.white, size: n = "small", ...r }) {
|
|
|
828
829
|
//#region src/icons/native/NoSignature.native.tsx
|
|
829
830
|
function G({ color: e = p.neutral[400], size: r = "small", ...i }) {
|
|
830
831
|
return /* @__PURE__ */ n(l, {
|
|
831
|
-
width:
|
|
832
|
-
height:
|
|
832
|
+
width: m(r),
|
|
833
|
+
height: m(r),
|
|
833
834
|
viewBox: "0 0 24 24",
|
|
834
835
|
fill: "none",
|
|
835
836
|
...i,
|
|
@@ -850,8 +851,8 @@ function G({ color: e = p.neutral[400], size: r = "small", ...i }) {
|
|
|
850
851
|
//#region src/icons/native/Peek.native.tsx
|
|
851
852
|
function K({ color: e = p.fg.tertiary, size: r = "small", ...i }) {
|
|
852
853
|
return /* @__PURE__ */ n(l, {
|
|
853
|
-
width:
|
|
854
|
-
height:
|
|
854
|
+
width: m(r),
|
|
855
|
+
height: m(r),
|
|
855
856
|
viewBox: "0 0 24 24",
|
|
856
857
|
fill: "none",
|
|
857
858
|
...i,
|
|
@@ -917,8 +918,8 @@ function q({ color: e = p.darkGreen, size: r = "small", ...i }) {
|
|
|
917
918
|
//#region src/icons/native/PostHorn.native.tsx
|
|
918
919
|
function J({ color: e = p.primary[950], size: r = 20, ...i }) {
|
|
919
920
|
return /* @__PURE__ */ n(l, {
|
|
920
|
-
width:
|
|
921
|
-
height:
|
|
921
|
+
width: m(r),
|
|
922
|
+
height: m(r),
|
|
922
923
|
viewBox: "0 0 20 20",
|
|
923
924
|
fill: "none",
|
|
924
925
|
...i,
|
|
@@ -950,8 +951,8 @@ function J({ color: e = p.primary[950], size: r = 20, ...i }) {
|
|
|
950
951
|
//#region src/icons/native/Radar.native.tsx
|
|
951
952
|
function Y({ color: e = p.neutral[300], size: i = 48, ...a }) {
|
|
952
953
|
return /* @__PURE__ */ n(l, {
|
|
953
|
-
width:
|
|
954
|
-
height:
|
|
954
|
+
width: m(i),
|
|
955
|
+
height: m(i),
|
|
955
956
|
viewBox: "0 0 48 48",
|
|
956
957
|
fill: "none",
|
|
957
958
|
...a,
|
|
@@ -1014,8 +1015,8 @@ function X({ color: e = p.fg.accent.action, ...n }) {
|
|
|
1014
1015
|
//#region src/icons/native/Rotate.native.tsx
|
|
1015
1016
|
function Z({ size: e = "small", color: n = p.primary[600], ...r }) {
|
|
1016
1017
|
return /* @__PURE__ */ t(l, {
|
|
1017
|
-
width:
|
|
1018
|
-
height:
|
|
1018
|
+
width: m(e),
|
|
1019
|
+
height: m(e),
|
|
1019
1020
|
viewBox: "0 0 24 24",
|
|
1020
1021
|
fill: "none",
|
|
1021
1022
|
...r,
|
|
@@ -1032,8 +1033,8 @@ function Z({ size: e = "small", color: n = p.primary[600], ...r }) {
|
|
|
1032
1033
|
//#region src/icons/native/Send.native.tsx
|
|
1033
1034
|
function Q({ size: e = "small", color: n = p.fg.accent.action, ...r }) {
|
|
1034
1035
|
return /* @__PURE__ */ t(l, {
|
|
1035
|
-
width:
|
|
1036
|
-
height:
|
|
1036
|
+
width: m(e),
|
|
1037
|
+
height: m(e),
|
|
1037
1038
|
viewBox: "0 0 24 24",
|
|
1038
1039
|
fill: "none",
|
|
1039
1040
|
...r,
|
|
@@ -1048,10 +1049,10 @@ function Q({ size: e = "small", color: n = p.fg.accent.action, ...r }) {
|
|
|
1048
1049
|
}
|
|
1049
1050
|
//#endregion
|
|
1050
1051
|
//#region src/icons/native/Signature.native.tsx
|
|
1051
|
-
function
|
|
1052
|
+
function re({ color: e = p.neutral[300], size: r = "small", ...i }) {
|
|
1052
1053
|
return /* @__PURE__ */ n(l, {
|
|
1053
|
-
width:
|
|
1054
|
-
height:
|
|
1054
|
+
width: m(r),
|
|
1055
|
+
height: m(r),
|
|
1055
1056
|
viewBox: "0 0 24 24",
|
|
1056
1057
|
fill: "none",
|
|
1057
1058
|
...i,
|
|
@@ -1082,10 +1083,10 @@ function $({ color: e = p.neutral[300], size: r = "small", ...i }) {
|
|
|
1082
1083
|
}
|
|
1083
1084
|
//#endregion
|
|
1084
1085
|
//#region src/icons/native/Sparkles.native.tsx
|
|
1085
|
-
function
|
|
1086
|
+
function ie({ color: e = p.primary[700], size: r = 16, ...u }) {
|
|
1086
1087
|
return /* @__PURE__ */ n(l, {
|
|
1087
|
-
width:
|
|
1088
|
-
height:
|
|
1088
|
+
width: m(r),
|
|
1089
|
+
height: m(r),
|
|
1089
1090
|
viewBox: "0 0 16 16",
|
|
1090
1091
|
fill: "none",
|
|
1091
1092
|
...u,
|
|
@@ -1110,10 +1111,10 @@ function re({ color: e = p.primary[700], size: r = 16, ...u }) {
|
|
|
1110
1111
|
}
|
|
1111
1112
|
//#endregion
|
|
1112
1113
|
//#region src/icons/native/Summary.native.tsx
|
|
1113
|
-
function
|
|
1114
|
+
function ae({ color: e = p.primary[700], size: n = 16, ...r }) {
|
|
1114
1115
|
return /* @__PURE__ */ t(l, {
|
|
1115
|
-
width:
|
|
1116
|
-
height:
|
|
1116
|
+
width: m(n),
|
|
1117
|
+
height: m(n),
|
|
1117
1118
|
viewBox: "0 0 16 16",
|
|
1118
1119
|
fill: "none",
|
|
1119
1120
|
...r,
|
|
@@ -1128,10 +1129,10 @@ function ie({ color: e = p.primary[700], size: n = 16, ...r }) {
|
|
|
1128
1129
|
}
|
|
1129
1130
|
//#endregion
|
|
1130
1131
|
//#region src/icons/native/User.native.tsx
|
|
1131
|
-
function
|
|
1132
|
+
function oe({ color: e = p.primary[900], size: i = "small", ...a }) {
|
|
1132
1133
|
return /* @__PURE__ */ n(l, {
|
|
1133
|
-
width:
|
|
1134
|
-
height:
|
|
1134
|
+
width: m(i),
|
|
1135
|
+
height: m(i),
|
|
1135
1136
|
viewBox: "0 0 24 24",
|
|
1136
1137
|
fill: "none",
|
|
1137
1138
|
stroke: e,
|
|
@@ -1148,7 +1149,7 @@ function ae({ color: e = p.primary[900], size: i = "small", ...a }) {
|
|
|
1148
1149
|
}
|
|
1149
1150
|
//#endregion
|
|
1150
1151
|
//#region src/icons/native/UserCircle.native.tsx
|
|
1151
|
-
function
|
|
1152
|
+
function se({ color: e = p.fg.accent.action, size: n = "small", ...r }) {
|
|
1152
1153
|
return n === "small" ? /* @__PURE__ */ t(l, {
|
|
1153
1154
|
width: "32",
|
|
1154
1155
|
height: "32",
|
|
@@ -1176,10 +1177,10 @@ function oe({ color: e = p.fg.accent.action, size: n = "small", ...r }) {
|
|
|
1176
1177
|
}
|
|
1177
1178
|
//#endregion
|
|
1178
1179
|
//#region src/icons/native/Window.native.tsx
|
|
1179
|
-
function
|
|
1180
|
+
function $({ color: e = p.fg.primary, size: n = "small", ...r }) {
|
|
1180
1181
|
return /* @__PURE__ */ t(l, {
|
|
1181
|
-
width:
|
|
1182
|
-
height:
|
|
1182
|
+
width: m(n),
|
|
1183
|
+
height: m(n),
|
|
1183
1184
|
viewBox: "0 0 24 24",
|
|
1184
1185
|
fill: "none",
|
|
1185
1186
|
...r,
|
|
@@ -1192,15 +1193,15 @@ function se({ color: e = p.fg.primary, size: n = "small", ...r }) {
|
|
|
1192
1193
|
//#endregion
|
|
1193
1194
|
//#region src/icons/index.native.ts
|
|
1194
1195
|
var ce = /* @__PURE__ */ ee({
|
|
1195
|
-
ArrowUp: () =>
|
|
1196
|
-
Attach: () =>
|
|
1197
|
-
Badge: () =>
|
|
1198
|
-
Calendar: () =>
|
|
1199
|
-
Check: () =>
|
|
1200
|
-
CheckCircle: () =>
|
|
1201
|
-
Chevron: () =>
|
|
1202
|
-
Clock: () =>
|
|
1203
|
-
Close: () =>
|
|
1196
|
+
ArrowUp: () => _,
|
|
1197
|
+
Attach: () => v,
|
|
1198
|
+
Badge: () => y,
|
|
1199
|
+
Calendar: () => b,
|
|
1200
|
+
Check: () => x,
|
|
1201
|
+
CheckCircle: () => S,
|
|
1202
|
+
Chevron: () => h,
|
|
1203
|
+
Clock: () => C,
|
|
1204
|
+
Close: () => g,
|
|
1204
1205
|
Cloud: () => w,
|
|
1205
1206
|
Compose: () => T,
|
|
1206
1207
|
Copy: () => E,
|
|
@@ -1231,12 +1232,12 @@ var ce = /* @__PURE__ */ ee({
|
|
|
1231
1232
|
Retry: () => X,
|
|
1232
1233
|
Rotate: () => Z,
|
|
1233
1234
|
Send: () => Q,
|
|
1234
|
-
Signature: () =>
|
|
1235
|
-
Sparkles: () =>
|
|
1236
|
-
Summary: () =>
|
|
1237
|
-
User: () =>
|
|
1238
|
-
UserCircle: () =>
|
|
1239
|
-
Window: () =>
|
|
1235
|
+
Signature: () => re,
|
|
1236
|
+
Sparkles: () => ie,
|
|
1237
|
+
Summary: () => ae,
|
|
1238
|
+
User: () => oe,
|
|
1239
|
+
UserCircle: () => se,
|
|
1240
|
+
Window: () => $
|
|
1240
1241
|
});
|
|
1241
1242
|
//#endregion
|
|
1242
|
-
export { j as A, x as B, L as C, P as D, F as E, E as F, g as G, y as H, T as I, te as J,
|
|
1243
|
+
export { j as A, x as B, L as C, P as D, F as E, E as F, g as G, y as H, T as I, te as J, h as K, w as L, k as M, O as N, N as O, D as P, C as R, R as S, I as T, v as U, b as V, _ as W, U as _, ae as a, B as b, Q as c, Y as d, J as f, W as g, G as h, oe as i, A as j, M as k, Z as l, K as m, $ as n, ie as o, q as p, p as q, se as r, re as s, ce as t, X as u, H as v, ne as w, z as x, V as y, S as z };
|