magick-icons 0.1.47 → 0.1.49
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 +181 -1
- package/index.d.ts +181 -1
- package/index.js +173 -15
- package/index.js.map +1 -1
- package/index.mjs +163 -15
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -72,6 +72,60 @@ interface IconSizeProps extends React.SVGProps<SVGSVGElement> {
|
|
|
72
72
|
*/
|
|
73
73
|
declare const IconSize: React.ForwardRefExoticComponent<Omit<IconSizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
74
|
|
|
75
|
+
/**
|
|
76
|
+
* Props for the Image8 icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface Image8Props extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Image8 icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { Image8 } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <Image8 size={24} className="text-blue-500" />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Props for the Legal icon component
|
|
95
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
+
*/
|
|
97
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
+
size?: number | string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Legal icon component
|
|
102
|
+
* @example
|
|
103
|
+
* ```tsx
|
|
104
|
+
* import { Legal } from 'magick-icons';
|
|
105
|
+
*
|
|
106
|
+
* <Legal size={24} className="text-blue-500" />
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
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
|
+
|
|
75
129
|
/**
|
|
76
130
|
* Props for the Magicko3DotsMore icon component
|
|
77
131
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -126,4 +180,130 @@ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
|
|
|
126
180
|
*/
|
|
127
181
|
declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
182
|
|
|
129
|
-
|
|
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 };
|
package/index.d.ts
CHANGED
|
@@ -72,6 +72,60 @@ interface IconSizeProps extends React.SVGProps<SVGSVGElement> {
|
|
|
72
72
|
*/
|
|
73
73
|
declare const IconSize: React.ForwardRefExoticComponent<Omit<IconSizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
74
|
|
|
75
|
+
/**
|
|
76
|
+
* Props for the Image8 icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface Image8Props extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Image8 icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { Image8 } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <Image8 size={24} className="text-blue-500" />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Props for the Legal icon component
|
|
95
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
+
*/
|
|
97
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
+
size?: number | string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Legal icon component
|
|
102
|
+
* @example
|
|
103
|
+
* ```tsx
|
|
104
|
+
* import { Legal } from 'magick-icons';
|
|
105
|
+
*
|
|
106
|
+
* <Legal size={24} className="text-blue-500" />
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
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
|
+
|
|
75
129
|
/**
|
|
76
130
|
* Props for the Magicko3DotsMore icon component
|
|
77
131
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -126,4 +180,130 @@ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
|
|
|
126
180
|
*/
|
|
127
181
|
declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
182
|
|
|
129
|
-
|
|
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 };
|