@uiuxicons/react 0.1.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.
@@ -0,0 +1,255 @@
1
+ import { SVGProps, Ref, ReactNode, JSX } from 'react';
2
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
+
4
+ type IconVariant = "line" | "duotone" | "solid";
5
+ type IconWeight = "light" | "regular" | "bold";
6
+ interface IconProps extends Omit<SVGProps<SVGSVGElement>, "children"> {
7
+ variant?: IconVariant;
8
+ weight?: IconWeight;
9
+ size?: number | string;
10
+ color?: string;
11
+ ref?: Ref<SVGSVGElement>;
12
+ children?: never;
13
+ }
14
+ interface IconProviderProps {
15
+ variant?: IconVariant;
16
+ weight?: IconWeight;
17
+ size?: number | string;
18
+ color?: string;
19
+ children: ReactNode;
20
+ }
21
+
22
+ declare function IconProvider({ variant, weight, size, color, children, }: IconProviderProps): react_jsx_runtime.JSX.Element;
23
+
24
+ interface IconComponent {
25
+ (props: IconProps): JSX.Element;
26
+ displayName?: string;
27
+ }
28
+
29
+ declare const IconAlignBottom: IconComponent;
30
+
31
+ declare const IconAlignCenterHorizontal: IconComponent;
32
+
33
+ declare const IconAlignCenterVertical: IconComponent;
34
+
35
+ declare const IconAlignLeft: IconComponent;
36
+
37
+ declare const IconAlignRight: IconComponent;
38
+
39
+ declare const IconAlignTop: IconComponent;
40
+
41
+ declare const IconAngle: IconComponent;
42
+
43
+ declare const IconAppWindow: IconComponent;
44
+
45
+ declare const IconArchive: IconComponent;
46
+
47
+ declare const IconArchiveX: IconComponent;
48
+
49
+ declare const IconArrowCircleDown: IconComponent;
50
+
51
+ declare const IconArrowCircleDownLeft: IconComponent;
52
+
53
+ declare const IconArrowCircleDownRight: IconComponent;
54
+
55
+ declare const IconArrowCircleLeft: IconComponent;
56
+
57
+ declare const IconArrowCircleRight: IconComponent;
58
+
59
+ declare const IconArrowCircleUp: IconComponent;
60
+
61
+ declare const IconArrowCircleUpLeft: IconComponent;
62
+
63
+ declare const IconArrowCircleUpRight: IconComponent;
64
+
65
+ declare const IconArrowDown: IconComponent;
66
+
67
+ declare const IconArrowDownLeft: IconComponent;
68
+
69
+ declare const IconArrowDownRight: IconComponent;
70
+
71
+ declare const IconArrowLeft: IconComponent;
72
+
73
+ declare const IconArrowReload: IconComponent;
74
+
75
+ declare const IconArrowReset: IconComponent;
76
+
77
+ declare const IconArrowRight: IconComponent;
78
+
79
+ declare const IconArrowSquareDown: IconComponent;
80
+
81
+ declare const IconArrowSquareDownLeft: IconComponent;
82
+
83
+ declare const IconArrowSquareDownRight: IconComponent;
84
+
85
+ declare const IconArrowSquareLeft: IconComponent;
86
+
87
+ declare const IconArrowSquareRight: IconComponent;
88
+
89
+ declare const IconArrowSquareUp: IconComponent;
90
+
91
+ declare const IconArrowSquareUpLeft: IconComponent;
92
+
93
+ declare const IconArrowSquareUpRight: IconComponent;
94
+
95
+ declare const IconArrowUp: IconComponent;
96
+
97
+ declare const IconArrowUpLeft: IconComponent;
98
+
99
+ declare const IconArrowUpRight: IconComponent;
100
+
101
+ declare const IconCalendar: IconComponent;
102
+
103
+ declare const IconCalendarBlank: IconComponent;
104
+
105
+ declare const IconCalendarCheck: IconComponent;
106
+
107
+ declare const IconCalendarMinus: IconComponent;
108
+
109
+ declare const IconCalendarPlus: IconComponent;
110
+
111
+ declare const IconCalendarX: IconComponent;
112
+
113
+ declare const IconChevronCircleDown: IconComponent;
114
+
115
+ declare const IconChevronCircleLeft: IconComponent;
116
+
117
+ declare const IconChevronCircleRight: IconComponent;
118
+
119
+ declare const IconChevronCircleUp: IconComponent;
120
+
121
+ declare const IconChevronDown: IconComponent;
122
+
123
+ declare const IconChevronLeft: IconComponent;
124
+
125
+ declare const IconChevronRight: IconComponent;
126
+
127
+ declare const IconChevronUp: IconComponent;
128
+
129
+ declare const IconCircle: IconComponent;
130
+
131
+ declare const IconCircleDashed: IconComponent;
132
+
133
+ declare const IconClock: IconComponent;
134
+
135
+ declare const IconClockAm: IconComponent;
136
+
137
+ declare const IconClockCcw: IconComponent;
138
+
139
+ declare const IconClockCw: IconComponent;
140
+
141
+ declare const IconClockMinus: IconComponent;
142
+
143
+ declare const IconClockPlus: IconComponent;
144
+
145
+ declare const IconClockPm: IconComponent;
146
+
147
+ declare const IconClockZ: IconComponent;
148
+
149
+ declare const IconEllipsisHorizontal: IconComponent;
150
+
151
+ declare const IconEllipsisVertical: IconComponent;
152
+
153
+ declare const IconEnvelope: IconComponent;
154
+
155
+ declare const IconEnvelopeOpen: IconComponent;
156
+
157
+ declare const IconFile: IconComponent;
158
+
159
+ declare const IconFileArrowDown: IconComponent;
160
+
161
+ declare const IconFileArrowUp: IconComponent;
162
+
163
+ declare const IconFileMinus: IconComponent;
164
+
165
+ declare const IconFilePlus: IconComponent;
166
+
167
+ declare const IconFileText: IconComponent;
168
+
169
+ declare const IconFileX: IconComponent;
170
+
171
+ declare const IconFilter: IconComponent;
172
+
173
+ declare const IconGear: IconComponent;
174
+
175
+ declare const IconHouse: IconComponent;
176
+
177
+ declare const IconInbox: IconComponent;
178
+
179
+ declare const IconInboxArrowDown: IconComponent;
180
+
181
+ declare const IconInboxArrowUp: IconComponent;
182
+
183
+ declare const IconList: IconComponent;
184
+
185
+ declare const IconMenu: IconComponent;
186
+
187
+ declare const IconMinus: IconComponent;
188
+
189
+ declare const IconMinusCircle: IconComponent;
190
+
191
+ declare const IconMinusSquare: IconComponent;
192
+
193
+ declare const IconMoon: IconComponent;
194
+
195
+ declare const IconPlus: IconComponent;
196
+
197
+ declare const IconPlusCircle: IconComponent;
198
+
199
+ declare const IconPlusSquare: IconComponent;
200
+
201
+ declare const IconSearch: IconComponent;
202
+
203
+ declare const IconServer: IconComponent;
204
+
205
+ declare const IconServerStack: IconComponent;
206
+
207
+ declare const IconSquare: IconComponent;
208
+
209
+ declare const IconSquareDashed: IconComponent;
210
+
211
+ declare const IconSun: IconComponent;
212
+
213
+ declare const IconSunDim: IconComponent;
214
+
215
+ declare const IconSunHorizon: IconComponent;
216
+
217
+ declare const IconSunMoon: IconComponent;
218
+
219
+ declare const IconSunrise: IconComponent;
220
+
221
+ declare const IconSunset: IconComponent;
222
+
223
+ declare const IconTable: IconComponent;
224
+
225
+ declare const IconTarget: IconComponent;
226
+
227
+ declare const IconText: IconComponent;
228
+
229
+ declare const IconTextAlignCenter: IconComponent;
230
+
231
+ declare const IconTextAlignJustify: IconComponent;
232
+
233
+ declare const IconTextAlignLeft: IconComponent;
234
+
235
+ declare const IconTextAlignRight: IconComponent;
236
+
237
+ declare const IconTextInitial: IconComponent;
238
+
239
+ declare const IconTextSelect: IconComponent;
240
+
241
+ declare const IconTrash: IconComponent;
242
+
243
+ declare const IconTriangle: IconComponent;
244
+
245
+ declare const IconTriangleDashed: IconComponent;
246
+
247
+ declare const IconUiUx: IconComponent;
248
+
249
+ declare const IconX: IconComponent;
250
+
251
+ declare const IconXCircle: IconComponent;
252
+
253
+ declare const IconXSquare: IconComponent;
254
+
255
+ export { IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconAngle, IconAppWindow, IconArchive, IconArchiveX, IconArrowCircleDown, IconArrowCircleDownLeft, IconArrowCircleDownRight, IconArrowCircleLeft, IconArrowCircleRight, IconArrowCircleUp, IconArrowCircleUpLeft, IconArrowCircleUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowLeft, IconArrowReload, IconArrowReset, IconArrowRight, IconArrowSquareDown, IconArrowSquareDownLeft, IconArrowSquareDownRight, IconArrowSquareLeft, IconArrowSquareRight, IconArrowSquareUp, IconArrowSquareUpLeft, IconArrowSquareUpRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconCalendar, IconCalendarBlank, IconCalendarCheck, IconCalendarMinus, IconCalendarPlus, IconCalendarX, IconChevronCircleDown, IconChevronCircleLeft, IconChevronCircleRight, IconChevronCircleUp, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleDashed, IconClock, IconClockAm, IconClockCcw, IconClockCw, IconClockMinus, IconClockPlus, IconClockPm, IconClockZ, IconEllipsisHorizontal, IconEllipsisVertical, IconEnvelope, IconEnvelopeOpen, IconFile, IconFileArrowDown, IconFileArrowUp, IconFileMinus, IconFilePlus, IconFileText, IconFileX, IconFilter, IconGear, IconHouse, IconInbox, IconInboxArrowDown, IconInboxArrowUp, IconList, IconMenu, IconMinus, IconMinusCircle, IconMinusSquare, IconMoon, IconPlus, IconPlusCircle, IconPlusSquare, type IconProps, IconProvider, type IconProviderProps, IconSearch, IconServer, IconServerStack, IconSquare, IconSquareDashed, IconSun, IconSunDim, IconSunHorizon, IconSunMoon, IconSunrise, IconSunset, IconTable, IconTarget, IconText, IconTextAlignCenter, IconTextAlignJustify, IconTextAlignLeft, IconTextAlignRight, IconTextInitial, IconTextSelect, IconTrash, IconTriangle, IconTriangleDashed, IconUiUx, type IconVariant, type IconWeight, IconX, IconXCircle, IconXSquare };
@@ -0,0 +1,255 @@
1
+ import { SVGProps, Ref, ReactNode, JSX } from 'react';
2
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
+
4
+ type IconVariant = "line" | "duotone" | "solid";
5
+ type IconWeight = "light" | "regular" | "bold";
6
+ interface IconProps extends Omit<SVGProps<SVGSVGElement>, "children"> {
7
+ variant?: IconVariant;
8
+ weight?: IconWeight;
9
+ size?: number | string;
10
+ color?: string;
11
+ ref?: Ref<SVGSVGElement>;
12
+ children?: never;
13
+ }
14
+ interface IconProviderProps {
15
+ variant?: IconVariant;
16
+ weight?: IconWeight;
17
+ size?: number | string;
18
+ color?: string;
19
+ children: ReactNode;
20
+ }
21
+
22
+ declare function IconProvider({ variant, weight, size, color, children, }: IconProviderProps): react_jsx_runtime.JSX.Element;
23
+
24
+ interface IconComponent {
25
+ (props: IconProps): JSX.Element;
26
+ displayName?: string;
27
+ }
28
+
29
+ declare const IconAlignBottom: IconComponent;
30
+
31
+ declare const IconAlignCenterHorizontal: IconComponent;
32
+
33
+ declare const IconAlignCenterVertical: IconComponent;
34
+
35
+ declare const IconAlignLeft: IconComponent;
36
+
37
+ declare const IconAlignRight: IconComponent;
38
+
39
+ declare const IconAlignTop: IconComponent;
40
+
41
+ declare const IconAngle: IconComponent;
42
+
43
+ declare const IconAppWindow: IconComponent;
44
+
45
+ declare const IconArchive: IconComponent;
46
+
47
+ declare const IconArchiveX: IconComponent;
48
+
49
+ declare const IconArrowCircleDown: IconComponent;
50
+
51
+ declare const IconArrowCircleDownLeft: IconComponent;
52
+
53
+ declare const IconArrowCircleDownRight: IconComponent;
54
+
55
+ declare const IconArrowCircleLeft: IconComponent;
56
+
57
+ declare const IconArrowCircleRight: IconComponent;
58
+
59
+ declare const IconArrowCircleUp: IconComponent;
60
+
61
+ declare const IconArrowCircleUpLeft: IconComponent;
62
+
63
+ declare const IconArrowCircleUpRight: IconComponent;
64
+
65
+ declare const IconArrowDown: IconComponent;
66
+
67
+ declare const IconArrowDownLeft: IconComponent;
68
+
69
+ declare const IconArrowDownRight: IconComponent;
70
+
71
+ declare const IconArrowLeft: IconComponent;
72
+
73
+ declare const IconArrowReload: IconComponent;
74
+
75
+ declare const IconArrowReset: IconComponent;
76
+
77
+ declare const IconArrowRight: IconComponent;
78
+
79
+ declare const IconArrowSquareDown: IconComponent;
80
+
81
+ declare const IconArrowSquareDownLeft: IconComponent;
82
+
83
+ declare const IconArrowSquareDownRight: IconComponent;
84
+
85
+ declare const IconArrowSquareLeft: IconComponent;
86
+
87
+ declare const IconArrowSquareRight: IconComponent;
88
+
89
+ declare const IconArrowSquareUp: IconComponent;
90
+
91
+ declare const IconArrowSquareUpLeft: IconComponent;
92
+
93
+ declare const IconArrowSquareUpRight: IconComponent;
94
+
95
+ declare const IconArrowUp: IconComponent;
96
+
97
+ declare const IconArrowUpLeft: IconComponent;
98
+
99
+ declare const IconArrowUpRight: IconComponent;
100
+
101
+ declare const IconCalendar: IconComponent;
102
+
103
+ declare const IconCalendarBlank: IconComponent;
104
+
105
+ declare const IconCalendarCheck: IconComponent;
106
+
107
+ declare const IconCalendarMinus: IconComponent;
108
+
109
+ declare const IconCalendarPlus: IconComponent;
110
+
111
+ declare const IconCalendarX: IconComponent;
112
+
113
+ declare const IconChevronCircleDown: IconComponent;
114
+
115
+ declare const IconChevronCircleLeft: IconComponent;
116
+
117
+ declare const IconChevronCircleRight: IconComponent;
118
+
119
+ declare const IconChevronCircleUp: IconComponent;
120
+
121
+ declare const IconChevronDown: IconComponent;
122
+
123
+ declare const IconChevronLeft: IconComponent;
124
+
125
+ declare const IconChevronRight: IconComponent;
126
+
127
+ declare const IconChevronUp: IconComponent;
128
+
129
+ declare const IconCircle: IconComponent;
130
+
131
+ declare const IconCircleDashed: IconComponent;
132
+
133
+ declare const IconClock: IconComponent;
134
+
135
+ declare const IconClockAm: IconComponent;
136
+
137
+ declare const IconClockCcw: IconComponent;
138
+
139
+ declare const IconClockCw: IconComponent;
140
+
141
+ declare const IconClockMinus: IconComponent;
142
+
143
+ declare const IconClockPlus: IconComponent;
144
+
145
+ declare const IconClockPm: IconComponent;
146
+
147
+ declare const IconClockZ: IconComponent;
148
+
149
+ declare const IconEllipsisHorizontal: IconComponent;
150
+
151
+ declare const IconEllipsisVertical: IconComponent;
152
+
153
+ declare const IconEnvelope: IconComponent;
154
+
155
+ declare const IconEnvelopeOpen: IconComponent;
156
+
157
+ declare const IconFile: IconComponent;
158
+
159
+ declare const IconFileArrowDown: IconComponent;
160
+
161
+ declare const IconFileArrowUp: IconComponent;
162
+
163
+ declare const IconFileMinus: IconComponent;
164
+
165
+ declare const IconFilePlus: IconComponent;
166
+
167
+ declare const IconFileText: IconComponent;
168
+
169
+ declare const IconFileX: IconComponent;
170
+
171
+ declare const IconFilter: IconComponent;
172
+
173
+ declare const IconGear: IconComponent;
174
+
175
+ declare const IconHouse: IconComponent;
176
+
177
+ declare const IconInbox: IconComponent;
178
+
179
+ declare const IconInboxArrowDown: IconComponent;
180
+
181
+ declare const IconInboxArrowUp: IconComponent;
182
+
183
+ declare const IconList: IconComponent;
184
+
185
+ declare const IconMenu: IconComponent;
186
+
187
+ declare const IconMinus: IconComponent;
188
+
189
+ declare const IconMinusCircle: IconComponent;
190
+
191
+ declare const IconMinusSquare: IconComponent;
192
+
193
+ declare const IconMoon: IconComponent;
194
+
195
+ declare const IconPlus: IconComponent;
196
+
197
+ declare const IconPlusCircle: IconComponent;
198
+
199
+ declare const IconPlusSquare: IconComponent;
200
+
201
+ declare const IconSearch: IconComponent;
202
+
203
+ declare const IconServer: IconComponent;
204
+
205
+ declare const IconServerStack: IconComponent;
206
+
207
+ declare const IconSquare: IconComponent;
208
+
209
+ declare const IconSquareDashed: IconComponent;
210
+
211
+ declare const IconSun: IconComponent;
212
+
213
+ declare const IconSunDim: IconComponent;
214
+
215
+ declare const IconSunHorizon: IconComponent;
216
+
217
+ declare const IconSunMoon: IconComponent;
218
+
219
+ declare const IconSunrise: IconComponent;
220
+
221
+ declare const IconSunset: IconComponent;
222
+
223
+ declare const IconTable: IconComponent;
224
+
225
+ declare const IconTarget: IconComponent;
226
+
227
+ declare const IconText: IconComponent;
228
+
229
+ declare const IconTextAlignCenter: IconComponent;
230
+
231
+ declare const IconTextAlignJustify: IconComponent;
232
+
233
+ declare const IconTextAlignLeft: IconComponent;
234
+
235
+ declare const IconTextAlignRight: IconComponent;
236
+
237
+ declare const IconTextInitial: IconComponent;
238
+
239
+ declare const IconTextSelect: IconComponent;
240
+
241
+ declare const IconTrash: IconComponent;
242
+
243
+ declare const IconTriangle: IconComponent;
244
+
245
+ declare const IconTriangleDashed: IconComponent;
246
+
247
+ declare const IconUiUx: IconComponent;
248
+
249
+ declare const IconX: IconComponent;
250
+
251
+ declare const IconXCircle: IconComponent;
252
+
253
+ declare const IconXSquare: IconComponent;
254
+
255
+ export { IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconAngle, IconAppWindow, IconArchive, IconArchiveX, IconArrowCircleDown, IconArrowCircleDownLeft, IconArrowCircleDownRight, IconArrowCircleLeft, IconArrowCircleRight, IconArrowCircleUp, IconArrowCircleUpLeft, IconArrowCircleUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowLeft, IconArrowReload, IconArrowReset, IconArrowRight, IconArrowSquareDown, IconArrowSquareDownLeft, IconArrowSquareDownRight, IconArrowSquareLeft, IconArrowSquareRight, IconArrowSquareUp, IconArrowSquareUpLeft, IconArrowSquareUpRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconCalendar, IconCalendarBlank, IconCalendarCheck, IconCalendarMinus, IconCalendarPlus, IconCalendarX, IconChevronCircleDown, IconChevronCircleLeft, IconChevronCircleRight, IconChevronCircleUp, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleDashed, IconClock, IconClockAm, IconClockCcw, IconClockCw, IconClockMinus, IconClockPlus, IconClockPm, IconClockZ, IconEllipsisHorizontal, IconEllipsisVertical, IconEnvelope, IconEnvelopeOpen, IconFile, IconFileArrowDown, IconFileArrowUp, IconFileMinus, IconFilePlus, IconFileText, IconFileX, IconFilter, IconGear, IconHouse, IconInbox, IconInboxArrowDown, IconInboxArrowUp, IconList, IconMenu, IconMinus, IconMinusCircle, IconMinusSquare, IconMoon, IconPlus, IconPlusCircle, IconPlusSquare, type IconProps, IconProvider, type IconProviderProps, IconSearch, IconServer, IconServerStack, IconSquare, IconSquareDashed, IconSun, IconSunDim, IconSunHorizon, IconSunMoon, IconSunrise, IconSunset, IconTable, IconTarget, IconText, IconTextAlignCenter, IconTextAlignJustify, IconTextAlignLeft, IconTextAlignRight, IconTextInitial, IconTextSelect, IconTrash, IconTriangle, IconTriangleDashed, IconUiUx, type IconVariant, type IconWeight, IconX, IconXCircle, IconXSquare };