@exegia/corpora-ui 0.25.0 → 0.27.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 (48) hide show
  1. package/dist-lib/components/blocks/shell/animated-panel-provider.d.ts +1 -1
  2. package/dist-lib/components/blocks/shell/shell-layout.d.ts +1 -1
  3. package/dist-lib/components/blocks/shell/type.d.ts +21 -1
  4. package/dist-lib/components/icons/__tests__/icons.test.d.ts +1 -0
  5. package/dist-lib/components/icons/file-badge-cfm.d.ts +7 -0
  6. package/dist-lib/components/icons/file-badge-corpus.d.ts +7 -0
  7. package/dist-lib/components/icons/file-badge-pdf.d.ts +7 -0
  8. package/dist-lib/components/icons/file-badge-tei.d.ts +7 -0
  9. package/dist-lib/components/icons/file-badge-tf.d.ts +7 -0
  10. package/dist-lib/components/icons/file-badge-txt.d.ts +7 -0
  11. package/dist-lib/components/icons/file-badge-xml.d.ts +7 -0
  12. package/dist-lib/components/icons/file-wordmark-cfm.d.ts +7 -0
  13. package/dist-lib/components/icons/file-wordmark-corpus.d.ts +7 -0
  14. package/dist-lib/components/icons/file-wordmark-pdf.d.ts +7 -0
  15. package/dist-lib/components/icons/file-wordmark-tei.d.ts +7 -0
  16. package/dist-lib/components/icons/file-wordmark-tf.d.ts +7 -0
  17. package/dist-lib/components/icons/file-wordmark-txt.d.ts +7 -0
  18. package/dist-lib/components/icons/file-wordmark-xml.d.ts +7 -0
  19. package/dist-lib/components/icons/index.d.ts +15 -0
  20. package/dist-lib/components/icons/types.d.ts +7 -0
  21. package/dist-lib/index.d.ts +1 -0
  22. package/dist-lib/index.js +9134 -1920
  23. package/dist-lib/index.js.map +1 -1
  24. package/package.json +1 -1
  25. package/src/components/blocks/shell/__tests__/shell-layout.test.tsx +65 -0
  26. package/src/components/blocks/shell/animated-panel-provider.tsx +2 -0
  27. package/src/components/blocks/shell/shell-layout.tsx +28 -16
  28. package/src/components/blocks/shell/type.ts +22 -0
  29. package/src/components/blocks/shell/use-shell-panels.ts +30 -1
  30. package/src/components/icons/README.md +91 -0
  31. package/src/components/icons/__tests__/icons.test.tsx +58 -0
  32. package/src/components/icons/file-badge-cfm.tsx +615 -0
  33. package/src/components/icons/file-badge-corpus.tsx +604 -0
  34. package/src/components/icons/file-badge-pdf.tsx +570 -0
  35. package/src/components/icons/file-badge-tei.tsx +524 -0
  36. package/src/components/icons/file-badge-tf.tsx +620 -0
  37. package/src/components/icons/file-badge-txt.tsx +607 -0
  38. package/src/components/icons/file-badge-xml.tsx +576 -0
  39. package/src/components/icons/file-wordmark-cfm.tsx +424 -0
  40. package/src/components/icons/file-wordmark-corpus.tsx +454 -0
  41. package/src/components/icons/file-wordmark-pdf.tsx +470 -0
  42. package/src/components/icons/file-wordmark-tei.tsx +424 -0
  43. package/src/components/icons/file-wordmark-tf.tsx +406 -0
  44. package/src/components/icons/file-wordmark-txt.tsx +421 -0
  45. package/src/components/icons/file-wordmark-xml.tsx +424 -0
  46. package/src/components/icons/index.ts +16 -0
  47. package/src/components/icons/types.ts +8 -0
  48. package/src/index.ts +3 -0
@@ -0,0 +1,424 @@
1
+ import type { FileIconProps } from "./types"
2
+
3
+ /**
4
+ * XML file icon — wordmark variant.
5
+ * Light/dark artwork layers switch on Tailwind's `dark` variant.
6
+ */
7
+ export function FileWordmarkXml({
8
+ size = 64,
9
+ title = "XML file",
10
+ className,
11
+ ...props
12
+ }: FileIconProps) {
13
+ return (
14
+ <svg
15
+ viewBox="0 -48 1024 1114"
16
+ width={size}
17
+ height={size}
18
+ role={title ? "img" : "presentation"}
19
+ aria-label={title ?? undefined}
20
+ aria-hidden={title ? undefined : true}
21
+ className={className}
22
+ xmlns="http://www.w3.org/2000/svg"
23
+ {...props}
24
+ >
25
+ <g data-theme-layer="light" className="dark:hidden">
26
+ <defs>
27
+ <linearGradient
28
+ x1="17.6604798%"
29
+ y1="0%"
30
+ x2="49.177195%"
31
+ y2="97.4557292%"
32
+ id="xml-wordmark-l-linearGradient-2"
33
+ >
34
+ <stop stopColor="#FBFAFF" offset="0%"></stop>
35
+ <stop stopColor="#E8E7F0" offset="100%"></stop>
36
+ </linearGradient>
37
+ <path
38
+ d="M332,12 L557.393952,12 C613.901876,12 642.155838,12 664.135334,22.0470049 C686.11483,32.0940098 704.602278,53.4598851 741.577175,96.1916357 L853.580372,225.633315 C884.253388,261.082006 899.589896,278.806351 906.574274,297.524519 C913.558651,316.242686 913.581362,339.681124 913.626783,386.558 L914.017631,789.931634 C914.119069,894.620332 914.169788,946.964682 881.683622,979.482341 C849.197455,1012 796.853082,1012 692.164334,1012 L332,1012 C227.348196,1012 175.022295,1012 142.511147,979.488853 C110,946.977705 110,894.651804 110,790 L110,234 C110,129.348196 110,77.0222946 142.511147,44.5111473 C175.022295,12 227.348196,12 332,12 Z"
39
+ id="xml-wordmark-l-path-3"
40
+ ></path>
41
+ <filter
42
+ x="-50%"
43
+ y="-50%"
44
+ width="200%"
45
+ height="200%"
46
+ filterUnits="objectBoundingBox"
47
+ id="xml-wordmark-l-filter-4"
48
+ >
49
+ <feOffset
50
+ dx="12"
51
+ dy="-3"
52
+ in="SourceAlpha"
53
+ result="shadowOffsetOuter1"
54
+ ></feOffset>
55
+ <feGaussianBlur
56
+ stdDeviation="28.5"
57
+ in="shadowOffsetOuter1"
58
+ result="shadowBlurOuter1"
59
+ ></feGaussianBlur>
60
+ <feColorMatrix
61
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
62
+ type="matrix"
63
+ in="shadowBlurOuter1"
64
+ ></feColorMatrix>
65
+ </filter>
66
+ <filter
67
+ x="-50%"
68
+ y="-50%"
69
+ width="200%"
70
+ height="200%"
71
+ filterUnits="objectBoundingBox"
72
+ id="xml-wordmark-l-filter-5"
73
+ >
74
+ <feGaussianBlur
75
+ stdDeviation="4"
76
+ in="SourceAlpha"
77
+ result="shadowBlurInner1"
78
+ ></feGaussianBlur>
79
+ <feOffset
80
+ dx="-10"
81
+ dy="14"
82
+ in="shadowBlurInner1"
83
+ result="shadowOffsetInner1"
84
+ ></feOffset>
85
+ <feComposite
86
+ in="shadowOffsetInner1"
87
+ in2="SourceAlpha"
88
+ operator="arithmetic"
89
+ k2="-1"
90
+ k3="1"
91
+ result="shadowInnerInner1"
92
+ ></feComposite>
93
+ <feColorMatrix
94
+ values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
95
+ type="matrix"
96
+ in="shadowInnerInner1"
97
+ result="shadowMatrixInner1"
98
+ ></feColorMatrix>
99
+ <feGaussianBlur
100
+ stdDeviation="4"
101
+ in="SourceAlpha"
102
+ result="shadowBlurInner2"
103
+ ></feGaussianBlur>
104
+ <feOffset
105
+ dx="4"
106
+ dy="-10"
107
+ in="shadowBlurInner2"
108
+ result="shadowOffsetInner2"
109
+ ></feOffset>
110
+ <feComposite
111
+ in="shadowOffsetInner2"
112
+ in2="SourceAlpha"
113
+ operator="arithmetic"
114
+ k2="-1"
115
+ k3="1"
116
+ result="shadowInnerInner2"
117
+ ></feComposite>
118
+ <feColorMatrix
119
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"
120
+ type="matrix"
121
+ in="shadowInnerInner2"
122
+ result="shadowMatrixInner2"
123
+ ></feColorMatrix>
124
+ <feMerge>
125
+ <feMergeNode in="shadowMatrixInner1"></feMergeNode>
126
+ <feMergeNode in="shadowMatrixInner2"></feMergeNode>
127
+ </feMerge>
128
+ </filter>
129
+ <filter
130
+ x="-50%"
131
+ y="-50%"
132
+ width="200%"
133
+ height="200%"
134
+ filterUnits="objectBoundingBox"
135
+ id="xml-wordmark-l-filter-6"
136
+ >
137
+ <feOffset
138
+ dx="0"
139
+ dy="5"
140
+ in="SourceAlpha"
141
+ result="shadowOffsetOuter1"
142
+ ></feOffset>
143
+ <feGaussianBlur
144
+ stdDeviation="3.5"
145
+ in="shadowOffsetOuter1"
146
+ result="shadowBlurOuter1"
147
+ ></feGaussianBlur>
148
+ <feColorMatrix
149
+ values="0 0 0 0 0.0889199747 0 0 0 0 0.0889199747 0 0 0 0 0.0889199747 0 0 0 0.03 0"
150
+ type="matrix"
151
+ in="shadowBlurOuter1"
152
+ result="shadowMatrixOuter1"
153
+ ></feColorMatrix>
154
+ <feMerge>
155
+ <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
156
+ <feMergeNode in="SourceGraphic"></feMergeNode>
157
+ </feMerge>
158
+ </filter>
159
+ <linearGradient
160
+ x1="50%"
161
+ y1="0%"
162
+ x2="50%"
163
+ y2="100%"
164
+ id="xml-wordmark-l-linearGradient-7"
165
+ >
166
+ <stop stopColor="#4B008F" offset="0%"></stop>
167
+ <stop stopColor="#080043" offset="61.8567708%"></stop>
168
+ </linearGradient>
169
+ <g id="xml-wordmark-l-text-9">
170
+ <g transform="translate(307.5, 721.762)">
171
+ <defs>
172
+ <g>
173
+ <g id="xml-wordmark-l-lbl-glyph0-1">
174
+ <path d="M 25.453125 0.890625 C 34.890625 0.890625 41.46875 -6.234375 41.46875 -15.125 C 41.46875 -23.859375 34.890625 -30.96875 25.453125 -30.96875 C 15.84375 -30.96875 9.25 -23.859375 9.25 -15.125 C 9.25 -6.234375 15.84375 0.890625 25.453125 0.890625 Z M 25.453125 0.890625 " />
175
+ </g>
176
+ <g id="xml-wordmark-l-lbl-glyph0-2">
177
+ <path d="M 95.765625 0 L 126.5625 0 L 86.515625 -66.390625 L 121.390625 -125.484375 L 89.71875 -125.484375 L 64.265625 -80.984375 L 38.625 -125.484375 L 6.9375 -125.484375 L 42.015625 -66.390625 L 1.78125 0 L 32.75 0 L 64.265625 -53.21875 Z M 95.765625 0 " />
178
+ </g>
179
+ <g id="xml-wordmark-l-lbl-glyph0-3">
180
+ <path d="M 10.328125 0 L 36.84375 0 L 36.84375 -111.78125 L 59.984375 0 L 99.328125 0 L 122.640625 -111.78125 L 122.640625 0 L 148.984375 0 L 148.984375 -125.484375 L 100.5625 -125.484375 L 79.75 -12.8125 L 58.734375 -125.484375 L 10.328125 -125.484375 Z M 10.328125 0 " />
181
+ </g>
182
+ <g id="xml-wordmark-l-lbl-glyph0-4">
183
+ <path d="M 10.328125 0 L 89 0 L 89 -25.09375 L 38.09375 -25.09375 L 38.09375 -125.484375 L 10.328125 -125.484375 Z M 10.328125 0 " />
184
+ </g>
185
+ </g>
186
+ </defs>
187
+ <g>
188
+ <g>
189
+ <use
190
+ href="#xml-wordmark-l-lbl-glyph0-1"
191
+ x="0.462066"
192
+ y="162"
193
+ />
194
+ <use
195
+ href="#xml-wordmark-l-lbl-glyph0-2"
196
+ x="41.651266"
197
+ y="162"
198
+ />
199
+ </g>
200
+ <g>
201
+ <use
202
+ href="#xml-wordmark-l-lbl-glyph0-3"
203
+ x="165.254466"
204
+ y="162"
205
+ />
206
+ </g>
207
+ <g>
208
+ <use
209
+ href="#xml-wordmark-l-lbl-glyph0-4"
210
+ x="319.829666"
211
+ y="162"
212
+ />
213
+ </g>
214
+ </g>
215
+ </g>
216
+ </g>
217
+ <filter
218
+ x="-50%"
219
+ y="-50%"
220
+ width="200%"
221
+ height="200%"
222
+ filterUnits="objectBoundingBox"
223
+ id="xml-wordmark-l-filter-10"
224
+ >
225
+ <feMorphology
226
+ radius="0.5"
227
+ operator="dilate"
228
+ in="SourceAlpha"
229
+ result="shadowSpreadOuter1"
230
+ ></feMorphology>
231
+ <feOffset
232
+ dx="-3"
233
+ dy="3"
234
+ in="shadowSpreadOuter1"
235
+ result="shadowOffsetOuter1"
236
+ ></feOffset>
237
+ <feColorMatrix
238
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0501685049 0"
239
+ type="matrix"
240
+ in="shadowOffsetOuter1"
241
+ ></feColorMatrix>
242
+ </filter>
243
+ </defs>
244
+ <g stroke="none" fill="none">
245
+ <g>
246
+ <use
247
+ fill="black"
248
+ filter="url(#xml-wordmark-l-filter-4)"
249
+ href="#xml-wordmark-l-path-3"
250
+ ></use>
251
+ <use
252
+ fill="url(#xml-wordmark-l-linearGradient-2)"
253
+ fillRule="evenodd"
254
+ href="#xml-wordmark-l-path-3"
255
+ ></use>
256
+ <use
257
+ fill="black"
258
+ filter="url(#xml-wordmark-l-filter-5)"
259
+ href="#xml-wordmark-l-path-3"
260
+ ></use>
261
+ </g>
262
+ <g
263
+ filter="url(#xml-wordmark-l-filter-6)"
264
+ opacity="0.13"
265
+ fillRule="evenodd"
266
+ transform="translate(256.5027, 305.518)"
267
+ >
268
+ <path
269
+ d="M304.544551,0.447520067 C319.125735,0.47109626 330.927008,12.3105936 330.903467,26.8917774 C330.879856,41.4729613 319.040358,53.2742341 304.459175,53.2506931 L27.7029447,52.8031731 C13.1217608,52.7795969 1.32048809,40.9400996 1.34402902,26.3589157 C1.36764048,11.7777318 13.2071378,-0.0235409293 27.7883217,1.01746264e-13 L304.544551,0.447520067 Z"
270
+ fill="url(#xml-wordmark-l-linearGradient-7)"
271
+ fillRule="nonzero"
272
+ ></path>
273
+ <path
274
+ d="M509,164.674408 C509,179.255611 497.1796,191.076012 482.598397,191.076012 L27.296573,191.076012 C12.7153701,191.076012 0.894969607,179.255611 0.894969607,164.674408 C0.894969607,150.093206 12.7153701,138.272805 27.296573,138.272805 L482.598397,138.272805 C497.1796,138.272805 509,150.093206 509,164.674408 Z"
275
+ fill="url(#xml-wordmark-l-linearGradient-7)"
276
+ fillRule="nonzero"
277
+ ></path>
278
+ <path
279
+ d="M508.552515,304.737062 C508.552515,319.318265 496.732115,331.138666 482.150912,331.138666 L26.8490882,331.138666 C12.2678853,331.138666 0.447484804,319.318265 0.447484804,304.737062 C0.447484804,290.15586 12.2678853,278.335459 26.8490882,278.335459 L482.150912,278.335459 C496.732115,278.335459 508.552515,290.15586 508.552515,304.737062 Z"
280
+ fill="url(#xml-wordmark-l-linearGradient-7)"
281
+ fillRule="nonzero"
282
+ ></path>
283
+ </g>
284
+ <g fill="#2515C7">
285
+ <use
286
+ filter="url(#xml-wordmark-l-filter-10)"
287
+ href="#xml-wordmark-l-text-9"
288
+ ></use>
289
+ <use href="#xml-wordmark-l-text-9"></use>
290
+ </g>
291
+ </g>
292
+ </g>
293
+ <g data-theme-layer="dark" className="hidden dark:inline">
294
+ <defs>
295
+ <linearGradient
296
+ x1="25.9355099%"
297
+ y1="0%"
298
+ x2="63.5613444%"
299
+ y2="91.834983%"
300
+ id="xml-wordmark-d-linearGradient-2"
301
+ >
302
+ <stop
303
+ stopColor="#2A2A2A"
304
+ stopOpacity="0.980392157"
305
+ offset="0%"
306
+ ></stop>
307
+ <stop stopColor="#050505" offset="100%"></stop>
308
+ </linearGradient>
309
+ <filter
310
+ x="-50%"
311
+ y="-50%"
312
+ width="200%"
313
+ height="200%"
314
+ filterUnits="objectBoundingBox"
315
+ id="xml-wordmark-d-filter-5"
316
+ >
317
+ <feGaussianBlur
318
+ stdDeviation="4"
319
+ in="SourceAlpha"
320
+ result="shadowBlurInner1"
321
+ ></feGaussianBlur>
322
+ <feOffset
323
+ dx="-10"
324
+ dy="14"
325
+ in="shadowBlurInner1"
326
+ result="shadowOffsetInner1"
327
+ ></feOffset>
328
+ <feComposite
329
+ in="shadowOffsetInner1"
330
+ in2="SourceAlpha"
331
+ operator="arithmetic"
332
+ k2="-1"
333
+ k3="1"
334
+ result="shadowInnerInner1"
335
+ ></feComposite>
336
+ <feColorMatrix
337
+ values="0 0 0 0 0.194256757 0 0 0 0 0.194256757 0 0 0 0 0.194256757 0 0 0 1 0"
338
+ type="matrix"
339
+ in="shadowInnerInner1"
340
+ result="shadowMatrixInner1"
341
+ ></feColorMatrix>
342
+ <feGaussianBlur
343
+ stdDeviation="4"
344
+ in="SourceAlpha"
345
+ result="shadowBlurInner2"
346
+ ></feGaussianBlur>
347
+ <feOffset
348
+ dx="4"
349
+ dy="-10"
350
+ in="shadowBlurInner2"
351
+ result="shadowOffsetInner2"
352
+ ></feOffset>
353
+ <feComposite
354
+ in="shadowOffsetInner2"
355
+ in2="SourceAlpha"
356
+ operator="arithmetic"
357
+ k2="-1"
358
+ k3="1"
359
+ result="shadowInnerInner2"
360
+ ></feComposite>
361
+ <feColorMatrix
362
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"
363
+ type="matrix"
364
+ in="shadowInnerInner2"
365
+ result="shadowMatrixInner2"
366
+ ></feColorMatrix>
367
+ <feMerge>
368
+ <feMergeNode in="shadowMatrixInner1"></feMergeNode>
369
+ <feMergeNode in="shadowMatrixInner2"></feMergeNode>
370
+ </feMerge>
371
+ </filter>
372
+ </defs>
373
+ <g stroke="none" fill="none">
374
+ <g>
375
+ <use
376
+ fill="black"
377
+ filter="url(#xml-wordmark-l-filter-4)"
378
+ href="#xml-wordmark-l-path-3"
379
+ ></use>
380
+ <use
381
+ fill="url(#xml-wordmark-d-linearGradient-2)"
382
+ fillRule="evenodd"
383
+ href="#xml-wordmark-l-path-3"
384
+ ></use>
385
+ <use
386
+ fill="black"
387
+ filter="url(#xml-wordmark-d-filter-5)"
388
+ href="#xml-wordmark-l-path-3"
389
+ ></use>
390
+ </g>
391
+ <g
392
+ filter="url(#xml-wordmark-l-filter-6)"
393
+ opacity="0.13"
394
+ fillRule="evenodd"
395
+ transform="translate(256.5027, 305.518)"
396
+ fill="#B2B2B2"
397
+ >
398
+ <path
399
+ d="M304.544551,0.447520067 C319.125735,0.47109626 330.927008,12.3105936 330.903467,26.8917774 C330.879856,41.4729613 319.040358,53.2742341 304.459175,53.2506931 L27.7029447,52.8031731 C13.1217608,52.7795969 1.32048809,40.9400996 1.34402902,26.3589157 C1.36764048,11.7777318 13.2071378,-0.0235409293 27.7883217,1.01746264e-13 L304.544551,0.447520067 Z"
400
+ fillRule="nonzero"
401
+ ></path>
402
+ <path
403
+ d="M509,164.674408 C509,179.255611 497.1796,191.076012 482.598397,191.076012 L27.296573,191.076012 C12.7153701,191.076012 0.894969607,179.255611 0.894969607,164.674408 C0.894969607,150.093206 12.7153701,138.272805 27.296573,138.272805 L482.598397,138.272805 C497.1796,138.272805 509,150.093206 509,164.674408 Z"
404
+ fillRule="nonzero"
405
+ ></path>
406
+ <path
407
+ d="M508.552515,304.737062 C508.552515,319.318265 496.732115,331.138666 482.150912,331.138666 L26.8490882,331.138666 C12.2678853,331.138666 0.447484804,319.318265 0.447484804,304.737062 C0.447484804,290.15586 12.2678853,278.335459 26.8490882,278.335459 L482.150912,278.335459 C496.732115,278.335459 508.552515,290.15586 508.552515,304.737062 Z"
408
+ fillRule="nonzero"
409
+ ></path>
410
+ </g>
411
+ <g fill="#7B5CFF">
412
+ <use
413
+ filter="url(#xml-wordmark-l-filter-10)"
414
+ href="#xml-wordmark-l-text-9"
415
+ ></use>
416
+ <use href="#xml-wordmark-l-text-9"></use>
417
+ </g>
418
+ </g>
419
+ </g>
420
+ </svg>
421
+ )
422
+ }
423
+
424
+ export default FileWordmarkXml
@@ -0,0 +1,16 @@
1
+ export type { FileIconProps } from './types';
2
+
3
+ export { FileBadgeCfm } from './file-badge-cfm';
4
+ export { FileBadgeCorpus } from './file-badge-corpus';
5
+ export { FileBadgePdf } from './file-badge-pdf';
6
+ export { FileBadgeTei } from './file-badge-tei';
7
+ export { FileBadgeTf } from './file-badge-tf';
8
+ export { FileBadgeTxt } from './file-badge-txt';
9
+ export { FileBadgeXml } from './file-badge-xml';
10
+ export { FileWordmarkCfm } from './file-wordmark-cfm';
11
+ export { FileWordmarkCorpus } from './file-wordmark-corpus';
12
+ export { FileWordmarkPdf } from './file-wordmark-pdf';
13
+ export { FileWordmarkTei } from './file-wordmark-tei';
14
+ export { FileWordmarkTf } from './file-wordmark-tf';
15
+ export { FileWordmarkTxt } from './file-wordmark-txt';
16
+ export { FileWordmarkXml } from './file-wordmark-xml';
@@ -0,0 +1,8 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ export interface FileIconProps extends Omit<SVGProps<SVGSVGElement>, 'width' | 'height'> {
4
+ /** Rendered width and height. Defaults to 64. */
5
+ size?: number | string;
6
+ /** Accessible name. Pass `null` to mark the icon decorative. */
7
+ title?: string | null;
8
+ }
package/src/index.ts CHANGED
@@ -23,6 +23,9 @@ export * from "./components/ui/skeleton"
23
23
  export * from "./components/ui/spinner"
24
24
  export * from "./components/ui/textarea"
25
25
 
26
+ // icons
27
+ export * from "./components/icons"
28
+
26
29
  // components
27
30
  export * from "./components/composed/logo"
28
31
  export * from "./components/composed/password-input"