@grupalia/rn-ui-kit 0.0.1

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 (97) hide show
  1. package/README.md +46 -0
  2. package/lib/commonjs/components/BaseButton.js +246 -0
  3. package/lib/commonjs/components/BaseButton.js.map +1 -0
  4. package/lib/commonjs/components/index.js +14 -0
  5. package/lib/commonjs/components/index.js.map +1 -0
  6. package/lib/commonjs/index.js +29 -0
  7. package/lib/commonjs/index.js.map +1 -0
  8. package/lib/commonjs/package.json +1 -0
  9. package/lib/commonjs/preset.js +30 -0
  10. package/lib/commonjs/preset.js.map +1 -0
  11. package/lib/commonjs/styles/background-colors.js +135 -0
  12. package/lib/commonjs/styles/background-colors.js.map +1 -0
  13. package/lib/commonjs/styles/border-colors.js +51 -0
  14. package/lib/commonjs/styles/border-colors.js.map +1 -0
  15. package/lib/commonjs/styles/colors.js +390 -0
  16. package/lib/commonjs/styles/colors.js.map +1 -0
  17. package/lib/commonjs/styles/foreground-colors.js +91 -0
  18. package/lib/commonjs/styles/foreground-colors.js.map +1 -0
  19. package/lib/commonjs/styles/gradients.js +1241 -0
  20. package/lib/commonjs/styles/gradients.js.map +1 -0
  21. package/lib/commonjs/styles/text-colors.js +99 -0
  22. package/lib/commonjs/styles/text-colors.js.map +1 -0
  23. package/lib/commonjs/types/nativewind-env.d.js +3 -0
  24. package/lib/commonjs/types/nativewind-env.d.js.map +1 -0
  25. package/lib/module/components/BaseButton.js +241 -0
  26. package/lib/module/components/BaseButton.js.map +1 -0
  27. package/lib/module/components/index.js +4 -0
  28. package/lib/module/components/index.js.map +1 -0
  29. package/lib/module/index.js +5 -0
  30. package/lib/module/index.js.map +1 -0
  31. package/lib/module/package.json +1 -0
  32. package/lib/module/preset.js +25 -0
  33. package/lib/module/preset.js.map +1 -0
  34. package/lib/module/styles/background-colors.js +130 -0
  35. package/lib/module/styles/background-colors.js.map +1 -0
  36. package/lib/module/styles/border-colors.js +46 -0
  37. package/lib/module/styles/border-colors.js.map +1 -0
  38. package/lib/module/styles/colors.js +386 -0
  39. package/lib/module/styles/colors.js.map +1 -0
  40. package/lib/module/styles/foreground-colors.js +86 -0
  41. package/lib/module/styles/foreground-colors.js.map +1 -0
  42. package/lib/module/styles/gradients.js +1237 -0
  43. package/lib/module/styles/gradients.js.map +1 -0
  44. package/lib/module/styles/text-colors.js +94 -0
  45. package/lib/module/styles/text-colors.js.map +1 -0
  46. package/lib/module/types/nativewind-env.d.js +3 -0
  47. package/lib/module/types/nativewind-env.d.js.map +1 -0
  48. package/lib/typescript/commonjs/components/BaseButton.d.ts +15 -0
  49. package/lib/typescript/commonjs/components/BaseButton.d.ts.map +1 -0
  50. package/lib/typescript/commonjs/components/index.d.ts +2 -0
  51. package/lib/typescript/commonjs/components/index.d.ts.map +1 -0
  52. package/lib/typescript/commonjs/index.d.ts +3 -0
  53. package/lib/typescript/commonjs/index.d.ts.map +1 -0
  54. package/lib/typescript/commonjs/package.json +1 -0
  55. package/lib/typescript/commonjs/preset.d.ts +4 -0
  56. package/lib/typescript/commonjs/preset.d.ts.map +1 -0
  57. package/lib/typescript/commonjs/styles/background-colors.d.ts +128 -0
  58. package/lib/typescript/commonjs/styles/background-colors.d.ts.map +1 -0
  59. package/lib/typescript/commonjs/styles/border-colors.d.ts +44 -0
  60. package/lib/typescript/commonjs/styles/border-colors.d.ts.map +1 -0
  61. package/lib/typescript/commonjs/styles/colors.d.ts +385 -0
  62. package/lib/typescript/commonjs/styles/colors.d.ts.map +1 -0
  63. package/lib/typescript/commonjs/styles/foreground-colors.d.ts +84 -0
  64. package/lib/typescript/commonjs/styles/foreground-colors.d.ts.map +1 -0
  65. package/lib/typescript/commonjs/styles/gradients.d.ts +900 -0
  66. package/lib/typescript/commonjs/styles/gradients.d.ts.map +1 -0
  67. package/lib/typescript/commonjs/styles/text-colors.d.ts +92 -0
  68. package/lib/typescript/commonjs/styles/text-colors.d.ts.map +1 -0
  69. package/lib/typescript/module/components/BaseButton.d.ts +15 -0
  70. package/lib/typescript/module/components/BaseButton.d.ts.map +1 -0
  71. package/lib/typescript/module/components/index.d.ts +2 -0
  72. package/lib/typescript/module/components/index.d.ts.map +1 -0
  73. package/lib/typescript/module/index.d.ts +3 -0
  74. package/lib/typescript/module/index.d.ts.map +1 -0
  75. package/lib/typescript/module/package.json +1 -0
  76. package/lib/typescript/module/preset.d.ts +4 -0
  77. package/lib/typescript/module/preset.d.ts.map +1 -0
  78. package/lib/typescript/module/styles/background-colors.d.ts +128 -0
  79. package/lib/typescript/module/styles/background-colors.d.ts.map +1 -0
  80. package/lib/typescript/module/styles/border-colors.d.ts +44 -0
  81. package/lib/typescript/module/styles/border-colors.d.ts.map +1 -0
  82. package/lib/typescript/module/styles/colors.d.ts +385 -0
  83. package/lib/typescript/module/styles/colors.d.ts.map +1 -0
  84. package/lib/typescript/module/styles/foreground-colors.d.ts +84 -0
  85. package/lib/typescript/module/styles/foreground-colors.d.ts.map +1 -0
  86. package/lib/typescript/module/styles/gradients.d.ts +900 -0
  87. package/lib/typescript/module/styles/gradients.d.ts.map +1 -0
  88. package/lib/typescript/module/styles/text-colors.d.ts +92 -0
  89. package/lib/typescript/module/styles/text-colors.d.ts.map +1 -0
  90. package/package.json +89 -0
  91. package/src/preset.ts +32 -0
  92. package/src/styles/background-colors.ts +128 -0
  93. package/src/styles/border-colors.ts +44 -0
  94. package/src/styles/colors.ts +383 -0
  95. package/src/styles/foreground-colors.ts +84 -0
  96. package/src/styles/gradients.ts +1570 -0
  97. package/src/styles/text-colors.ts +92 -0
@@ -0,0 +1,900 @@
1
+ declare const _default: {
2
+ 'gray-1': {
3
+ type: string;
4
+ angle: number;
5
+ stops: {
6
+ color: string;
7
+ position: number;
8
+ }[];
9
+ };
10
+ 'gray-2': {
11
+ type: string;
12
+ angle: number;
13
+ stops: {
14
+ color: string;
15
+ position: number;
16
+ }[];
17
+ };
18
+ 'gray-3': {
19
+ type: string;
20
+ angle: number;
21
+ stops: {
22
+ color: string;
23
+ position: number;
24
+ }[];
25
+ };
26
+ 'gray-4': {
27
+ type: string;
28
+ angle: number;
29
+ stops: {
30
+ color: string;
31
+ position: number;
32
+ }[];
33
+ };
34
+ 'gray-5': {
35
+ type: string;
36
+ angle: number;
37
+ stops: {
38
+ color: string;
39
+ position: number;
40
+ }[];
41
+ };
42
+ 'gray-6': {
43
+ type: string;
44
+ angle: number;
45
+ stops: {
46
+ color: string;
47
+ position: number;
48
+ }[];
49
+ };
50
+ 'gray-7': {
51
+ type: string;
52
+ angle: number;
53
+ stops: {
54
+ color: string;
55
+ position: number;
56
+ }[];
57
+ };
58
+ 'gray-8': {
59
+ type: string;
60
+ angle: number;
61
+ stops: {
62
+ color: string;
63
+ position: number;
64
+ }[];
65
+ };
66
+ 'gray-9': {
67
+ type: string;
68
+ angle: number;
69
+ stops: {
70
+ color: string;
71
+ position: number;
72
+ }[];
73
+ };
74
+ 'gray-10': {
75
+ type: string;
76
+ angle: number;
77
+ stops: {
78
+ color: string;
79
+ position: number;
80
+ }[];
81
+ };
82
+ 'gray-11': {
83
+ type: string;
84
+ angle: number;
85
+ stops: {
86
+ color: string;
87
+ position: number;
88
+ }[];
89
+ };
90
+ 'gray-12': {
91
+ type: string;
92
+ angle: number;
93
+ stops: {
94
+ color: string;
95
+ position: number;
96
+ }[];
97
+ };
98
+ 'gray-13': {
99
+ type: string;
100
+ angle: number;
101
+ stops: {
102
+ color: string;
103
+ position: number;
104
+ }[];
105
+ };
106
+ 'gray-14': {
107
+ type: string;
108
+ angle: number;
109
+ stops: {
110
+ color: string;
111
+ position: number;
112
+ }[];
113
+ };
114
+ 'brand-1': {
115
+ type: string;
116
+ angle: number;
117
+ stops: {
118
+ color: string;
119
+ position: number;
120
+ }[];
121
+ };
122
+ 'brand-2': {
123
+ type: string;
124
+ angle: number;
125
+ stops: {
126
+ color: string;
127
+ position: number;
128
+ }[];
129
+ };
130
+ 'brand-3': {
131
+ type: string;
132
+ angle: number;
133
+ stops: {
134
+ color: string;
135
+ position: number;
136
+ }[];
137
+ };
138
+ 'brand-4': {
139
+ type: string;
140
+ angle: number;
141
+ stops: {
142
+ color: string;
143
+ position: number;
144
+ }[];
145
+ };
146
+ 'brand-5': {
147
+ type: string;
148
+ angle: number;
149
+ stops: {
150
+ color: string;
151
+ position: number;
152
+ }[];
153
+ };
154
+ 'brand-6': {
155
+ type: string;
156
+ angle: number;
157
+ stops: {
158
+ color: string;
159
+ position: number;
160
+ }[];
161
+ };
162
+ 'brand-7': {
163
+ type: string;
164
+ angle: number;
165
+ stops: {
166
+ color: string;
167
+ position: number;
168
+ }[];
169
+ };
170
+ 'linear-1': {
171
+ type: string;
172
+ angle: number;
173
+ stops: {
174
+ color: string;
175
+ position: number;
176
+ }[];
177
+ };
178
+ 'linear-2': {
179
+ type: string;
180
+ angle: number;
181
+ stops: {
182
+ color: string;
183
+ position: number;
184
+ }[];
185
+ };
186
+ 'linear-3': {
187
+ type: string;
188
+ angle: number;
189
+ stops: {
190
+ color: string;
191
+ position: number;
192
+ }[];
193
+ };
194
+ 'linear-4': {
195
+ type: string;
196
+ angle: number;
197
+ stops: {
198
+ color: string;
199
+ position: number;
200
+ }[];
201
+ };
202
+ 'linear-5': {
203
+ type: string;
204
+ angle: number;
205
+ stops: {
206
+ color: string;
207
+ position: number;
208
+ }[];
209
+ };
210
+ 'linear-6': {
211
+ type: string;
212
+ angle: number;
213
+ stops: {
214
+ color: string;
215
+ position: number;
216
+ }[];
217
+ };
218
+ 'linear-7': {
219
+ type: string;
220
+ angle: number;
221
+ stops: {
222
+ color: string;
223
+ position: number;
224
+ }[];
225
+ };
226
+ 'linear-8': {
227
+ type: string;
228
+ angle: number;
229
+ stops: {
230
+ color: string;
231
+ position: number;
232
+ }[];
233
+ };
234
+ 'linear-9': {
235
+ type: string;
236
+ angle: number;
237
+ stops: {
238
+ color: string;
239
+ position: number;
240
+ }[];
241
+ };
242
+ 'linear-10': {
243
+ type: string;
244
+ angle: number;
245
+ stops: {
246
+ color: string;
247
+ position: number;
248
+ }[];
249
+ };
250
+ 'linear-11': {
251
+ type: string;
252
+ angle: number;
253
+ stops: {
254
+ color: string;
255
+ position: number;
256
+ }[];
257
+ };
258
+ 'linear-12': {
259
+ type: string;
260
+ angle: number;
261
+ stops: {
262
+ color: string;
263
+ position: number;
264
+ }[];
265
+ };
266
+ 'linear-13': {
267
+ type: string;
268
+ angle: number;
269
+ stops: {
270
+ color: string;
271
+ position: number;
272
+ }[];
273
+ };
274
+ 'linear-14': {
275
+ type: string;
276
+ angle: number;
277
+ stops: {
278
+ color: string;
279
+ position: number;
280
+ }[];
281
+ };
282
+ 'linear-15': {
283
+ type: string;
284
+ angle: number;
285
+ stops: {
286
+ color: string;
287
+ position: number;
288
+ }[];
289
+ };
290
+ 'linear-16': {
291
+ type: string;
292
+ angle: number;
293
+ stops: {
294
+ color: string;
295
+ position: number;
296
+ }[];
297
+ };
298
+ 'linear-17': {
299
+ type: string;
300
+ angle: number;
301
+ stops: {
302
+ color: string;
303
+ position: number;
304
+ }[];
305
+ };
306
+ 'linear-18': {
307
+ type: string;
308
+ angle: number;
309
+ stops: {
310
+ color: string;
311
+ position: number;
312
+ }[];
313
+ };
314
+ 'linear-19': {
315
+ type: string;
316
+ angle: number;
317
+ stops: {
318
+ color: string;
319
+ position: number;
320
+ }[];
321
+ };
322
+ 'linear-20': {
323
+ type: string;
324
+ angle: number;
325
+ stops: {
326
+ color: string;
327
+ position: number;
328
+ }[];
329
+ };
330
+ 'linear-21': {
331
+ type: string;
332
+ angle: number;
333
+ stops: {
334
+ color: string;
335
+ position: number;
336
+ }[];
337
+ };
338
+ 'linear-22': {
339
+ type: string;
340
+ angle: number;
341
+ stops: {
342
+ color: string;
343
+ position: number;
344
+ }[];
345
+ };
346
+ 'linear-23': {
347
+ type: string;
348
+ angle: number;
349
+ stops: {
350
+ color: string;
351
+ position: number;
352
+ }[];
353
+ };
354
+ 'linear-24': {
355
+ type: string;
356
+ angle: number;
357
+ stops: {
358
+ color: string;
359
+ position: number;
360
+ }[];
361
+ };
362
+ 'linear-25': {
363
+ type: string;
364
+ angle: number;
365
+ stops: {
366
+ color: string;
367
+ position: number;
368
+ }[];
369
+ };
370
+ 'linear-26': {
371
+ type: string;
372
+ angle: number;
373
+ stops: {
374
+ color: string;
375
+ position: number;
376
+ }[];
377
+ };
378
+ 'linear-27': {
379
+ type: string;
380
+ angle: number;
381
+ stops: {
382
+ color: string;
383
+ position: number;
384
+ }[];
385
+ };
386
+ 'linear-28': {
387
+ type: string;
388
+ angle: number;
389
+ stops: {
390
+ color: string;
391
+ position: number;
392
+ }[];
393
+ };
394
+ 'linear-29': {
395
+ type: string;
396
+ angle: number;
397
+ stops: {
398
+ color: string;
399
+ position: number;
400
+ }[];
401
+ };
402
+ 'linear-30': {
403
+ type: string;
404
+ angle: number;
405
+ stops: {
406
+ color: string;
407
+ position: number;
408
+ }[];
409
+ };
410
+ 'linear-31': {
411
+ type: string;
412
+ angle: number;
413
+ stops: {
414
+ color: string;
415
+ position: number;
416
+ }[];
417
+ };
418
+ 'linear-32': {
419
+ type: string;
420
+ angle: number;
421
+ stops: {
422
+ color: string;
423
+ position: number;
424
+ }[];
425
+ };
426
+ 'linear-33': {
427
+ type: string;
428
+ angle: number;
429
+ stops: {
430
+ color: string;
431
+ position: number;
432
+ }[];
433
+ };
434
+ 'linear-34': {
435
+ type: string;
436
+ angle: number;
437
+ stops: {
438
+ color: string;
439
+ position: number;
440
+ }[];
441
+ };
442
+ 'linear-35': {
443
+ type: string;
444
+ angle: number;
445
+ stops: {
446
+ color: string;
447
+ position: number;
448
+ }[];
449
+ };
450
+ 'linear-36': {
451
+ type: string;
452
+ angle: number;
453
+ stops: {
454
+ color: string;
455
+ position: number;
456
+ }[];
457
+ };
458
+ 'linear-37': {
459
+ type: string;
460
+ angle: number;
461
+ stops: {
462
+ color: string;
463
+ position: number;
464
+ }[];
465
+ };
466
+ 'linear-38': {
467
+ type: string;
468
+ angle: number;
469
+ stops: {
470
+ color: string;
471
+ position: number;
472
+ }[];
473
+ };
474
+ 'linear-39': {
475
+ type: string;
476
+ angle: number;
477
+ stops: {
478
+ color: string;
479
+ position: number;
480
+ }[];
481
+ };
482
+ 'linear-40': {
483
+ type: string;
484
+ angle: number;
485
+ stops: {
486
+ color: string;
487
+ position: number;
488
+ }[];
489
+ };
490
+ 'linear-41': {
491
+ type: string;
492
+ angle: number;
493
+ stops: {
494
+ color: string;
495
+ position: number;
496
+ }[];
497
+ };
498
+ 'linear-42': {
499
+ type: string;
500
+ angle: number;
501
+ stops: {
502
+ color: string;
503
+ position: number;
504
+ }[];
505
+ };
506
+ 'linear-43': {
507
+ type: string;
508
+ angle: number;
509
+ stops: {
510
+ color: string;
511
+ position: number;
512
+ }[];
513
+ };
514
+ 'linear-44': {
515
+ type: string;
516
+ angle: number;
517
+ stops: {
518
+ color: string;
519
+ position: number;
520
+ }[];
521
+ };
522
+ 'linear-45': {
523
+ type: string;
524
+ angle: number;
525
+ stops: {
526
+ color: string;
527
+ position: number;
528
+ }[];
529
+ };
530
+ 'linear-46': {
531
+ type: string;
532
+ angle: number;
533
+ stops: {
534
+ color: string;
535
+ position: number;
536
+ }[];
537
+ };
538
+ 'linear-47': {
539
+ type: string;
540
+ angle: number;
541
+ stops: {
542
+ color: string;
543
+ position: number;
544
+ }[];
545
+ };
546
+ 'linear-48': {
547
+ type: string;
548
+ angle: number;
549
+ stops: {
550
+ color: string;
551
+ position: number;
552
+ }[];
553
+ };
554
+ 'linear-49': {
555
+ type: string;
556
+ angle: number;
557
+ stops: {
558
+ color: string;
559
+ position: number;
560
+ }[];
561
+ };
562
+ 'linear-50': {
563
+ type: string;
564
+ angle: number;
565
+ stops: {
566
+ color: string;
567
+ position: number;
568
+ }[];
569
+ };
570
+ 'linear-51': {
571
+ type: string;
572
+ angle: number;
573
+ stops: {
574
+ color: string;
575
+ position: number;
576
+ }[];
577
+ };
578
+ 'linear-52': {
579
+ type: string;
580
+ angle: number;
581
+ stops: {
582
+ color: string;
583
+ position: number;
584
+ }[];
585
+ };
586
+ 'linear-53': {
587
+ type: string;
588
+ angle: number;
589
+ stops: {
590
+ color: string;
591
+ position: number;
592
+ }[];
593
+ };
594
+ 'linear-54': {
595
+ type: string;
596
+ angle: number;
597
+ stops: {
598
+ color: string;
599
+ position: number;
600
+ }[];
601
+ };
602
+ 'linear-55': {
603
+ type: string;
604
+ angle: number;
605
+ stops: {
606
+ color: string;
607
+ position: number;
608
+ }[];
609
+ };
610
+ 'linear-56': {
611
+ type: string;
612
+ angle: number;
613
+ stops: {
614
+ color: string;
615
+ position: number;
616
+ }[];
617
+ };
618
+ 'linear-57': {
619
+ type: string;
620
+ angle: number;
621
+ stops: {
622
+ color: string;
623
+ position: number;
624
+ }[];
625
+ };
626
+ 'linear-58': {
627
+ type: string;
628
+ angle: number;
629
+ stops: {
630
+ color: string;
631
+ position: number;
632
+ }[];
633
+ };
634
+ 'linear-59': {
635
+ type: string;
636
+ angle: number;
637
+ stops: {
638
+ color: string;
639
+ position: number;
640
+ }[];
641
+ };
642
+ 'linear-60': {
643
+ type: string;
644
+ angle: number;
645
+ stops: {
646
+ color: string;
647
+ position: number;
648
+ }[];
649
+ };
650
+ 'linear-61': {
651
+ type: string;
652
+ angle: number;
653
+ stops: {
654
+ color: string;
655
+ position: number;
656
+ }[];
657
+ };
658
+ 'linear-62': {
659
+ type: string;
660
+ angle: number;
661
+ stops: {
662
+ color: string;
663
+ position: number;
664
+ }[];
665
+ };
666
+ 'linear-63': {
667
+ type: string;
668
+ angle: number;
669
+ stops: {
670
+ color: string;
671
+ position: number;
672
+ }[];
673
+ };
674
+ 'linear-64': {
675
+ type: string;
676
+ angle: number;
677
+ stops: {
678
+ color: string;
679
+ position: number;
680
+ }[];
681
+ };
682
+ 'linear-65': {
683
+ type: string;
684
+ angle: number;
685
+ stops: {
686
+ color: string;
687
+ position: number;
688
+ }[];
689
+ };
690
+ 'linear-66': {
691
+ type: string;
692
+ angle: number;
693
+ stops: {
694
+ color: string;
695
+ position: number;
696
+ }[];
697
+ };
698
+ 'linear-67': {
699
+ type: string;
700
+ angle: number;
701
+ stops: {
702
+ color: string;
703
+ position: number;
704
+ }[];
705
+ };
706
+ 'linear-68': {
707
+ type: string;
708
+ angle: number;
709
+ stops: {
710
+ color: string;
711
+ position: number;
712
+ }[];
713
+ };
714
+ 'linear-69': {
715
+ type: string;
716
+ angle: number;
717
+ stops: {
718
+ color: string;
719
+ position: number;
720
+ }[];
721
+ };
722
+ 'linear-70': {
723
+ type: string;
724
+ angle: number;
725
+ stops: {
726
+ color: string;
727
+ position: number;
728
+ }[];
729
+ };
730
+ 'linear-71': {
731
+ type: string;
732
+ angle: number;
733
+ stops: {
734
+ color: string;
735
+ position: number;
736
+ }[];
737
+ };
738
+ 'linear-72': {
739
+ type: string;
740
+ angle: number;
741
+ stops: {
742
+ color: string;
743
+ position: number;
744
+ }[];
745
+ };
746
+ 'linear-73': {
747
+ type: string;
748
+ angle: number;
749
+ stops: {
750
+ color: string;
751
+ position: number;
752
+ }[];
753
+ };
754
+ 'linear-74': {
755
+ type: string;
756
+ angle: number;
757
+ stops: {
758
+ color: string;
759
+ position: number;
760
+ }[];
761
+ };
762
+ 'linear-75': {
763
+ type: string;
764
+ angle: number;
765
+ stops: {
766
+ color: string;
767
+ position: number;
768
+ }[];
769
+ };
770
+ 'linear-76': {
771
+ type: string;
772
+ angle: number;
773
+ stops: {
774
+ color: string;
775
+ position: number;
776
+ }[];
777
+ };
778
+ 'linear-77': {
779
+ type: string;
780
+ angle: number;
781
+ stops: {
782
+ color: string;
783
+ position: number;
784
+ }[];
785
+ };
786
+ 'linear-78': {
787
+ type: string;
788
+ angle: number;
789
+ stops: {
790
+ color: string;
791
+ position: number;
792
+ }[];
793
+ };
794
+ 'linear-79': {
795
+ type: string;
796
+ angle: number;
797
+ stops: {
798
+ color: string;
799
+ position: number;
800
+ }[];
801
+ };
802
+ 'linear-80': {
803
+ type: string;
804
+ angle: number;
805
+ stops: {
806
+ color: string;
807
+ position: number;
808
+ }[];
809
+ };
810
+ 'linear-81': {
811
+ type: string;
812
+ angle: number;
813
+ stops: {
814
+ color: string;
815
+ position: number;
816
+ }[];
817
+ };
818
+ 'linear-82': {
819
+ type: string;
820
+ angle: number;
821
+ stops: {
822
+ color: string;
823
+ position: number;
824
+ }[];
825
+ };
826
+ 'linear-83': {
827
+ type: string;
828
+ angle: number;
829
+ stops: {
830
+ color: string;
831
+ position: number;
832
+ }[];
833
+ };
834
+ 'linear-84': {
835
+ type: string;
836
+ angle: number;
837
+ stops: {
838
+ color: string;
839
+ position: number;
840
+ }[];
841
+ };
842
+ 'linear-85': {
843
+ type: string;
844
+ angle: number;
845
+ stops: {
846
+ color: string;
847
+ position: number;
848
+ }[];
849
+ };
850
+ 'linear-86': {
851
+ type: string;
852
+ angle: number;
853
+ stops: {
854
+ color: string;
855
+ position: number;
856
+ }[];
857
+ };
858
+ 'linear-87': {
859
+ type: string;
860
+ angle: number;
861
+ stops: {
862
+ color: string;
863
+ position: number;
864
+ }[];
865
+ };
866
+ 'linear-88': {
867
+ type: string;
868
+ angle: number;
869
+ stops: {
870
+ color: string;
871
+ position: number;
872
+ }[];
873
+ };
874
+ 'linear-89': {
875
+ type: string;
876
+ angle: number;
877
+ stops: {
878
+ color: string;
879
+ position: number;
880
+ }[];
881
+ };
882
+ 'linear-90': {
883
+ type: string;
884
+ angle: number;
885
+ stops: {
886
+ color: string;
887
+ position: number;
888
+ }[];
889
+ };
890
+ 'linear-91': {
891
+ type: string;
892
+ angle: number;
893
+ stops: {
894
+ color: string;
895
+ position: number;
896
+ }[];
897
+ };
898
+ };
899
+ export default _default;
900
+ //# sourceMappingURL=gradients.d.ts.map