magick-icons 0.1.49 → 0.1.51
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 +37 -235
- package/index.d.ts +37 -235
- package/index.js +55 -223
- package/index.js.map +1 -1
- package/index.mjs +57 -214
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,309 +1,111 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Props for the
|
|
4
|
+
* Props for the Add1 icon component
|
|
5
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
6
|
*/
|
|
7
|
-
interface
|
|
7
|
+
interface Add1Props extends React.SVGProps<SVGSVGElement> {
|
|
8
8
|
size?: number | string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Add1 icon component
|
|
12
12
|
* @example
|
|
13
13
|
* ```tsx
|
|
14
|
-
* import {
|
|
14
|
+
* import { Add1 } from 'magick-icons';
|
|
15
15
|
*
|
|
16
|
-
* <
|
|
16
|
+
* <Add1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
declare const
|
|
19
|
+
declare const Add1: React.ForwardRefExoticComponent<Omit<Add1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
* Props for the
|
|
22
|
+
* Props for the Add11 icon component
|
|
23
23
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
24
|
*/
|
|
25
|
-
interface
|
|
25
|
+
interface Add11Props extends React.SVGProps<SVGSVGElement> {
|
|
26
26
|
size?: number | string;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* Add11 icon component
|
|
30
30
|
* @example
|
|
31
31
|
* ```tsx
|
|
32
|
-
* import {
|
|
32
|
+
* import { Add11 } from 'magick-icons';
|
|
33
33
|
*
|
|
34
|
-
* <
|
|
34
|
+
* <Add11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
37
|
-
declare const
|
|
37
|
+
declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* Props for the
|
|
40
|
+
* Props for the AddCircle1 icon component
|
|
41
41
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
42
|
*/
|
|
43
|
-
interface
|
|
43
|
+
interface AddCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
44
44
|
size?: number | string;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* AddCircle1 icon component
|
|
48
48
|
* @example
|
|
49
49
|
* ```tsx
|
|
50
|
-
* import {
|
|
50
|
+
* import { AddCircle1 } from 'magick-icons';
|
|
51
51
|
*
|
|
52
|
-
* <
|
|
52
|
+
* <AddCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
53
|
* ```
|
|
54
54
|
*/
|
|
55
|
-
declare const
|
|
55
|
+
declare const AddCircle1: React.ForwardRefExoticComponent<Omit<AddCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
|
-
* Props for the
|
|
58
|
+
* Props for the AddItem1 icon component
|
|
59
59
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
60
|
*/
|
|
61
|
-
interface
|
|
61
|
+
interface AddItem1Props extends React.SVGProps<SVGSVGElement> {
|
|
62
62
|
size?: number | string;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* AddItem1 icon component
|
|
66
66
|
* @example
|
|
67
67
|
* ```tsx
|
|
68
|
-
* import {
|
|
68
|
+
* import { AddItem1 } from 'magick-icons';
|
|
69
69
|
*
|
|
70
|
-
* <
|
|
70
|
+
* <AddItem1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
71
|
* ```
|
|
72
72
|
*/
|
|
73
|
-
declare const
|
|
73
|
+
declare const AddItem1: React.ForwardRefExoticComponent<Omit<AddItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
74
|
|
|
75
75
|
/**
|
|
76
|
-
* Props for the
|
|
76
|
+
* Props for the Icon3dcube1 icon component
|
|
77
77
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
78
|
*/
|
|
79
|
-
interface
|
|
79
|
+
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
80
80
|
size?: number | string;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* Icon3dcube1 icon component
|
|
84
84
|
* @example
|
|
85
85
|
* ```tsx
|
|
86
|
-
* import {
|
|
86
|
+
* import { Icon3dcube1 } from 'magick-icons';
|
|
87
87
|
*
|
|
88
|
-
* <
|
|
88
|
+
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
89
|
* ```
|
|
90
90
|
*/
|
|
91
|
-
declare const
|
|
91
|
+
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
92
|
|
|
93
93
|
/**
|
|
94
|
-
* Props for the
|
|
94
|
+
* Props for the Icon3square1 icon component
|
|
95
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
96
|
*/
|
|
97
|
-
interface
|
|
97
|
+
interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
98
98
|
size?: number | string;
|
|
99
99
|
}
|
|
100
100
|
/**
|
|
101
|
-
*
|
|
101
|
+
* Icon3square1 icon component
|
|
102
102
|
* @example
|
|
103
103
|
* ```tsx
|
|
104
|
-
* import {
|
|
104
|
+
* import { Icon3square1 } from 'magick-icons';
|
|
105
105
|
*
|
|
106
|
-
* <
|
|
106
|
+
* <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
107
|
* ```
|
|
108
108
|
*/
|
|
109
|
-
declare const
|
|
109
|
+
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
110
|
|
|
111
|
-
|
|
112
|
-
* Props for the LegalModule icon component
|
|
113
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
|
-
*/
|
|
115
|
-
interface LegalModuleProps extends React.SVGProps<SVGSVGElement> {
|
|
116
|
-
size?: number | string;
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
* LegalModule icon component
|
|
120
|
-
* @example
|
|
121
|
-
* ```tsx
|
|
122
|
-
* import { LegalModule } from 'magick-icons';
|
|
123
|
-
*
|
|
124
|
-
* <LegalModule size={24} className="text-blue-500" />
|
|
125
|
-
* ```
|
|
126
|
-
*/
|
|
127
|
-
declare const LegalModule: React.ForwardRefExoticComponent<Omit<LegalModuleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
-
|
|
129
|
-
/**
|
|
130
|
-
* Props for the Magicko3DotsMore icon component
|
|
131
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
|
-
*/
|
|
133
|
-
interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
|
|
134
|
-
size?: number | string;
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* Magicko3DotsMore icon component
|
|
138
|
-
* @example
|
|
139
|
-
* ```tsx
|
|
140
|
-
* import { Magicko3DotsMore } from 'magick-icons';
|
|
141
|
-
*
|
|
142
|
-
* <Magicko3DotsMore size={24} className="text-blue-500" />
|
|
143
|
-
* ```
|
|
144
|
-
*/
|
|
145
|
-
declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
-
|
|
147
|
-
/**
|
|
148
|
-
* Props for the MagickoArchive icon component
|
|
149
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
150
|
-
*/
|
|
151
|
-
interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {
|
|
152
|
-
size?: number | string;
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* MagickoArchive icon component
|
|
156
|
-
* @example
|
|
157
|
-
* ```tsx
|
|
158
|
-
* import { MagickoArchive } from 'magick-icons';
|
|
159
|
-
*
|
|
160
|
-
* <MagickoArchive size={24} className="text-blue-500" />
|
|
161
|
-
* ```
|
|
162
|
-
*/
|
|
163
|
-
declare const MagickoArchive: React.ForwardRefExoticComponent<Omit<MagickoArchiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
-
|
|
165
|
-
/**
|
|
166
|
-
* Props for the MagickoChart icon component
|
|
167
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
168
|
-
*/
|
|
169
|
-
interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
|
|
170
|
-
size?: number | string;
|
|
171
|
-
}
|
|
172
|
-
/**
|
|
173
|
-
* MagickoChart icon component
|
|
174
|
-
* @example
|
|
175
|
-
* ```tsx
|
|
176
|
-
* import { MagickoChart } from 'magick-icons';
|
|
177
|
-
*
|
|
178
|
-
* <MagickoChart size={24} className="text-blue-500" />
|
|
179
|
-
* ```
|
|
180
|
-
*/
|
|
181
|
-
declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
-
|
|
183
|
-
/**
|
|
184
|
-
* Props for the MagickoKey icon component
|
|
185
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
|
-
*/
|
|
187
|
-
interface MagickoKeyProps extends React.SVGProps<SVGSVGElement> {
|
|
188
|
-
size?: number | string;
|
|
189
|
-
}
|
|
190
|
-
/**
|
|
191
|
-
* MagickoKey icon component
|
|
192
|
-
* @example
|
|
193
|
-
* ```tsx
|
|
194
|
-
* import { MagickoKey } from 'magick-icons';
|
|
195
|
-
*
|
|
196
|
-
* <MagickoKey size={24} className="text-blue-500" />
|
|
197
|
-
* ```
|
|
198
|
-
*/
|
|
199
|
-
declare const MagickoKey: React.ForwardRefExoticComponent<Omit<MagickoKeyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* Props for the MagickoProfileCircle icon component
|
|
203
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
204
|
-
*/
|
|
205
|
-
interface MagickoProfileCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
206
|
-
size?: number | string;
|
|
207
|
-
}
|
|
208
|
-
/**
|
|
209
|
-
* MagickoProfileCircle icon component
|
|
210
|
-
* @example
|
|
211
|
-
* ```tsx
|
|
212
|
-
* import { MagickoProfileCircle } from 'magick-icons';
|
|
213
|
-
*
|
|
214
|
-
* <MagickoProfileCircle size={24} className="text-blue-500" />
|
|
215
|
-
* ```
|
|
216
|
-
*/
|
|
217
|
-
declare const MagickoProfileCircle: React.ForwardRefExoticComponent<Omit<MagickoProfileCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* Props for the MagickoSidebarLeft icon component
|
|
221
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
-
*/
|
|
223
|
-
interface MagickoSidebarLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
224
|
-
size?: number | string;
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* MagickoSidebarLeft icon component
|
|
228
|
-
* @example
|
|
229
|
-
* ```tsx
|
|
230
|
-
* import { MagickoSidebarLeft } from 'magick-icons';
|
|
231
|
-
*
|
|
232
|
-
* <MagickoSidebarLeft size={24} className="text-blue-500" />
|
|
233
|
-
* ```
|
|
234
|
-
*/
|
|
235
|
-
declare const MagickoSidebarLeft: React.ForwardRefExoticComponent<Omit<MagickoSidebarLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* Props for the MagickoSortDescending icon component
|
|
239
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
-
*/
|
|
241
|
-
interface MagickoSortDescendingProps extends React.SVGProps<SVGSVGElement> {
|
|
242
|
-
size?: number | string;
|
|
243
|
-
}
|
|
244
|
-
/**
|
|
245
|
-
* MagickoSortDescending icon component
|
|
246
|
-
* @example
|
|
247
|
-
* ```tsx
|
|
248
|
-
* import { MagickoSortDescending } from 'magick-icons';
|
|
249
|
-
*
|
|
250
|
-
* <MagickoSortDescending size={24} className="text-blue-500" />
|
|
251
|
-
* ```
|
|
252
|
-
*/
|
|
253
|
-
declare const MagickoSortDescending: React.ForwardRefExoticComponent<Omit<MagickoSortDescendingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
* Props for the MagickoSpeaker icon component
|
|
257
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
-
*/
|
|
259
|
-
interface MagickoSpeakerProps extends React.SVGProps<SVGSVGElement> {
|
|
260
|
-
size?: number | string;
|
|
261
|
-
}
|
|
262
|
-
/**
|
|
263
|
-
* MagickoSpeaker icon component
|
|
264
|
-
* @example
|
|
265
|
-
* ```tsx
|
|
266
|
-
* import { MagickoSpeaker } from 'magick-icons';
|
|
267
|
-
*
|
|
268
|
-
* <MagickoSpeaker size={24} className="text-blue-500" />
|
|
269
|
-
* ```
|
|
270
|
-
*/
|
|
271
|
-
declare const MagickoSpeaker: React.ForwardRefExoticComponent<Omit<MagickoSpeakerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
-
|
|
273
|
-
/**
|
|
274
|
-
* Props for the MagickoTelescope icon component
|
|
275
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
-
*/
|
|
277
|
-
interface MagickoTelescopeProps extends React.SVGProps<SVGSVGElement> {
|
|
278
|
-
size?: number | string;
|
|
279
|
-
}
|
|
280
|
-
/**
|
|
281
|
-
* MagickoTelescope icon component
|
|
282
|
-
* @example
|
|
283
|
-
* ```tsx
|
|
284
|
-
* import { MagickoTelescope } from 'magick-icons';
|
|
285
|
-
*
|
|
286
|
-
* <MagickoTelescope size={24} className="text-blue-500" />
|
|
287
|
-
* ```
|
|
288
|
-
*/
|
|
289
|
-
declare const MagickoTelescope: React.ForwardRefExoticComponent<Omit<MagickoTelescopeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
-
|
|
291
|
-
/**
|
|
292
|
-
* Props for the Magicpen icon component
|
|
293
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
-
*/
|
|
295
|
-
interface MagicpenProps extends React.SVGProps<SVGSVGElement> {
|
|
296
|
-
size?: number | string;
|
|
297
|
-
}
|
|
298
|
-
/**
|
|
299
|
-
* Magicpen icon component
|
|
300
|
-
* @example
|
|
301
|
-
* ```tsx
|
|
302
|
-
* import { Magicpen } from 'magick-icons';
|
|
303
|
-
*
|
|
304
|
-
* <Magicpen size={24} className="text-blue-500" />
|
|
305
|
-
* ```
|
|
306
|
-
*/
|
|
307
|
-
declare const Magicpen: React.ForwardRefExoticComponent<Omit<MagicpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
-
|
|
309
|
-
export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Image8, type Image8Props, Legal, LegalModule, type LegalModuleProps, type LegalProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps, MagickoKey, type MagickoKeyProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSortDescending, type MagickoSortDescendingProps, MagickoSpeaker, type MagickoSpeakerProps, MagickoTelescope, type MagickoTelescopeProps, Magicpen, type MagicpenProps };
|
|
111
|
+
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props };
|