motionicon 1.0.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,1173 @@
1
+ import * as react from 'react';
2
+ import react__default, { ReactNode } from 'react';
3
+ import { Variants, Variant, Transition, TargetAndTransition, VariantLabels } from 'motion/react';
4
+
5
+ /**
6
+ * Core type definitions for the MotionIcons library
7
+ */
8
+
9
+ /**
10
+ * Available motion/animation types for icons
11
+ */
12
+ type MotionType = 'scale' | 'rotate' | 'translate' | 'shake' | 'pulse' | 'bounce' | 'draw' | 'spin' | 'none';
13
+ /**
14
+ * Animation trigger modes
15
+ */
16
+ type TriggerType = 'hover' | 'loop' | 'mount' | 'inView';
17
+ /**
18
+ * Props for individual icon components
19
+ */
20
+ interface IconProps {
21
+ /**
22
+ * Size of the icon in pixels
23
+ * @default 24
24
+ */
25
+ size?: number;
26
+ /**
27
+ * Stroke width for SVG paths
28
+ * @default 2
29
+ */
30
+ strokeWidth?: number;
31
+ /**
32
+ * Additional CSS classes to apply to the icon
33
+ */
34
+ className?: string;
35
+ /**
36
+ * Whether the icon should be animated
37
+ * Overrides context and system preferences
38
+ */
39
+ animated?: boolean;
40
+ /**
41
+ * The type of motion/animation to apply
42
+ * @default 'scale'
43
+ */
44
+ motionType?: MotionType;
45
+ /**
46
+ * When to trigger the animation
47
+ * - 'hover': Animate on hover (default)
48
+ * - 'loop': Continuous looping animation
49
+ * - 'mount': Animate once on mount
50
+ * - 'inView': Animate when scrolled into view
51
+ * @default 'hover'
52
+ */
53
+ trigger?: TriggerType;
54
+ /**
55
+ * Accessible label for the icon
56
+ * When provided, sets role="img" and aria-label
57
+ * When omitted, icon is treated as decorative with aria-hidden="true"
58
+ */
59
+ 'aria-label'?: string;
60
+ }
61
+ /**
62
+ * Configuration for icon behavior and defaults
63
+ */
64
+ interface IconConfig {
65
+ /**
66
+ * Global animation toggle
67
+ * @default true
68
+ */
69
+ animated: boolean;
70
+ /**
71
+ * Default size for all icons in pixels
72
+ * @default 24
73
+ */
74
+ defaultSize: number;
75
+ /**
76
+ * Default stroke width for all icons
77
+ * @default 2
78
+ */
79
+ defaultStrokeWidth: number;
80
+ }
81
+ /**
82
+ * Animation variants for Motion components
83
+ * Re-export of Motion's Variants type for consistency
84
+ */
85
+ type AnimationVariants = Variants;
86
+ /**
87
+ * Transition configuration for animations
88
+ */
89
+ interface TransitionConfig {
90
+ /**
91
+ * Duration of the animation in seconds
92
+ */
93
+ duration?: number;
94
+ /**
95
+ * Easing function
96
+ */
97
+ ease?: string | number[];
98
+ /**
99
+ * Type of animation (spring, tween, etc.)
100
+ */
101
+ type?: string;
102
+ /**
103
+ * Spring stiffness
104
+ */
105
+ stiffness?: number;
106
+ /**
107
+ * Spring damping
108
+ */
109
+ damping?: number;
110
+ /**
111
+ * Delay before animation starts
112
+ */
113
+ delay?: number;
114
+ }
115
+ /**
116
+ * Complete animation preset definition
117
+ */
118
+ interface AnimationPreset {
119
+ /**
120
+ * Initial state
121
+ */
122
+ initial?: Variant;
123
+ /**
124
+ * Hover state
125
+ */
126
+ hover?: Variant;
127
+ /**
128
+ * Tap state
129
+ */
130
+ tap?: Variant;
131
+ /**
132
+ * Exit state
133
+ */
134
+ exit?: Variant;
135
+ /**
136
+ * Transition configuration
137
+ */
138
+ transition?: TransitionConfig;
139
+ }
140
+
141
+ /**
142
+ * Icon configuration context for global icon settings
143
+ *
144
+ * Provides default configuration for all icons in the component tree.
145
+ * Individual icon props can override context values.
146
+ */
147
+
148
+ /**
149
+ * Props for IconProvider component
150
+ */
151
+ interface IconProviderProps {
152
+ /**
153
+ * Child components
154
+ */
155
+ children: ReactNode;
156
+ /**
157
+ * Icon configuration to apply to all icons in the tree
158
+ * Partial configuration will be merged with defaults
159
+ */
160
+ config?: Partial<IconConfig>;
161
+ }
162
+ /**
163
+ * Provider component for icon configuration
164
+ *
165
+ * Wrap your app or component tree with this provider to set global icon defaults.
166
+ * Configuration can be partially overridden at any level.
167
+ *
168
+ * @example
169
+ * ```tsx
170
+ * <IconProvider config={{ animated: false, defaultSize: 32 }}>
171
+ * <App />
172
+ * </IconProvider>
173
+ * ```
174
+ */
175
+ declare function IconProvider({ children, config }: IconProviderProps): react__default.JSX.Element;
176
+ /**
177
+ * Hook to access icon context configuration
178
+ *
179
+ * Returns the current icon configuration from context, or default config if not in a provider.
180
+ * This hook is used internally by icon components and other hooks.
181
+ *
182
+ * @returns Current icon configuration
183
+ *
184
+ * @example
185
+ * ```tsx
186
+ * const config = useIconContext();
187
+ * console.log(config.defaultSize); // 24
188
+ * ```
189
+ */
190
+ declare function useIconContext(): IconConfig;
191
+
192
+ /**
193
+ * Hook for managing icon animation state and variants
194
+ *
195
+ * Handles the priority chain:
196
+ * 1. Component prop (highest priority)
197
+ * 2. Context configuration
198
+ * 3. System preference (via useReducedMotion)
199
+ *
200
+ * When animations are disabled, returns null variants to prevent motion.
201
+ */
202
+
203
+ /**
204
+ * Animation props to spread onto motion components based on trigger mode
205
+ */
206
+ interface AnimationProps {
207
+ initial?: boolean | TargetAndTransition | VariantLabels;
208
+ animate?: boolean | TargetAndTransition | VariantLabels;
209
+ whileHover?: TargetAndTransition | VariantLabels;
210
+ whileInView?: TargetAndTransition | VariantLabels;
211
+ viewport?: {
212
+ once?: boolean;
213
+ amount?: number;
214
+ };
215
+ variants?: Variants;
216
+ transition?: Transition;
217
+ }
218
+ /**
219
+ * Return type for useIconAnimation hook
220
+ */
221
+ interface UseIconAnimationReturn {
222
+ /**
223
+ * Whether animations should be active
224
+ */
225
+ isAnimated: boolean;
226
+ /**
227
+ * Get animation variants based on animation state
228
+ * Returns undefined when animations are disabled
229
+ */
230
+ getVariants: (variants: AnimationVariants) => AnimationVariants | undefined;
231
+ /**
232
+ * Get transition configuration
233
+ */
234
+ transition: TransitionConfig | undefined;
235
+ /**
236
+ * Pre-built variants from the motion preset (based on motionType)
237
+ */
238
+ presetVariants: AnimationVariants | undefined;
239
+ /**
240
+ * Pre-built transition from the motion preset
241
+ */
242
+ presetTransition: Transition;
243
+ /**
244
+ * Animation props to spread onto the motion.svg component
245
+ * Based on trigger mode (hover, loop, mount, inView)
246
+ */
247
+ animationProps: AnimationProps;
248
+ /**
249
+ * Animation props for internal path elements (for draw animation)
250
+ */
251
+ pathAnimationProps: AnimationProps;
252
+ /**
253
+ * Animation props for SVG wrapper when using draw animation
254
+ * Needed to propagate hover/inView state to children
255
+ */
256
+ drawWrapperProps: AnimationProps;
257
+ }
258
+ /**
259
+ * Hook to determine animation state and provide variant helpers
260
+ *
261
+ * Priority order (highest to lowest):
262
+ * 1. Component animated prop
263
+ * 2. Context animated setting
264
+ * 3. System prefers-reduced-motion preference
265
+ *
266
+ * @param animated - Optional override from component props
267
+ * @param motionType - Optional motion type to use preset variants
268
+ * @returns Animation state and helper functions
269
+ *
270
+ * @example
271
+ * ```tsx
272
+ * // Using custom variants
273
+ * const { isAnimated, getVariants } = useIconAnimation(props.animated);
274
+ *
275
+ * return (
276
+ * <motion.svg
277
+ * variants={getVariants({ hover: { scale: 1.2 } })}
278
+ * animate={isAnimated ? "hover" : undefined}
279
+ * />
280
+ * );
281
+ *
282
+ * // Using preset motion type
283
+ * const { isAnimated, presetVariants, presetTransition } = useIconAnimation(
284
+ * props.animated,
285
+ * props.motionType
286
+ * );
287
+ *
288
+ * return (
289
+ * <motion.svg
290
+ * variants={presetVariants}
291
+ * transition={presetTransition}
292
+ * whileHover={isAnimated ? "hover" : undefined}
293
+ * />
294
+ * );
295
+ * ```
296
+ */
297
+ declare function useIconAnimation(animated?: boolean, motionType?: MotionType, trigger?: TriggerType): UseIconAnimationReturn;
298
+
299
+ /**
300
+ * Return type for useIconConfig hook
301
+ */
302
+ interface UseIconConfigReturn {
303
+ /**
304
+ * Final computed size for the icon
305
+ */
306
+ size: number;
307
+ /**
308
+ * Final computed stroke width for the icon
309
+ */
310
+ strokeWidth: number;
311
+ /**
312
+ * Additional CSS classes
313
+ */
314
+ className?: string;
315
+ /**
316
+ * Whether the icon should be animated
317
+ */
318
+ animated: boolean;
319
+ }
320
+ /**
321
+ * Hook to merge icon props with context configuration
322
+ *
323
+ * Takes component props and merges them with context defaults.
324
+ * Component props always take priority over context values.
325
+ *
326
+ * @param props - Icon component props
327
+ * @returns Merged configuration with all values resolved
328
+ *
329
+ * @example
330
+ * ```tsx
331
+ * function MyIcon(props: IconProps) {
332
+ * const config = useIconConfig(props);
333
+ *
334
+ * return (
335
+ * <svg
336
+ * width={config.size}
337
+ * height={config.size}
338
+ * strokeWidth={config.strokeWidth}
339
+ * className={config.className}
340
+ * />
341
+ * );
342
+ * }
343
+ * ```
344
+ */
345
+ declare function useIconConfig(props: IconProps): UseIconConfigReturn;
346
+
347
+ /**
348
+ * Predefined animation presets for MotionIcons
349
+ *
350
+ * These presets can be used to apply consistent animations across icons.
351
+ * Each preset includes initial, hover, tap, and transition configurations.
352
+ */
353
+
354
+ /**
355
+ * Draw animation - animates SVG path drawing
356
+ * Useful for line-based icons
357
+ */
358
+ declare const draw: AnimationPreset;
359
+ /**
360
+ * Rotate animation - rotates icon on hover
361
+ * Great for refresh, settings, or circular icons
362
+ */
363
+ declare const rotate: AnimationPreset;
364
+ /**
365
+ * Pulse animation - scales icon on hover
366
+ * Ideal for drawing attention to interactive elements
367
+ */
368
+ declare const pulse: AnimationPreset;
369
+ /**
370
+ * Bounce animation - vertical bounce effect
371
+ * Perfect for upvote, arrow, or notification icons
372
+ */
373
+ declare const bounce: AnimationPreset;
374
+ /**
375
+ * Translate animation - horizontal slide effect
376
+ * Useful for arrow or navigation icons
377
+ */
378
+ declare const translate: AnimationPreset;
379
+ /**
380
+ * Stagger animation - sequential animation for multiple elements
381
+ * Ideal for icons with multiple paths or shapes
382
+ */
383
+ declare const stagger: AnimationPreset;
384
+ /**
385
+ * Shake animation - horizontal shake effect
386
+ * Good for error states, notifications, or alert icons
387
+ */
388
+ declare const shake: AnimationPreset;
389
+ /**
390
+ * Spin animation - continuous rotation
391
+ * Perfect for loading or refresh icons
392
+ */
393
+ declare const spin: AnimationPreset;
394
+ /**
395
+ * Fade animation - opacity transition
396
+ * Subtle effect for any icon
397
+ */
398
+ declare const fade: AnimationPreset;
399
+ /**
400
+ * Pop animation - scale with slight rotation
401
+ * Engaging effect for important actions
402
+ */
403
+ declare const pop: AnimationPreset;
404
+ /**
405
+ * Collection of all animation presets
406
+ */
407
+ declare const animations: {
408
+ readonly draw: AnimationPreset;
409
+ readonly rotate: AnimationPreset;
410
+ readonly pulse: AnimationPreset;
411
+ readonly bounce: AnimationPreset;
412
+ readonly translate: AnimationPreset;
413
+ readonly stagger: AnimationPreset;
414
+ readonly shake: AnimationPreset;
415
+ readonly spin: AnimationPreset;
416
+ readonly fade: AnimationPreset;
417
+ readonly pop: AnimationPreset;
418
+ };
419
+ /**
420
+ * Type helper for animation preset names
421
+ */
422
+ type AnimationName = keyof typeof animations;
423
+
424
+ /**
425
+ * Utility functions for the MotionIcons library
426
+ */
427
+ /**
428
+ * Merges multiple class names into a single string
429
+ * Filters out falsy values for conditional classes
430
+ *
431
+ * @param classes - Class names to merge
432
+ * @returns Merged class string
433
+ *
434
+ * @example
435
+ * ```ts
436
+ * cn('base-class', isActive && 'active', 'another-class')
437
+ * // Returns: "base-class active another-class"
438
+ * ```
439
+ */
440
+ declare function cn(...classes: (string | undefined | null | false)[]): string;
441
+ /**
442
+ * Merges two objects with deep property override
443
+ * Later values override earlier ones
444
+ *
445
+ * @param base - Base configuration object
446
+ * @param overrides - Override values
447
+ * @returns Merged configuration
448
+ *
449
+ * @example
450
+ * ```ts
451
+ * mergeConfig({ size: 24, animated: true }, { size: 32 })
452
+ * // Returns: { size: 32, animated: true }
453
+ * ```
454
+ */
455
+ declare function mergeConfig<T extends Record<string, unknown>>(base: T, overrides: Partial<T>): T;
456
+ /**
457
+ * Determines if a value is defined (not null or undefined)
458
+ *
459
+ * @param value - Value to check
460
+ * @returns True if value is defined
461
+ */
462
+ declare function isDefined<T>(value: T | null | undefined): value is T;
463
+ /**
464
+ * Creates a stable object reference from potentially undefined values
465
+ * Returns the fallback if the value is undefined
466
+ *
467
+ * @param value - Value to check
468
+ * @param fallback - Fallback value
469
+ * @returns Value or fallback
470
+ */
471
+ declare function withDefault<T>(value: T | undefined, fallback: T): T;
472
+
473
+ declare const Accessibility: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
474
+
475
+ declare const AlertCircle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
476
+
477
+ declare const ArrowLeft: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
478
+
479
+ declare const ArrowRight: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
480
+
481
+ declare const Award: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
482
+
483
+ declare const Baby: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
484
+
485
+ declare const Bell: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
486
+
487
+ declare const Calendar: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
488
+
489
+ declare const Check: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
490
+
491
+ declare const CheckCircle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
492
+
493
+ declare const ChevronDown: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
494
+
495
+ declare const ChevronUp: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
496
+
497
+ declare const Clock: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
498
+
499
+ declare const Contact: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
500
+
501
+ declare const Contact2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
502
+
503
+ declare const Copy: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
504
+
505
+ declare const Crown: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
506
+
507
+ declare const Download: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
508
+
509
+ declare const Edit: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
510
+
511
+ declare const Eye: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
512
+
513
+ declare const EyeOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
514
+
515
+ declare const Frown: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
516
+
517
+ declare const Heart: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
518
+
519
+ declare const HelpCircle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
520
+
521
+ declare const Home: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
522
+
523
+ declare const Inbox: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
524
+
525
+ declare const Info: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
526
+
527
+ declare const Loader: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
528
+
529
+ declare const Lock: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
530
+
531
+ declare const Mail: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
532
+
533
+ declare const Meh: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
534
+
535
+ declare const Menu: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
536
+
537
+ declare const MessageCircle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
538
+
539
+ declare const Minus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
540
+
541
+ declare const Phone: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
542
+
543
+ declare const Plus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
544
+
545
+ declare const Refresh: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
546
+
547
+ declare const Save: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
548
+
549
+ declare const Search: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
550
+
551
+ declare const Send: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
552
+
553
+ declare const Settings: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
554
+
555
+ declare const Share: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
556
+
557
+ declare const Smile: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
558
+
559
+ declare const Star: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
560
+
561
+ declare const ThumbsDown: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
562
+
563
+ declare const ThumbsUp: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
564
+
565
+ declare const Trash: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
566
+
567
+ declare const Upload: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
568
+
569
+ declare const User: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
570
+
571
+ declare const UserCheck: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
572
+
573
+ declare const UserCog: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
574
+
575
+ declare const UserMinus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
576
+
577
+ declare const UserPlus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
578
+
579
+ declare const UserX: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
580
+
581
+ declare const Users: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
582
+
583
+ declare const X: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
584
+
585
+ declare const XCircle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
586
+
587
+ declare const Cloud: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
588
+
589
+ declare const File: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
590
+
591
+ declare const Filter: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
592
+
593
+ declare const Folder: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
594
+
595
+ declare const Grid: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
596
+
597
+ declare const List: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
598
+
599
+ declare const MoreHorizontal: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
600
+
601
+ declare const Bookmark: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
602
+
603
+ declare const Link: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
604
+
605
+ declare const MapPin: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
606
+
607
+ declare const Moon: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
608
+
609
+ declare const Sun: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
610
+
611
+ declare const Tag: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
612
+
613
+ declare const Zap: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
614
+
615
+ declare const Play: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
616
+
617
+ declare const Pause: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
618
+
619
+ declare const Volume: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
620
+
621
+ declare const VolumeOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
622
+
623
+ declare const Mic: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
624
+
625
+ declare const MicOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
626
+
627
+ declare const Camera: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
628
+
629
+ declare const Airplay: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
630
+
631
+ declare const Cast: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
632
+
633
+ declare const FastForward: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
634
+
635
+ declare const Film: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
636
+
637
+ declare const Headphones: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
638
+
639
+ declare const Music: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
640
+
641
+ declare const Radio: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
642
+
643
+ declare const Repeat: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
644
+
645
+ declare const Rewind: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
646
+
647
+ declare const Shuffle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
648
+
649
+ declare const SkipBack: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
650
+
651
+ declare const SkipForward: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
652
+
653
+ declare const Speaker: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
654
+
655
+ declare const Tv: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
656
+
657
+ declare const Video: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
658
+
659
+ declare const Code: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
660
+
661
+ declare const Code2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
662
+
663
+ declare const Terminal: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
664
+
665
+ declare const Command: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
666
+
667
+ declare const Database: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
668
+
669
+ declare const Server: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
670
+
671
+ declare const HardDrive: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
672
+
673
+ declare const Cpu: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
674
+
675
+ declare const Wrench: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
676
+
677
+ declare const Hammer: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
678
+
679
+ declare const Screwdriver: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
680
+
681
+ declare const Palette: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
682
+
683
+ declare const Brush: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
684
+
685
+ declare const Pen: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
686
+
687
+ declare const Pencil: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
688
+
689
+ declare const CloudRain: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
690
+
691
+ declare const CloudSnow: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
692
+
693
+ declare const CloudLightning: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
694
+
695
+ declare const CloudDrizzle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
696
+
697
+ declare const CloudSun: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
698
+
699
+ declare const Sunrise: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
700
+
701
+ declare const Sunset: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
702
+
703
+ declare const Wind: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
704
+
705
+ declare const Thermometer: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
706
+
707
+ declare const Droplet: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
708
+
709
+ declare const Umbrella: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
710
+
711
+ declare const Snowflake: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
712
+
713
+ declare const Flame: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
714
+
715
+ declare const Leaf: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
716
+
717
+ declare const Tree: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
718
+
719
+ declare const ArrowUp: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
720
+
721
+ declare const ArrowDown: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
722
+
723
+ declare const ArrowUpRight: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
724
+
725
+ declare const ArrowUpLeft: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
726
+
727
+ declare const ArrowDownRight: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
728
+
729
+ declare const ArrowDownLeft: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
730
+
731
+ declare const ChevronsUp: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
732
+
733
+ declare const ChevronsDown: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
734
+
735
+ declare const ChevronsLeft: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
736
+
737
+ declare const ChevronsRight: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
738
+
739
+ declare const CornerUpLeft: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
740
+
741
+ declare const CornerUpRight: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
742
+
743
+ declare const CornerDownLeft: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
744
+
745
+ declare const CornerDownRight: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
746
+
747
+ declare const MoveHorizontal: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
748
+
749
+ declare const Layout: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
750
+
751
+ declare const LayoutGrid: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
752
+
753
+ declare const LayoutList: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
754
+
755
+ declare const Sidebar: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
756
+
757
+ declare const PanelLeft: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
758
+
759
+ declare const PanelRight: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
760
+
761
+ declare const Maximize: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
762
+
763
+ declare const Minimize: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
764
+
765
+ declare const Maximize2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
766
+
767
+ declare const Minimize2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
768
+
769
+ declare const Columns: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
770
+
771
+ declare const Rows: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
772
+
773
+ declare const Square: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
774
+
775
+ declare const Circle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
776
+
777
+ declare const Triangle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
778
+
779
+ declare const AtSign: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
780
+
781
+ declare const Hash: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
782
+
783
+ declare const MessageSquare: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
784
+
785
+ declare const Send2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
786
+
787
+ declare const PhoneCall: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
788
+
789
+ declare const PhoneOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
790
+
791
+ declare const PhoneIncoming: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
792
+
793
+ declare const PhoneOutgoing: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
794
+
795
+ declare const PhoneMissed: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
796
+
797
+ declare const Voicemail: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
798
+
799
+ declare const Video2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
800
+
801
+ declare const VideoOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
802
+
803
+ declare const Rss: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
804
+
805
+ declare const Wifi: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
806
+
807
+ declare const WifiOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
808
+
809
+ declare const Unlock: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
810
+
811
+ declare const Shield: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
812
+
813
+ declare const ShieldCheck: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
814
+
815
+ declare const ShieldOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
816
+
817
+ declare const Key: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
818
+
819
+ declare const Fingerprint: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
820
+
821
+ declare const Scan: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
822
+
823
+ declare const ScanLine: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
824
+
825
+ declare const AlertTriangle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
826
+
827
+ declare const AlertOctagon: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
828
+
829
+ declare const Ban: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
830
+
831
+ declare const ShieldAlert: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
832
+
833
+ declare const LockOpen: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
834
+
835
+ declare const KeyRound: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
836
+
837
+ declare const BadgeCheck: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
838
+
839
+ declare const ShoppingCart: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
840
+
841
+ declare const ShoppingBag: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
842
+
843
+ declare const CreditCard: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
844
+
845
+ declare const DollarSign: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
846
+
847
+ declare const Percent: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
848
+
849
+ declare const Receipt: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
850
+
851
+ declare const Wallet: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
852
+
853
+ declare const Gift: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
854
+
855
+ declare const Package: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
856
+
857
+ declare const Truck: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
858
+
859
+ declare const Store: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
860
+
861
+ declare const Barcode: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
862
+
863
+ declare const QrCode: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
864
+
865
+ declare const Tag2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
866
+
867
+ declare const Tags: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
868
+
869
+ declare const FileText: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
870
+
871
+ declare const FilePlus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
872
+
873
+ declare const FileMinus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
874
+
875
+ declare const FileCheck: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
876
+
877
+ declare const FileX: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
878
+
879
+ declare const Files: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
880
+
881
+ declare const FolderPlus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
882
+
883
+ declare const FolderMinus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
884
+
885
+ declare const FolderOpen: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
886
+
887
+ declare const Archive: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
888
+
889
+ declare const Clipboard: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
890
+
891
+ declare const ClipboardCheck: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
892
+
893
+ declare const ClipboardList: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
894
+
895
+ declare const ClipboardCopy: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
896
+
897
+ declare const Paperclip: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
898
+
899
+ declare const Activity: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
900
+
901
+ declare const AreaChart: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
902
+
903
+ declare const BarChart: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
904
+
905
+ declare const BarChart2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
906
+
907
+ declare const Gauge: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
908
+
909
+ declare const Kanban: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
910
+
911
+ declare const LineChart: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
912
+
913
+ declare const PieChart: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
914
+
915
+ declare const Presentation: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
916
+
917
+ declare const Signal: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
918
+
919
+ declare const SignalHigh: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
920
+
921
+ declare const SignalLow: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
922
+
923
+ declare const SignalZero: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
924
+
925
+ declare const Table: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
926
+
927
+ declare const Table2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
928
+
929
+ declare const TrendingDown: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
930
+
931
+ declare const TrendingUp: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
932
+
933
+ declare const Laptop: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
934
+
935
+ declare const Monitor: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
936
+
937
+ declare const Tablet: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
938
+
939
+ declare const Watch: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
940
+
941
+ declare const Printer: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
942
+
943
+ declare const Mouse: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
944
+
945
+ declare const Keyboard: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
946
+
947
+ declare const Smartphone: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
948
+
949
+ declare const Gamepad2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
950
+
951
+ declare const Webcam: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
952
+
953
+ declare const Router: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
954
+
955
+ declare const UsbDrive: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
956
+
957
+ declare const SdCard: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
958
+
959
+ declare const Battery: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
960
+
961
+ declare const BatteryCharging: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
962
+
963
+ declare const BatteryLow: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
964
+
965
+ declare const Bluetooth: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
966
+
967
+ declare const HeartPulse: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
968
+
969
+ declare const Stethoscope: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
970
+
971
+ declare const Pill: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
972
+
973
+ declare const Syringe: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
974
+
975
+ declare const Bandage: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
976
+
977
+ declare const Thermometer2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
978
+
979
+ declare const Microscope: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
980
+
981
+ declare const TestTube: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
982
+
983
+ declare const TestTubes: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
984
+
985
+ declare const Dna: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
986
+
987
+ declare const Bone: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
988
+
989
+ declare const Brain: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
990
+
991
+ declare const Ear: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
992
+
993
+ declare const Eye2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
994
+
995
+ declare const Hand: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
996
+
997
+ declare const Footprints: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
998
+
999
+ declare const Wheelchair: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1000
+
1001
+ declare const GraduationCap: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1002
+
1003
+ declare const Book: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1004
+
1005
+ declare const BookOpen: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1006
+
1007
+ declare const BookMarked: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1008
+
1009
+ declare const Library: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1010
+
1011
+ declare const Notebook: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1012
+
1013
+ declare const NotebookPen: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1014
+
1015
+ declare const Ruler: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1016
+
1017
+ declare const PenTool: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1018
+
1019
+ declare const Highlighter: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1020
+
1021
+ declare const Eraser: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1022
+
1023
+ declare const Calculator: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1024
+
1025
+ declare const Backpack: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1026
+
1027
+ declare const Lightbulb: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1028
+
1029
+ declare const LightbulbOff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1030
+
1031
+ declare const Lamp: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1032
+
1033
+ declare const LampDesk: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1034
+
1035
+ declare const Glasses: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1036
+
1037
+ declare const Building: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1038
+
1039
+ declare const Building2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1040
+
1041
+ declare const Factory: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1042
+
1043
+ declare const Landmark: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1044
+
1045
+ declare const Castle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1046
+
1047
+ declare const Church: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1048
+
1049
+ declare const Hospital: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1050
+
1051
+ declare const School: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1052
+
1053
+ declare const Warehouse: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1054
+
1055
+ declare const Tent: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1056
+
1057
+ declare const Mountain: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1058
+
1059
+ declare const MountainSnow: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1060
+
1061
+ declare const Waves: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1062
+
1063
+ declare const Anchor: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1064
+
1065
+ declare const Compass: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1066
+
1067
+ declare const Map: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1068
+
1069
+ declare const Globe: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1070
+
1071
+ declare const Trophy: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1072
+
1073
+ declare const Medal: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1074
+
1075
+ declare const Target: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1076
+
1077
+ declare const Crosshair: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1078
+
1079
+ declare const Dice1: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1080
+
1081
+ declare const Dice2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1082
+
1083
+ declare const Dice3: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1084
+
1085
+ declare const Dice4: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1086
+
1087
+ declare const Dice5: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1088
+
1089
+ declare const Dice6: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1090
+
1091
+ declare const Puzzle: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1092
+
1093
+ declare const Joystick: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1094
+
1095
+ declare const Swords: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1096
+
1097
+ declare const Sword: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1098
+
1099
+ declare const Wand: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1100
+
1101
+ declare const Wand2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1102
+
1103
+ declare const Dumbbell: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1104
+
1105
+ declare const Coffee: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1106
+
1107
+ declare const Cup: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1108
+
1109
+ declare const Wine: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1110
+
1111
+ declare const Beer: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1112
+
1113
+ declare const Martini: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1114
+
1115
+ declare const Pizza: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1116
+
1117
+ declare const Apple: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1118
+
1119
+ declare const Cherry: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1120
+
1121
+ declare const Grape: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1122
+
1123
+ declare const Banana: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1124
+
1125
+ declare const Carrot: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1126
+
1127
+ declare const Sandwich: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1128
+
1129
+ declare const Utensils: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1130
+
1131
+ declare const UtensilsCrossed: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1132
+
1133
+ declare const ChefHat: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1134
+
1135
+ declare const Cookie: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1136
+
1137
+ declare const IceCream: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1138
+
1139
+ declare const Car: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1140
+
1141
+ declare const CarFront: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1142
+
1143
+ declare const Bus: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1144
+
1145
+ declare const Train: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1146
+
1147
+ declare const Plane: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1148
+
1149
+ declare const PlaneTakeoff: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1150
+
1151
+ declare const PlaneLanding: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1152
+
1153
+ declare const Ship: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1154
+
1155
+ declare const Sailboat: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1156
+
1157
+ declare const Bike: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1158
+
1159
+ declare const Rocket: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1160
+
1161
+ declare const Fuel: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1162
+
1163
+ declare const Parking: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1164
+
1165
+ declare const TrafficCone: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1166
+
1167
+ declare const Navigation: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1168
+
1169
+ declare const Navigation2: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1170
+
1171
+ declare const Milestone: ({ size, strokeWidth, className, animated, motionType, trigger, "aria-label": ariaLabel }: IconProps) => react.JSX.Element;
1172
+
1173
+ export { Accessibility, Activity, Airplay, AlertCircle, AlertOctagon, AlertTriangle, Anchor, type AnimationName, type AnimationPreset, type AnimationVariants, Apple, Archive, AreaChart, ArrowDown, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowRight, ArrowUp, ArrowUpLeft, ArrowUpRight, AtSign, Award, Baby, Backpack, BadgeCheck, Ban, Banana, Bandage, BarChart, BarChart2, Barcode, Battery, BatteryCharging, BatteryLow, Beer, Bell, Bike, Bluetooth, Bone, Book, BookMarked, BookOpen, Bookmark, Brain, Brush, Building, Building2, Bus, Calculator, Calendar, Camera, Car, CarFront, Carrot, Cast, Castle, Check, CheckCircle, ChefHat, Cherry, ChevronDown, ChevronUp, ChevronsDown, ChevronsLeft, ChevronsRight, ChevronsUp, Church, Circle, Clipboard, ClipboardCheck, ClipboardCopy, ClipboardList, Clock, Cloud, CloudDrizzle, CloudLightning, CloudRain, CloudSnow, CloudSun, Code, Code2, Coffee, Columns, Command, Compass, Contact, Contact2, Cookie, Copy, CornerDownLeft, CornerDownRight, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Crosshair, Crown, Cup, Database, Dice1, Dice2, Dice3, Dice4, Dice5, Dice6, Dna, DollarSign, Download, Droplet, Dumbbell, Ear, Edit, Eraser, Eye, Eye2, EyeOff, Factory, FastForward, File, FileCheck, FileMinus, FilePlus, FileText, FileX, Files, Film, Filter, Fingerprint, Flame, Folder, FolderMinus, FolderOpen, FolderPlus, Footprints, Frown, Fuel, Gamepad2, Gauge, Gift, Glasses, Globe, GraduationCap, Grape, Grid, Hammer, Hand, HardDrive, Hash, Headphones, Heart, HeartPulse, HelpCircle, Highlighter, Home, Hospital, IceCream, type IconConfig, type IconProps, IconProvider, type IconProviderProps, Inbox, Info, Joystick, Kanban, Key, KeyRound, Keyboard, Lamp, LampDesk, Landmark, Laptop, Layout, LayoutGrid, LayoutList, Leaf, Library, Lightbulb, LightbulbOff, LineChart, Link, List, Loader, Lock, LockOpen, Mail, Map, MapPin, Martini, Maximize, Maximize2, Medal, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Microscope, Milestone, Minimize, Minimize2, Minus, Monitor, Moon, MoreHorizontal, Mountain, MountainSnow, Mouse, MoveHorizontal, Music, Navigation, Navigation2, Notebook, NotebookPen, Package, Palette, PanelLeft, PanelRight, Paperclip, Parking, Pause, Pen, PenTool, Pencil, Percent, Phone, PhoneCall, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Pill, Pizza, Plane, PlaneLanding, PlaneTakeoff, Play, Plus, Presentation, Printer, Puzzle, QrCode, Radio, Receipt, Refresh, Repeat, Rewind, Rocket, Router, Rows, Rss, Ruler, Sailboat, Sandwich, Save, Scan, ScanLine, School, Screwdriver, SdCard, Search, Send, Send2, Server, Settings, Share, Shield, ShieldAlert, ShieldCheck, ShieldOff, Ship, ShoppingBag, ShoppingCart, Shuffle, Sidebar, Signal, SignalHigh, SignalLow, SignalZero, SkipBack, SkipForward, Smartphone, Smile, Snowflake, Speaker, Square, Star, Stethoscope, Store, Sun, Sunrise, Sunset, Sword, Swords, Syringe, Table, Table2, Tablet, Tag, Tag2, Tags, Target, Tent, Terminal, TestTube, TestTubes, Thermometer, Thermometer2, ThumbsDown, ThumbsUp, TrafficCone, Train, type TransitionConfig, Trash, Tree, TrendingDown, TrendingUp, Triangle, Trophy, Truck, Tv, Umbrella, Unlock, Upload, UsbDrive, type UseIconAnimationReturn, type UseIconConfigReturn, User, UserCheck, UserCog, UserMinus, UserPlus, UserX, Users, Utensils, UtensilsCrossed, Video, Video2, VideoOff, Voicemail, Volume, VolumeOff, Wallet, Wand, Wand2, Warehouse, Watch, Waves, Webcam, Wheelchair, Wifi, WifiOff, Wind, Wine, Wrench, X, XCircle, Zap, animations, bounce, cn, draw, fade, isDefined, mergeConfig, pop, pulse, rotate, shake, spin, stagger, translate, useIconAnimation, useIconConfig, useIconContext, withDefault };