magick-icons 0.1.138 → 0.1.139
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/index.d.mts +325 -1
- package/index.d.ts +325 -1
- package/index.js +376 -157
- package/index.js.map +1 -1
- package/index.mjs +353 -152
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -90,6 +90,96 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
90
|
*/
|
|
91
91
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
92
|
|
|
93
|
+
/**
|
|
94
|
+
* Props for the ChevronDown icon component
|
|
95
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
+
*/
|
|
97
|
+
interface ChevronDownProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
+
size?: number | string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* ChevronDown icon component
|
|
102
|
+
* @example
|
|
103
|
+
* ```tsx
|
|
104
|
+
* import { ChevronDown } from 'magick-icons';
|
|
105
|
+
*
|
|
106
|
+
* <ChevronDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
declare const ChevronDown: React.ForwardRefExoticComponent<Omit<ChevronDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Props for the ChevronLeft icon component
|
|
113
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
|
+
*/
|
|
115
|
+
interface ChevronLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
116
|
+
size?: number | string;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* ChevronLeft icon component
|
|
120
|
+
* @example
|
|
121
|
+
* ```tsx
|
|
122
|
+
* import { ChevronLeft } from 'magick-icons';
|
|
123
|
+
*
|
|
124
|
+
* <ChevronLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
125
|
+
* ```
|
|
126
|
+
*/
|
|
127
|
+
declare const ChevronLeft: React.ForwardRefExoticComponent<Omit<ChevronLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Props for the ChevronRight icon component
|
|
131
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
|
+
*/
|
|
133
|
+
interface ChevronRightProps extends React.SVGProps<SVGSVGElement> {
|
|
134
|
+
size?: number | string;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* ChevronRight icon component
|
|
138
|
+
* @example
|
|
139
|
+
* ```tsx
|
|
140
|
+
* import { ChevronRight } from 'magick-icons';
|
|
141
|
+
*
|
|
142
|
+
* <ChevronRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
143
|
+
* ```
|
|
144
|
+
*/
|
|
145
|
+
declare const ChevronRight: React.ForwardRefExoticComponent<Omit<ChevronRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Props for the ChevronUp icon component
|
|
149
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
150
|
+
*/
|
|
151
|
+
interface ChevronUpProps extends React.SVGProps<SVGSVGElement> {
|
|
152
|
+
size?: number | string;
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* ChevronUp icon component
|
|
156
|
+
* @example
|
|
157
|
+
* ```tsx
|
|
158
|
+
* import { ChevronUp } from 'magick-icons';
|
|
159
|
+
*
|
|
160
|
+
* <ChevronUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
161
|
+
* ```
|
|
162
|
+
*/
|
|
163
|
+
declare const ChevronUp: React.ForwardRefExoticComponent<Omit<ChevronUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Props for the ChevronsUpDown icon component
|
|
167
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
168
|
+
*/
|
|
169
|
+
interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
170
|
+
size?: number | string;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* ChevronsUpDown icon component
|
|
174
|
+
* @example
|
|
175
|
+
* ```tsx
|
|
176
|
+
* import { ChevronsUpDown } from 'magick-icons';
|
|
177
|
+
*
|
|
178
|
+
* <ChevronsUpDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
179
|
+
* ```
|
|
180
|
+
*/
|
|
181
|
+
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
+
|
|
93
183
|
/**
|
|
94
184
|
* Props for the CircleCheckFill icon component
|
|
95
185
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -180,6 +270,24 @@ interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
|
180
270
|
*/
|
|
181
271
|
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
272
|
|
|
273
|
+
/**
|
|
274
|
+
* Props for the Enter icon component
|
|
275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
+
*/
|
|
277
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
278
|
+
size?: number | string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* Enter icon component
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { Enter } from 'magick-icons';
|
|
285
|
+
*
|
|
286
|
+
* <Enter size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
|
|
183
291
|
/**
|
|
184
292
|
* Props for the Finance icon component
|
|
185
293
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -270,6 +378,24 @@ interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
270
378
|
*/
|
|
271
379
|
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
380
|
|
|
381
|
+
/**
|
|
382
|
+
* Props for the GripVertical icon component
|
|
383
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
384
|
+
*/
|
|
385
|
+
interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
386
|
+
size?: number | string;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* GripVertical icon component
|
|
390
|
+
* @example
|
|
391
|
+
* ```tsx
|
|
392
|
+
* import { GripVertical } from 'magick-icons';
|
|
393
|
+
*
|
|
394
|
+
* <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
|
|
395
|
+
* ```
|
|
396
|
+
*/
|
|
397
|
+
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
|
+
|
|
273
399
|
/**
|
|
274
400
|
* Props for the HeartBold icon component
|
|
275
401
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -288,6 +414,24 @@ interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
288
414
|
*/
|
|
289
415
|
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
416
|
|
|
417
|
+
/**
|
|
418
|
+
* Props for the HrSystem icon component
|
|
419
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
420
|
+
*/
|
|
421
|
+
interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
422
|
+
size?: number | string;
|
|
423
|
+
}
|
|
424
|
+
/**
|
|
425
|
+
* HrSystem icon component
|
|
426
|
+
* @example
|
|
427
|
+
* ```tsx
|
|
428
|
+
* import { HrSystem } from 'magick-icons';
|
|
429
|
+
*
|
|
430
|
+
* <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
|
|
431
|
+
* ```
|
|
432
|
+
*/
|
|
433
|
+
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
|
+
|
|
291
435
|
/**
|
|
292
436
|
* Props for the IconsaxAiScienceBold icon component
|
|
293
437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -432,6 +576,24 @@ interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
432
576
|
*/
|
|
433
577
|
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
578
|
|
|
579
|
+
/**
|
|
580
|
+
* Props for the IconsaxWord icon component
|
|
581
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
582
|
+
*/
|
|
583
|
+
interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
+
size?: number | string;
|
|
585
|
+
}
|
|
586
|
+
/**
|
|
587
|
+
* IconsaxWord icon component
|
|
588
|
+
* @example
|
|
589
|
+
* ```tsx
|
|
590
|
+
* import { IconsaxWord } from 'magick-icons';
|
|
591
|
+
*
|
|
592
|
+
* <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
|
|
593
|
+
* ```
|
|
594
|
+
*/
|
|
595
|
+
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
|
+
|
|
435
597
|
/**
|
|
436
598
|
* Props for the InfoCircleBold icon component
|
|
437
599
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -486,6 +648,24 @@ interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
486
648
|
*/
|
|
487
649
|
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
650
|
|
|
651
|
+
/**
|
|
652
|
+
* Props for the Line icon component
|
|
653
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
654
|
+
*/
|
|
655
|
+
interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
656
|
+
size?: number | string;
|
|
657
|
+
}
|
|
658
|
+
/**
|
|
659
|
+
* Line icon component
|
|
660
|
+
* @example
|
|
661
|
+
* ```tsx
|
|
662
|
+
* import { Line } from 'magick-icons';
|
|
663
|
+
*
|
|
664
|
+
* <Line size={24} className="text-blue-500" strokeWidth={2} />
|
|
665
|
+
* ```
|
|
666
|
+
*/
|
|
667
|
+
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
|
+
|
|
489
669
|
/**
|
|
490
670
|
* Props for the LinkSquare icon component
|
|
491
671
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -504,6 +684,78 @@ interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
|
504
684
|
*/
|
|
505
685
|
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
686
|
|
|
687
|
+
/**
|
|
688
|
+
* Props for the List icon component
|
|
689
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
690
|
+
*/
|
|
691
|
+
interface ListProps extends React.SVGProps<SVGSVGElement> {
|
|
692
|
+
size?: number | string;
|
|
693
|
+
}
|
|
694
|
+
/**
|
|
695
|
+
* List icon component
|
|
696
|
+
* @example
|
|
697
|
+
* ```tsx
|
|
698
|
+
* import { List } from 'magick-icons';
|
|
699
|
+
*
|
|
700
|
+
* <List size={24} className="text-blue-500" strokeWidth={2} />
|
|
701
|
+
* ```
|
|
702
|
+
*/
|
|
703
|
+
declare const List: React.ForwardRefExoticComponent<Omit<ListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
|
+
|
|
705
|
+
/**
|
|
706
|
+
* Props for the ListEnd icon component
|
|
707
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
|
+
*/
|
|
709
|
+
interface ListEndProps extends React.SVGProps<SVGSVGElement> {
|
|
710
|
+
size?: number | string;
|
|
711
|
+
}
|
|
712
|
+
/**
|
|
713
|
+
* ListEnd icon component
|
|
714
|
+
* @example
|
|
715
|
+
* ```tsx
|
|
716
|
+
* import { ListEnd } from 'magick-icons';
|
|
717
|
+
*
|
|
718
|
+
* <ListEnd size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
|
+
* ```
|
|
720
|
+
*/
|
|
721
|
+
declare const ListEnd: React.ForwardRefExoticComponent<Omit<ListEndProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
|
+
|
|
723
|
+
/**
|
|
724
|
+
* Props for the ListOrdered icon component
|
|
725
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
|
+
*/
|
|
727
|
+
interface ListOrderedProps extends React.SVGProps<SVGSVGElement> {
|
|
728
|
+
size?: number | string;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* ListOrdered icon component
|
|
732
|
+
* @example
|
|
733
|
+
* ```tsx
|
|
734
|
+
* import { ListOrdered } from 'magick-icons';
|
|
735
|
+
*
|
|
736
|
+
* <ListOrdered size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
|
+
* ```
|
|
738
|
+
*/
|
|
739
|
+
declare const ListOrdered: React.ForwardRefExoticComponent<Omit<ListOrderedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* Props for the ListTodo icon component
|
|
743
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
|
+
*/
|
|
745
|
+
interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
746
|
+
size?: number | string;
|
|
747
|
+
}
|
|
748
|
+
/**
|
|
749
|
+
* ListTodo icon component
|
|
750
|
+
* @example
|
|
751
|
+
* ```tsx
|
|
752
|
+
* import { ListTodo } from 'magick-icons';
|
|
753
|
+
*
|
|
754
|
+
* <ListTodo size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
|
+
* ```
|
|
756
|
+
*/
|
|
757
|
+
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
|
+
|
|
507
759
|
/**
|
|
508
760
|
* Props for the Lock icon component
|
|
509
761
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -540,6 +792,24 @@ interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
|
540
792
|
*/
|
|
541
793
|
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
794
|
|
|
795
|
+
/**
|
|
796
|
+
* Props for the MagickoCheck icon component
|
|
797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
+
*/
|
|
799
|
+
interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
800
|
+
size?: number | string;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* MagickoCheck icon component
|
|
804
|
+
* @example
|
|
805
|
+
* ```tsx
|
|
806
|
+
* import { MagickoCheck } from 'magick-icons';
|
|
807
|
+
*
|
|
808
|
+
* <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
+
* ```
|
|
810
|
+
*/
|
|
811
|
+
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
+
|
|
543
813
|
/**
|
|
544
814
|
* Props for the Marketing icon component
|
|
545
815
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -612,6 +882,24 @@ interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
|
612
882
|
*/
|
|
613
883
|
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
614
884
|
|
|
885
|
+
/**
|
|
886
|
+
* Props for the Signature icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* Signature icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { Signature } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <Signature size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
615
903
|
/**
|
|
616
904
|
* Props for the SquarePen1 icon component
|
|
617
905
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,6 +918,24 @@ interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
630
918
|
*/
|
|
631
919
|
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
920
|
|
|
921
|
+
/**
|
|
922
|
+
* Props for the Strikethrough icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* Strikethrough icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { Strikethrough } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <Strikethrough size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
633
939
|
/**
|
|
634
940
|
* Props for the Tasks icon component
|
|
635
941
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -684,4 +990,22 @@ interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
684
990
|
*/
|
|
685
991
|
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
992
|
|
|
687
|
-
|
|
993
|
+
/**
|
|
994
|
+
* Props for the X icon component
|
|
995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
+
*/
|
|
997
|
+
interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
+
size?: number | string;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* X icon component
|
|
1002
|
+
* @example
|
|
1003
|
+
* ```tsx
|
|
1004
|
+
* import { X } from 'magick-icons';
|
|
1005
|
+
*
|
|
1006
|
+
* <X size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
1009
|
+
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
1011
|
+
export { ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Calendar, type CalendarProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, HrSystem, type HrSystemProps, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, Signature, type SignatureProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|