magick-icons 0.1.132 → 0.1.133

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 CHANGED
@@ -2286,6 +2286,168 @@ interface MagickoListProps extends React.SVGProps<SVGSVGElement> {
2286
2286
  */
2287
2287
  declare const MagickoList: React.ForwardRefExoticComponent<Omit<MagickoListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2288
2288
 
2289
+ /**
2290
+ * Props for the MagickoTrash icon component
2291
+ * @property {number | string} [size] - Size of the icon (default: 24)
2292
+ */
2293
+ interface MagickoTrashProps extends React.SVGProps<SVGSVGElement> {
2294
+ size?: number | string;
2295
+ }
2296
+ /**
2297
+ * MagickoTrash icon component
2298
+ * @example
2299
+ * ```tsx
2300
+ * import { MagickoTrash } from 'magick-icons';
2301
+ *
2302
+ * <MagickoTrash size={24} className="text-blue-500" strokeWidth={2} />
2303
+ * ```
2304
+ */
2305
+ declare const MagickoTrash: React.ForwardRefExoticComponent<Omit<MagickoTrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2306
+
2307
+ /**
2308
+ * Props for the MagickoTrendDown icon component
2309
+ * @property {number | string} [size] - Size of the icon (default: 24)
2310
+ */
2311
+ interface MagickoTrendDownProps extends React.SVGProps<SVGSVGElement> {
2312
+ size?: number | string;
2313
+ }
2314
+ /**
2315
+ * MagickoTrendDown icon component
2316
+ * @example
2317
+ * ```tsx
2318
+ * import { MagickoTrendDown } from 'magick-icons';
2319
+ *
2320
+ * <MagickoTrendDown size={24} className="text-blue-500" strokeWidth={2} />
2321
+ * ```
2322
+ */
2323
+ declare const MagickoTrendDown: React.ForwardRefExoticComponent<Omit<MagickoTrendDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2324
+
2325
+ /**
2326
+ * Props for the MagickoTrendUp icon component
2327
+ * @property {number | string} [size] - Size of the icon (default: 24)
2328
+ */
2329
+ interface MagickoTrendUpProps extends React.SVGProps<SVGSVGElement> {
2330
+ size?: number | string;
2331
+ }
2332
+ /**
2333
+ * MagickoTrendUp icon component
2334
+ * @example
2335
+ * ```tsx
2336
+ * import { MagickoTrendUp } from 'magick-icons';
2337
+ *
2338
+ * <MagickoTrendUp size={24} className="text-blue-500" strokeWidth={2} />
2339
+ * ```
2340
+ */
2341
+ declare const MagickoTrendUp: React.ForwardRefExoticComponent<Omit<MagickoTrendUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2342
+
2343
+ /**
2344
+ * Props for the MagickoUndoArrow icon component
2345
+ * @property {number | string} [size] - Size of the icon (default: 24)
2346
+ */
2347
+ interface MagickoUndoArrowProps extends React.SVGProps<SVGSVGElement> {
2348
+ size?: number | string;
2349
+ }
2350
+ /**
2351
+ * MagickoUndoArrow icon component
2352
+ * @example
2353
+ * ```tsx
2354
+ * import { MagickoUndoArrow } from 'magick-icons';
2355
+ *
2356
+ * <MagickoUndoArrow size={24} className="text-blue-500" strokeWidth={2} />
2357
+ * ```
2358
+ */
2359
+ declare const MagickoUndoArrow: React.ForwardRefExoticComponent<Omit<MagickoUndoArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2360
+
2361
+ /**
2362
+ * Props for the MagickoUnlimited icon component
2363
+ * @property {number | string} [size] - Size of the icon (default: 24)
2364
+ */
2365
+ interface MagickoUnlimitedProps extends React.SVGProps<SVGSVGElement> {
2366
+ size?: number | string;
2367
+ }
2368
+ /**
2369
+ * MagickoUnlimited icon component
2370
+ * @example
2371
+ * ```tsx
2372
+ * import { MagickoUnlimited } from 'magick-icons';
2373
+ *
2374
+ * <MagickoUnlimited size={24} className="text-blue-500" strokeWidth={2} />
2375
+ * ```
2376
+ */
2377
+ declare const MagickoUnlimited: React.ForwardRefExoticComponent<Omit<MagickoUnlimitedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2378
+
2379
+ /**
2380
+ * Props for the MagickoUploadArrow icon component
2381
+ * @property {number | string} [size] - Size of the icon (default: 24)
2382
+ */
2383
+ interface MagickoUploadArrowProps extends React.SVGProps<SVGSVGElement> {
2384
+ size?: number | string;
2385
+ }
2386
+ /**
2387
+ * MagickoUploadArrow icon component
2388
+ * @example
2389
+ * ```tsx
2390
+ * import { MagickoUploadArrow } from 'magick-icons';
2391
+ *
2392
+ * <MagickoUploadArrow size={24} className="text-blue-500" strokeWidth={2} />
2393
+ * ```
2394
+ */
2395
+ declare const MagickoUploadArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2396
+
2397
+ /**
2398
+ * Props for the MagickoUploadHorizontalArrow icon component
2399
+ * @property {number | string} [size] - Size of the icon (default: 24)
2400
+ */
2401
+ interface MagickoUploadHorizontalArrowProps extends React.SVGProps<SVGSVGElement> {
2402
+ size?: number | string;
2403
+ }
2404
+ /**
2405
+ * MagickoUploadHorizontalArrow icon component
2406
+ * @example
2407
+ * ```tsx
2408
+ * import { MagickoUploadHorizontalArrow } from 'magick-icons';
2409
+ *
2410
+ * <MagickoUploadHorizontalArrow size={24} className="text-blue-500" strokeWidth={2} />
2411
+ * ```
2412
+ */
2413
+ declare const MagickoUploadHorizontalArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadHorizontalArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2414
+
2415
+ /**
2416
+ * Props for the MagickoUpsideDownFace icon component
2417
+ * @property {number | string} [size] - Size of the icon (default: 24)
2418
+ */
2419
+ interface MagickoUpsideDownFaceProps extends React.SVGProps<SVGSVGElement> {
2420
+ size?: number | string;
2421
+ }
2422
+ /**
2423
+ * MagickoUpsideDownFace icon component
2424
+ * @example
2425
+ * ```tsx
2426
+ * import { MagickoUpsideDownFace } from 'magick-icons';
2427
+ *
2428
+ * <MagickoUpsideDownFace size={24} className="text-blue-500" strokeWidth={2} />
2429
+ * ```
2430
+ */
2431
+ declare const MagickoUpsideDownFace: React.ForwardRefExoticComponent<Omit<MagickoUpsideDownFaceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2432
+
2433
+ /**
2434
+ * Props for the MagickoUser icon component
2435
+ * @property {number | string} [size] - Size of the icon (default: 24)
2436
+ */
2437
+ interface MagickoUserProps extends React.SVGProps<SVGSVGElement> {
2438
+ size?: number | string;
2439
+ }
2440
+ /**
2441
+ * MagickoUser icon component
2442
+ * @example
2443
+ * ```tsx
2444
+ * import { MagickoUser } from 'magick-icons';
2445
+ *
2446
+ * <MagickoUser size={24} className="text-blue-500" strokeWidth={2} />
2447
+ * ```
2448
+ */
2449
+ declare const MagickoUser: React.ForwardRefExoticComponent<Omit<MagickoUserProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2450
+
2289
2451
  /**
2290
2452
  * Props for the Marketing icon component
2291
2453
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -2574,4 +2736,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
2574
2736
  */
2575
2737
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2576
2738
 
2577
- export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, 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, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
2739
+ export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, 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, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, MagickoTrash, type MagickoTrashProps, MagickoTrendDown, type MagickoTrendDownProps, MagickoTrendUp, type MagickoTrendUpProps, MagickoUndoArrow, type MagickoUndoArrowProps, MagickoUnlimited, type MagickoUnlimitedProps, MagickoUploadArrow, type MagickoUploadArrowProps, MagickoUploadHorizontalArrow, type MagickoUploadHorizontalArrowProps, MagickoUpsideDownFace, type MagickoUpsideDownFaceProps, MagickoUser, type MagickoUserProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
package/index.d.ts CHANGED
@@ -2286,6 +2286,168 @@ interface MagickoListProps extends React.SVGProps<SVGSVGElement> {
2286
2286
  */
2287
2287
  declare const MagickoList: React.ForwardRefExoticComponent<Omit<MagickoListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2288
2288
 
2289
+ /**
2290
+ * Props for the MagickoTrash icon component
2291
+ * @property {number | string} [size] - Size of the icon (default: 24)
2292
+ */
2293
+ interface MagickoTrashProps extends React.SVGProps<SVGSVGElement> {
2294
+ size?: number | string;
2295
+ }
2296
+ /**
2297
+ * MagickoTrash icon component
2298
+ * @example
2299
+ * ```tsx
2300
+ * import { MagickoTrash } from 'magick-icons';
2301
+ *
2302
+ * <MagickoTrash size={24} className="text-blue-500" strokeWidth={2} />
2303
+ * ```
2304
+ */
2305
+ declare const MagickoTrash: React.ForwardRefExoticComponent<Omit<MagickoTrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2306
+
2307
+ /**
2308
+ * Props for the MagickoTrendDown icon component
2309
+ * @property {number | string} [size] - Size of the icon (default: 24)
2310
+ */
2311
+ interface MagickoTrendDownProps extends React.SVGProps<SVGSVGElement> {
2312
+ size?: number | string;
2313
+ }
2314
+ /**
2315
+ * MagickoTrendDown icon component
2316
+ * @example
2317
+ * ```tsx
2318
+ * import { MagickoTrendDown } from 'magick-icons';
2319
+ *
2320
+ * <MagickoTrendDown size={24} className="text-blue-500" strokeWidth={2} />
2321
+ * ```
2322
+ */
2323
+ declare const MagickoTrendDown: React.ForwardRefExoticComponent<Omit<MagickoTrendDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2324
+
2325
+ /**
2326
+ * Props for the MagickoTrendUp icon component
2327
+ * @property {number | string} [size] - Size of the icon (default: 24)
2328
+ */
2329
+ interface MagickoTrendUpProps extends React.SVGProps<SVGSVGElement> {
2330
+ size?: number | string;
2331
+ }
2332
+ /**
2333
+ * MagickoTrendUp icon component
2334
+ * @example
2335
+ * ```tsx
2336
+ * import { MagickoTrendUp } from 'magick-icons';
2337
+ *
2338
+ * <MagickoTrendUp size={24} className="text-blue-500" strokeWidth={2} />
2339
+ * ```
2340
+ */
2341
+ declare const MagickoTrendUp: React.ForwardRefExoticComponent<Omit<MagickoTrendUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2342
+
2343
+ /**
2344
+ * Props for the MagickoUndoArrow icon component
2345
+ * @property {number | string} [size] - Size of the icon (default: 24)
2346
+ */
2347
+ interface MagickoUndoArrowProps extends React.SVGProps<SVGSVGElement> {
2348
+ size?: number | string;
2349
+ }
2350
+ /**
2351
+ * MagickoUndoArrow icon component
2352
+ * @example
2353
+ * ```tsx
2354
+ * import { MagickoUndoArrow } from 'magick-icons';
2355
+ *
2356
+ * <MagickoUndoArrow size={24} className="text-blue-500" strokeWidth={2} />
2357
+ * ```
2358
+ */
2359
+ declare const MagickoUndoArrow: React.ForwardRefExoticComponent<Omit<MagickoUndoArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2360
+
2361
+ /**
2362
+ * Props for the MagickoUnlimited icon component
2363
+ * @property {number | string} [size] - Size of the icon (default: 24)
2364
+ */
2365
+ interface MagickoUnlimitedProps extends React.SVGProps<SVGSVGElement> {
2366
+ size?: number | string;
2367
+ }
2368
+ /**
2369
+ * MagickoUnlimited icon component
2370
+ * @example
2371
+ * ```tsx
2372
+ * import { MagickoUnlimited } from 'magick-icons';
2373
+ *
2374
+ * <MagickoUnlimited size={24} className="text-blue-500" strokeWidth={2} />
2375
+ * ```
2376
+ */
2377
+ declare const MagickoUnlimited: React.ForwardRefExoticComponent<Omit<MagickoUnlimitedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2378
+
2379
+ /**
2380
+ * Props for the MagickoUploadArrow icon component
2381
+ * @property {number | string} [size] - Size of the icon (default: 24)
2382
+ */
2383
+ interface MagickoUploadArrowProps extends React.SVGProps<SVGSVGElement> {
2384
+ size?: number | string;
2385
+ }
2386
+ /**
2387
+ * MagickoUploadArrow icon component
2388
+ * @example
2389
+ * ```tsx
2390
+ * import { MagickoUploadArrow } from 'magick-icons';
2391
+ *
2392
+ * <MagickoUploadArrow size={24} className="text-blue-500" strokeWidth={2} />
2393
+ * ```
2394
+ */
2395
+ declare const MagickoUploadArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2396
+
2397
+ /**
2398
+ * Props for the MagickoUploadHorizontalArrow icon component
2399
+ * @property {number | string} [size] - Size of the icon (default: 24)
2400
+ */
2401
+ interface MagickoUploadHorizontalArrowProps extends React.SVGProps<SVGSVGElement> {
2402
+ size?: number | string;
2403
+ }
2404
+ /**
2405
+ * MagickoUploadHorizontalArrow icon component
2406
+ * @example
2407
+ * ```tsx
2408
+ * import { MagickoUploadHorizontalArrow } from 'magick-icons';
2409
+ *
2410
+ * <MagickoUploadHorizontalArrow size={24} className="text-blue-500" strokeWidth={2} />
2411
+ * ```
2412
+ */
2413
+ declare const MagickoUploadHorizontalArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadHorizontalArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2414
+
2415
+ /**
2416
+ * Props for the MagickoUpsideDownFace icon component
2417
+ * @property {number | string} [size] - Size of the icon (default: 24)
2418
+ */
2419
+ interface MagickoUpsideDownFaceProps extends React.SVGProps<SVGSVGElement> {
2420
+ size?: number | string;
2421
+ }
2422
+ /**
2423
+ * MagickoUpsideDownFace icon component
2424
+ * @example
2425
+ * ```tsx
2426
+ * import { MagickoUpsideDownFace } from 'magick-icons';
2427
+ *
2428
+ * <MagickoUpsideDownFace size={24} className="text-blue-500" strokeWidth={2} />
2429
+ * ```
2430
+ */
2431
+ declare const MagickoUpsideDownFace: React.ForwardRefExoticComponent<Omit<MagickoUpsideDownFaceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2432
+
2433
+ /**
2434
+ * Props for the MagickoUser icon component
2435
+ * @property {number | string} [size] - Size of the icon (default: 24)
2436
+ */
2437
+ interface MagickoUserProps extends React.SVGProps<SVGSVGElement> {
2438
+ size?: number | string;
2439
+ }
2440
+ /**
2441
+ * MagickoUser icon component
2442
+ * @example
2443
+ * ```tsx
2444
+ * import { MagickoUser } from 'magick-icons';
2445
+ *
2446
+ * <MagickoUser size={24} className="text-blue-500" strokeWidth={2} />
2447
+ * ```
2448
+ */
2449
+ declare const MagickoUser: React.ForwardRefExoticComponent<Omit<MagickoUserProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2450
+
2289
2451
  /**
2290
2452
  * Props for the Marketing icon component
2291
2453
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -2574,4 +2736,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
2574
2736
  */
2575
2737
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2576
2738
 
2577
- export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, 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, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
2739
+ export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, 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, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, MagickoTrash, type MagickoTrashProps, MagickoTrendDown, type MagickoTrendDownProps, MagickoTrendUp, type MagickoTrendUpProps, MagickoUndoArrow, type MagickoUndoArrowProps, MagickoUnlimited, type MagickoUnlimitedProps, MagickoUploadArrow, type MagickoUploadArrowProps, MagickoUploadHorizontalArrow, type MagickoUploadHorizontalArrowProps, MagickoUpsideDownFace, type MagickoUpsideDownFaceProps, MagickoUser, type MagickoUserProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };