r3d-icons 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/dist/index.cjs +32 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1130 -0
- package/dist/index.d.ts +1130 -0
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -0
- package/package.json +62 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,1130 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import react__default, { HTMLAttributes } from 'react';
|
|
3
|
+
|
|
4
|
+
type IconPreset = "glass" | "metal" | "clay" | "hologram" | "gold" | "silver" | "glassmorphism" | "carbon" | "wood";
|
|
5
|
+
type IconAngle = "front" | "perspective" | "tilted";
|
|
6
|
+
interface IconProps extends Omit<HTMLAttributes<HTMLDivElement>, "style" | "children"> {
|
|
7
|
+
preset?: IconPreset;
|
|
8
|
+
angle?: IconAngle;
|
|
9
|
+
variant?: "3d" | "2d";
|
|
10
|
+
color?: string;
|
|
11
|
+
accentColor?: string;
|
|
12
|
+
spinSpeed?: number;
|
|
13
|
+
floatHeight?: number;
|
|
14
|
+
theme?: "light" | "dark";
|
|
15
|
+
interactive?: boolean;
|
|
16
|
+
size?: number | string;
|
|
17
|
+
canvas?: boolean;
|
|
18
|
+
customMaterial?: Partial<MaterialConfig>;
|
|
19
|
+
}
|
|
20
|
+
interface MaterialConfig {
|
|
21
|
+
roughness: number;
|
|
22
|
+
metalness: number;
|
|
23
|
+
transmission: number;
|
|
24
|
+
thickness: number;
|
|
25
|
+
clearcoat: number;
|
|
26
|
+
clearcoatRoughness: number;
|
|
27
|
+
ior: number;
|
|
28
|
+
color: string;
|
|
29
|
+
emissive: string;
|
|
30
|
+
emissiveIntensity: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
type DatabaseIconProps = IconProps;
|
|
34
|
+
|
|
35
|
+
declare function DatabaseIcon(props: DatabaseIconProps): react.JSX.Element;
|
|
36
|
+
|
|
37
|
+
type CloudIconProps = IconProps;
|
|
38
|
+
|
|
39
|
+
declare function CloudIcon(props: CloudIconProps): react.JSX.Element;
|
|
40
|
+
|
|
41
|
+
type CpuIconProps = IconProps;
|
|
42
|
+
|
|
43
|
+
declare function CpuIcon(props: CpuIconProps): react.JSX.Element;
|
|
44
|
+
|
|
45
|
+
type NetworkIconProps = IconProps;
|
|
46
|
+
|
|
47
|
+
declare function NetworkIcon(props: NetworkIconProps): react.JSX.Element;
|
|
48
|
+
|
|
49
|
+
type GearIconProps = IconProps;
|
|
50
|
+
|
|
51
|
+
declare function GearIcon(props: GearIconProps): react.JSX.Element;
|
|
52
|
+
|
|
53
|
+
type FacebookIconProps = IconProps;
|
|
54
|
+
|
|
55
|
+
declare function FacebookIcon(props: FacebookIconProps): react.JSX.Element;
|
|
56
|
+
|
|
57
|
+
type AnchorIconProps = IconProps;
|
|
58
|
+
|
|
59
|
+
declare function AnchorIcon(props: AnchorIconProps): react.JSX.Element;
|
|
60
|
+
|
|
61
|
+
type DiamondIconProps = IconProps;
|
|
62
|
+
|
|
63
|
+
declare function DiamondIcon(props: DiamondIconProps): react.JSX.Element;
|
|
64
|
+
|
|
65
|
+
type FilterIconProps = IconProps;
|
|
66
|
+
|
|
67
|
+
declare function FilterIcon(props: FilterIconProps): react.JSX.Element;
|
|
68
|
+
|
|
69
|
+
type PipelineIconProps = IconProps;
|
|
70
|
+
|
|
71
|
+
declare function PipelineIcon(props: PipelineIconProps): react.JSX.Element;
|
|
72
|
+
|
|
73
|
+
type RefreshIconProps = IconProps;
|
|
74
|
+
|
|
75
|
+
declare function RefreshIcon(props: RefreshIconProps): react.JSX.Element;
|
|
76
|
+
|
|
77
|
+
type WebhookIconProps = IconProps;
|
|
78
|
+
|
|
79
|
+
declare function WebhookIcon(props: WebhookIconProps): react.JSX.Element;
|
|
80
|
+
|
|
81
|
+
type PlusIconProps = IconProps;
|
|
82
|
+
|
|
83
|
+
declare function PlusIcon(props: PlusIconProps): react.JSX.Element;
|
|
84
|
+
|
|
85
|
+
type MinusIconProps = IconProps;
|
|
86
|
+
|
|
87
|
+
declare function MinusIcon(props: MinusIconProps): react.JSX.Element;
|
|
88
|
+
|
|
89
|
+
type CloseIconProps = IconProps;
|
|
90
|
+
|
|
91
|
+
declare function CloseIcon(props: CloseIconProps): react.JSX.Element;
|
|
92
|
+
|
|
93
|
+
type InfoIconProps = IconProps;
|
|
94
|
+
|
|
95
|
+
declare function InfoIcon(props: InfoIconProps): react.JSX.Element;
|
|
96
|
+
|
|
97
|
+
type AlertCircleIconProps = IconProps;
|
|
98
|
+
|
|
99
|
+
declare function AlertCircleIcon(props: AlertCircleIconProps): react.JSX.Element;
|
|
100
|
+
|
|
101
|
+
type RocketIconProps = IconProps;
|
|
102
|
+
|
|
103
|
+
declare function RocketIcon(props: RocketIconProps): react.JSX.Element;
|
|
104
|
+
|
|
105
|
+
type FlashIconProps = IconProps;
|
|
106
|
+
|
|
107
|
+
declare function FlashIcon(props: FlashIconProps): react.JSX.Element;
|
|
108
|
+
|
|
109
|
+
type ShieldIconProps = IconProps;
|
|
110
|
+
|
|
111
|
+
declare function ShieldIcon(props: ShieldIconProps): react.JSX.Element;
|
|
112
|
+
|
|
113
|
+
type FolderIconProps = IconProps;
|
|
114
|
+
|
|
115
|
+
declare function FolderIcon(props: FolderIconProps): react.JSX.Element;
|
|
116
|
+
|
|
117
|
+
type MailIconProps = IconProps;
|
|
118
|
+
|
|
119
|
+
declare function MailIcon(props: MailIconProps): react.JSX.Element;
|
|
120
|
+
|
|
121
|
+
type WalletIconProps = IconProps;
|
|
122
|
+
|
|
123
|
+
declare function WalletIcon(props: WalletIconProps): react.JSX.Element;
|
|
124
|
+
|
|
125
|
+
type CalendarIconProps = IconProps;
|
|
126
|
+
|
|
127
|
+
declare function CalendarIcon(props: CalendarIconProps): react.JSX.Element;
|
|
128
|
+
|
|
129
|
+
type DollarIconProps = IconProps;
|
|
130
|
+
|
|
131
|
+
declare function DollarIcon(props: DollarIconProps): react.JSX.Element;
|
|
132
|
+
|
|
133
|
+
type ThumbUpIconProps = IconProps;
|
|
134
|
+
|
|
135
|
+
declare function ThumbUpIcon(props: ThumbUpIconProps): react.JSX.Element;
|
|
136
|
+
|
|
137
|
+
type HeartIconProps = IconProps;
|
|
138
|
+
|
|
139
|
+
declare function HeartIcon(props: HeartIconProps): react.JSX.Element;
|
|
140
|
+
|
|
141
|
+
type ChatIconProps = IconProps;
|
|
142
|
+
|
|
143
|
+
declare function ChatIcon(props: ChatIconProps): react.JSX.Element;
|
|
144
|
+
|
|
145
|
+
type KeyIconProps = IconProps;
|
|
146
|
+
|
|
147
|
+
declare function KeyIcon(props: KeyIconProps): react.JSX.Element;
|
|
148
|
+
|
|
149
|
+
type StarIconProps = IconProps;
|
|
150
|
+
|
|
151
|
+
declare function StarIcon(props: StarIconProps): react.JSX.Element;
|
|
152
|
+
|
|
153
|
+
type CartIconProps = IconProps;
|
|
154
|
+
|
|
155
|
+
declare function CartIcon(props: CartIconProps): react.JSX.Element;
|
|
156
|
+
|
|
157
|
+
type MusicIconProps = IconProps;
|
|
158
|
+
|
|
159
|
+
declare function MusicIcon(props: MusicIconProps): react.JSX.Element;
|
|
160
|
+
|
|
161
|
+
type GamepadIconProps = IconProps;
|
|
162
|
+
|
|
163
|
+
declare function GamepadIcon(props: GamepadIconProps): react.JSX.Element;
|
|
164
|
+
|
|
165
|
+
type BellIconProps = IconProps;
|
|
166
|
+
|
|
167
|
+
declare function BellIcon(props: BellIconProps): react.JSX.Element;
|
|
168
|
+
|
|
169
|
+
type SunIconProps = IconProps;
|
|
170
|
+
|
|
171
|
+
declare function SunIcon(props: SunIconProps): react.JSX.Element;
|
|
172
|
+
|
|
173
|
+
type BulbIconProps = IconProps;
|
|
174
|
+
|
|
175
|
+
declare function BulbIcon(props: BulbIconProps): react.JSX.Element;
|
|
176
|
+
|
|
177
|
+
type CameraIconProps = IconProps;
|
|
178
|
+
|
|
179
|
+
declare function CameraIcon(props: CameraIconProps): react.JSX.Element;
|
|
180
|
+
|
|
181
|
+
type ClockIconProps = IconProps;
|
|
182
|
+
|
|
183
|
+
declare function ClockIcon(props: ClockIconProps): react.JSX.Element;
|
|
184
|
+
|
|
185
|
+
type TrophyIconProps = IconProps;
|
|
186
|
+
|
|
187
|
+
declare function TrophyIcon(props: TrophyIconProps): react.JSX.Element;
|
|
188
|
+
|
|
189
|
+
type LockIconProps = IconProps;
|
|
190
|
+
|
|
191
|
+
declare function LockIcon(props: LockIconProps): react.JSX.Element;
|
|
192
|
+
|
|
193
|
+
type MapPinIconProps = IconProps;
|
|
194
|
+
|
|
195
|
+
declare function MapPinIcon(props: MapPinIconProps): react.JSX.Element;
|
|
196
|
+
|
|
197
|
+
type CreditCardIconProps = IconProps;
|
|
198
|
+
|
|
199
|
+
declare function CreditCardIcon(props: CreditCardIconProps): react.JSX.Element;
|
|
200
|
+
|
|
201
|
+
type WifiIconProps = IconProps;
|
|
202
|
+
|
|
203
|
+
declare function WifiIcon(props: WifiIconProps): react.JSX.Element;
|
|
204
|
+
|
|
205
|
+
type SearchIconProps = IconProps;
|
|
206
|
+
|
|
207
|
+
declare function SearchIcon(props: SearchIconProps): react.JSX.Element;
|
|
208
|
+
|
|
209
|
+
type HomeIconProps = IconProps;
|
|
210
|
+
|
|
211
|
+
declare function HomeIcon(props: HomeIconProps): react.JSX.Element;
|
|
212
|
+
|
|
213
|
+
type TrashIconProps = IconProps;
|
|
214
|
+
|
|
215
|
+
declare function TrashIcon(props: TrashIconProps): react.JSX.Element;
|
|
216
|
+
|
|
217
|
+
type UserIconProps = IconProps;
|
|
218
|
+
|
|
219
|
+
declare function UserIcon(props: UserIconProps): react.JSX.Element;
|
|
220
|
+
|
|
221
|
+
type PlayIconProps = IconProps;
|
|
222
|
+
|
|
223
|
+
declare function PlayIcon(props: PlayIconProps): react.JSX.Element;
|
|
224
|
+
|
|
225
|
+
type GiftIconProps = IconProps;
|
|
226
|
+
|
|
227
|
+
declare function GiftIcon(props: GiftIconProps): react.JSX.Element;
|
|
228
|
+
|
|
229
|
+
type GlobeIconProps = IconProps;
|
|
230
|
+
|
|
231
|
+
declare function GlobeIcon(props: GlobeIconProps): react.JSX.Element;
|
|
232
|
+
|
|
233
|
+
type BagIconProps = IconProps;
|
|
234
|
+
|
|
235
|
+
declare function BagIcon(props: BagIconProps): react.JSX.Element;
|
|
236
|
+
|
|
237
|
+
declare function CompassIcon(props: IconProps): react.JSX.Element;
|
|
238
|
+
|
|
239
|
+
declare function SendIcon(props: IconProps): react.JSX.Element;
|
|
240
|
+
|
|
241
|
+
declare function TargetIcon(props: IconProps): react.JSX.Element;
|
|
242
|
+
|
|
243
|
+
declare function EditIcon(props: IconProps): react.JSX.Element;
|
|
244
|
+
|
|
245
|
+
declare function PhoneIcon(props: IconProps): react.JSX.Element;
|
|
246
|
+
|
|
247
|
+
declare function BookIcon(props: IconProps): react.JSX.Element;
|
|
248
|
+
|
|
249
|
+
declare function LinkIcon(props: IconProps): react.JSX.Element;
|
|
250
|
+
|
|
251
|
+
type CrownIconProps = IconProps;
|
|
252
|
+
|
|
253
|
+
declare function CrownIcon(props: CrownIconProps): react.JSX.Element;
|
|
254
|
+
|
|
255
|
+
declare function PinIcon(props: IconProps): react.JSX.Element;
|
|
256
|
+
|
|
257
|
+
declare function FlagIcon(props: IconProps): react.JSX.Element;
|
|
258
|
+
|
|
259
|
+
declare function BriefcaseIcon(props: IconProps): react.JSX.Element;
|
|
260
|
+
|
|
261
|
+
declare function EyeIcon(props: IconProps): react.JSX.Element;
|
|
262
|
+
|
|
263
|
+
declare function TagIcon(props: IconProps): react.JSX.Element;
|
|
264
|
+
|
|
265
|
+
declare function CoffeeIcon(props: IconProps): react.JSX.Element;
|
|
266
|
+
|
|
267
|
+
declare function ShareIcon(props: IconProps): react.JSX.Element;
|
|
268
|
+
|
|
269
|
+
declare function LayersIcon(props: IconProps): react.JSX.Element;
|
|
270
|
+
|
|
271
|
+
declare function SparklesIcon(props: IconProps): react.JSX.Element;
|
|
272
|
+
|
|
273
|
+
declare function MegaphoneIcon(props: IconProps): react.JSX.Element;
|
|
274
|
+
|
|
275
|
+
declare function DownloadIcon(props: IconProps): react.JSX.Element;
|
|
276
|
+
|
|
277
|
+
declare function UploadIcon(props: IconProps): react.JSX.Element;
|
|
278
|
+
|
|
279
|
+
declare function MonitorIcon(props: IconProps): react.JSX.Element;
|
|
280
|
+
|
|
281
|
+
declare function KeyboardIcon(props: IconProps): react.JSX.Element;
|
|
282
|
+
|
|
283
|
+
declare function MouseIcon(props: IconProps): react.JSX.Element;
|
|
284
|
+
|
|
285
|
+
declare function HardDriveIcon(props: IconProps): react.JSX.Element;
|
|
286
|
+
|
|
287
|
+
declare function GlassmorphismIcon(props: IconProps): react.JSX.Element;
|
|
288
|
+
|
|
289
|
+
type GithubIconProps = IconProps;
|
|
290
|
+
|
|
291
|
+
declare function GithubIcon(props: GithubIconProps): react.JSX.Element;
|
|
292
|
+
|
|
293
|
+
type TwitterIconProps = IconProps;
|
|
294
|
+
|
|
295
|
+
declare function TwitterIcon(props: TwitterIconProps): react.JSX.Element;
|
|
296
|
+
|
|
297
|
+
type GoogleIconProps = IconProps;
|
|
298
|
+
|
|
299
|
+
declare function GoogleIcon(props: GoogleIconProps): react.JSX.Element;
|
|
300
|
+
|
|
301
|
+
type RouterIconProps = IconProps;
|
|
302
|
+
|
|
303
|
+
declare function RouterIcon(props: RouterIconProps): react.JSX.Element;
|
|
304
|
+
|
|
305
|
+
type ServerIconProps = IconProps;
|
|
306
|
+
|
|
307
|
+
declare function ServerIcon(props: ServerIconProps): react.JSX.Element;
|
|
308
|
+
|
|
309
|
+
type WrenchIconProps = IconProps;
|
|
310
|
+
|
|
311
|
+
declare function WrenchIcon(props: WrenchIconProps): react.JSX.Element;
|
|
312
|
+
|
|
313
|
+
type BoltIconProps = IconProps;
|
|
314
|
+
|
|
315
|
+
declare function BoltIcon(props: BoltIconProps): react.JSX.Element;
|
|
316
|
+
|
|
317
|
+
type SmileIconProps = IconProps;
|
|
318
|
+
|
|
319
|
+
declare function SmileIcon(props: SmileIconProps): react.JSX.Element;
|
|
320
|
+
|
|
321
|
+
type FrownIconProps = IconProps;
|
|
322
|
+
|
|
323
|
+
declare function FrownIcon(props: FrownIconProps): react.JSX.Element;
|
|
324
|
+
|
|
325
|
+
type HeartEyesIconProps = IconProps;
|
|
326
|
+
|
|
327
|
+
declare function HeartEyesIcon(props: HeartEyesIconProps): react.JSX.Element;
|
|
328
|
+
|
|
329
|
+
type HammerIconProps = IconProps;
|
|
330
|
+
|
|
331
|
+
declare function HammerIcon(props: HammerIconProps): react.JSX.Element;
|
|
332
|
+
|
|
333
|
+
type ScrewdriverIconProps = IconProps;
|
|
334
|
+
|
|
335
|
+
declare function ScrewdriverIcon(props: ScrewdriverIconProps): react.JSX.Element;
|
|
336
|
+
|
|
337
|
+
type NutIconProps = IconProps;
|
|
338
|
+
|
|
339
|
+
declare function NutIcon(props: NutIconProps): react.JSX.Element;
|
|
340
|
+
|
|
341
|
+
type PrinterIconProps = IconProps;
|
|
342
|
+
|
|
343
|
+
declare function PrinterIcon(props: PrinterIconProps): react.JSX.Element;
|
|
344
|
+
|
|
345
|
+
type SpeakerIconProps = IconProps;
|
|
346
|
+
|
|
347
|
+
declare function SpeakerIcon(props: SpeakerIconProps): react.JSX.Element;
|
|
348
|
+
|
|
349
|
+
type EthernetIconProps = IconProps;
|
|
350
|
+
|
|
351
|
+
declare function EthernetIcon(props: EthernetIconProps): react.JSX.Element;
|
|
352
|
+
|
|
353
|
+
type SatelliteIconProps = IconProps;
|
|
354
|
+
|
|
355
|
+
declare function SatelliteIcon(props: SatelliteIconProps): react.JSX.Element;
|
|
356
|
+
|
|
357
|
+
type CodeIconProps = IconProps;
|
|
358
|
+
|
|
359
|
+
declare function CodeIcon(props: CodeIconProps): react.JSX.Element;
|
|
360
|
+
|
|
361
|
+
type TerminalIconProps = IconProps;
|
|
362
|
+
|
|
363
|
+
declare function TerminalIcon(props: TerminalIconProps): react.JSX.Element;
|
|
364
|
+
|
|
365
|
+
type GitIconProps = IconProps;
|
|
366
|
+
|
|
367
|
+
declare function GitIcon(props: GitIconProps): react.JSX.Element;
|
|
368
|
+
|
|
369
|
+
type FigmaIconProps = IconProps;
|
|
370
|
+
|
|
371
|
+
declare function FigmaIcon(props: FigmaIconProps): react.JSX.Element;
|
|
372
|
+
|
|
373
|
+
type BarChartIconProps = IconProps;
|
|
374
|
+
|
|
375
|
+
declare function BarChartIcon(props: BarChartIconProps): react.JSX.Element;
|
|
376
|
+
|
|
377
|
+
type CheckIconProps = IconProps;
|
|
378
|
+
|
|
379
|
+
declare function CheckIcon(props: CheckIconProps): react.JSX.Element;
|
|
380
|
+
|
|
381
|
+
type ContainerIconProps = IconProps;
|
|
382
|
+
|
|
383
|
+
declare function ContainerIcon(props: ContainerIconProps): react.JSX.Element;
|
|
384
|
+
|
|
385
|
+
type ShieldCheckIconProps = IconProps;
|
|
386
|
+
|
|
387
|
+
declare function ShieldCheckIcon(props: ShieldCheckIconProps): react.JSX.Element;
|
|
388
|
+
|
|
389
|
+
type ReactIconProps = IconProps;
|
|
390
|
+
|
|
391
|
+
declare function ReactIcon(props: ReactIconProps): react.JSX.Element;
|
|
392
|
+
|
|
393
|
+
type NodeIconProps = IconProps;
|
|
394
|
+
|
|
395
|
+
declare function NodeIcon(props: NodeIconProps): react.JSX.Element;
|
|
396
|
+
|
|
397
|
+
type BugIconProps = IconProps;
|
|
398
|
+
|
|
399
|
+
declare function BugIcon(props: BugIconProps): react.JSX.Element;
|
|
400
|
+
|
|
401
|
+
type FlaskIconProps = IconProps;
|
|
402
|
+
|
|
403
|
+
declare function FlaskIcon(props: FlaskIconProps): react.JSX.Element;
|
|
404
|
+
|
|
405
|
+
type PieChartIconProps = IconProps;
|
|
406
|
+
|
|
407
|
+
declare function PieChartIcon(props: PieChartIconProps): react.JSX.Element;
|
|
408
|
+
|
|
409
|
+
interface FlameIconProps extends IconProps {
|
|
410
|
+
studio?: boolean;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
declare global {
|
|
414
|
+
interface Window {
|
|
415
|
+
THREE: any;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
declare function FlameIcon(props: FlameIconProps): react__default.JSX.Element;
|
|
419
|
+
|
|
420
|
+
type ActivityIconProps = IconProps;
|
|
421
|
+
|
|
422
|
+
declare function ActivityIcon(props: ActivityIconProps): react.JSX.Element;
|
|
423
|
+
|
|
424
|
+
type GraduationCapIconProps = IconProps;
|
|
425
|
+
|
|
426
|
+
declare function GraduationCapIcon(props: GraduationCapIconProps): react.JSX.Element;
|
|
427
|
+
|
|
428
|
+
type TrendingUpIconProps = IconProps;
|
|
429
|
+
|
|
430
|
+
declare function TrendingUpIcon(props: TrendingUpIconProps): react.JSX.Element;
|
|
431
|
+
|
|
432
|
+
type InstagramIconProps = IconProps;
|
|
433
|
+
|
|
434
|
+
declare function InstagramIcon(props: InstagramIconProps): react.JSX.Element;
|
|
435
|
+
|
|
436
|
+
type PackageIconProps = IconProps;
|
|
437
|
+
|
|
438
|
+
declare function PackageIcon(props: PackageIconProps): react.JSX.Element;
|
|
439
|
+
|
|
440
|
+
type AirplaneIconProps = IconProps;
|
|
441
|
+
|
|
442
|
+
declare function AirplaneIcon(props: AirplaneIconProps): react.JSX.Element;
|
|
443
|
+
|
|
444
|
+
type BatteryIconProps = IconProps;
|
|
445
|
+
|
|
446
|
+
declare function BatteryIcon(props: BatteryIconProps): react.JSX.Element;
|
|
447
|
+
|
|
448
|
+
type VideoIconProps = IconProps;
|
|
449
|
+
|
|
450
|
+
declare function VideoIcon(props: VideoIconProps): react.JSX.Element;
|
|
451
|
+
|
|
452
|
+
type MicrophoneIconProps = IconProps;
|
|
453
|
+
|
|
454
|
+
declare function MicrophoneIcon(props: MicrophoneIconProps): react.JSX.Element;
|
|
455
|
+
|
|
456
|
+
type SlidersIconProps = IconProps;
|
|
457
|
+
|
|
458
|
+
declare function SlidersIcon(props: SlidersIconProps): react.JSX.Element;
|
|
459
|
+
|
|
460
|
+
type MapIconProps = IconProps;
|
|
461
|
+
|
|
462
|
+
declare function MapIcon(props: MapIconProps): react.JSX.Element;
|
|
463
|
+
|
|
464
|
+
type UmbrellaIconProps = IconProps;
|
|
465
|
+
|
|
466
|
+
declare function UmbrellaIcon(props: UmbrellaIconProps): react.JSX.Element;
|
|
467
|
+
|
|
468
|
+
type ScissorsIconProps = IconProps;
|
|
469
|
+
|
|
470
|
+
declare function ScissorsIcon(props: ScissorsIconProps): react.JSX.Element;
|
|
471
|
+
|
|
472
|
+
type UnlockIconProps = IconProps;
|
|
473
|
+
|
|
474
|
+
declare function UnlockIcon(props: UnlockIconProps): react.JSX.Element;
|
|
475
|
+
|
|
476
|
+
type ArchiveIconProps = IconProps;
|
|
477
|
+
|
|
478
|
+
declare function ArchiveIcon(props: ArchiveIconProps): react.JSX.Element;
|
|
479
|
+
|
|
480
|
+
type ShieldAlertIconProps = IconProps;
|
|
481
|
+
|
|
482
|
+
declare function ShieldAlertIcon(props: ShieldAlertIconProps): react.JSX.Element;
|
|
483
|
+
|
|
484
|
+
type EyeOffIconProps = IconProps;
|
|
485
|
+
|
|
486
|
+
declare function EyeOffIcon(props: EyeOffIconProps): react.JSX.Element;
|
|
487
|
+
|
|
488
|
+
type UserPlusIconProps = IconProps;
|
|
489
|
+
|
|
490
|
+
declare function UserPlusIcon(props: UserPlusIconProps): react.JSX.Element;
|
|
491
|
+
|
|
492
|
+
type TrendingDownIconProps = IconProps;
|
|
493
|
+
|
|
494
|
+
declare function TrendingDownIcon(props: TrendingDownIconProps): react.JSX.Element;
|
|
495
|
+
|
|
496
|
+
type CopyIconProps = IconProps;
|
|
497
|
+
|
|
498
|
+
declare function CopyIcon(props: CopyIconProps): react.JSX.Element;
|
|
499
|
+
|
|
500
|
+
interface GaugeIconProps extends IconProps {
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
declare function GaugeIcon(props: GaugeIconProps): react.JSX.Element;
|
|
504
|
+
|
|
505
|
+
interface MagnetIconProps extends IconProps {
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
declare function MagnetIcon(props: MagnetIconProps): react.JSX.Element;
|
|
509
|
+
|
|
510
|
+
interface StackIconProps extends IconProps {
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
declare function StackIcon(props: StackIconProps): react.JSX.Element;
|
|
514
|
+
|
|
515
|
+
interface WorkflowIconProps extends IconProps {
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
declare function WorkflowIcon(props: WorkflowIconProps): react.JSX.Element;
|
|
519
|
+
|
|
520
|
+
interface TopologyIconProps extends IconProps {
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
declare function TopologyIcon(props: TopologyIconProps): react.JSX.Element;
|
|
524
|
+
|
|
525
|
+
interface FileIconProps extends IconProps {
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
declare function FileIcon(props: FileIconProps): react.JSX.Element;
|
|
529
|
+
|
|
530
|
+
interface HeadphonesIconProps extends IconProps {
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
declare function HeadphonesIcon(props: HeadphonesIconProps): react.JSX.Element;
|
|
534
|
+
|
|
535
|
+
interface MoonIconProps extends IconProps {
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
declare function MoonIcon(props: MoonIconProps): react.JSX.Element;
|
|
539
|
+
|
|
540
|
+
interface PaperclipIconProps extends IconProps {
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
declare function PaperclipIcon(props: PaperclipIconProps): react.JSX.Element;
|
|
544
|
+
|
|
545
|
+
interface BookmarkIconProps extends IconProps {
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
declare function BookmarkIcon(props: BookmarkIconProps): react.JSX.Element;
|
|
549
|
+
|
|
550
|
+
interface CloudLightningIconProps extends IconProps {
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
declare function CloudLightningIcon(props: CloudLightningIconProps): react.JSX.Element;
|
|
554
|
+
|
|
555
|
+
interface FolderOpenIconProps extends IconProps {
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
declare function FolderOpenIcon(props: FolderOpenIconProps): react.JSX.Element;
|
|
559
|
+
|
|
560
|
+
interface VolumeIconProps extends IconProps {
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
declare function VolumeIcon(props: VolumeIconProps): react.JSX.Element;
|
|
564
|
+
|
|
565
|
+
interface BellOffIconProps extends IconProps {
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
declare function BellOffIcon(props: BellOffIconProps): react.JSX.Element;
|
|
569
|
+
|
|
570
|
+
interface SunMoonIconProps extends IconProps {
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
declare function SunMoonIcon(props: SunMoonIconProps): react.JSX.Element;
|
|
574
|
+
|
|
575
|
+
interface PistonIconProps extends IconProps {
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
declare function PistonIcon(props: PistonIconProps): react.JSX.Element;
|
|
579
|
+
|
|
580
|
+
interface SpringIconProps extends IconProps {
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
declare function SpringIcon(props: SpringIconProps): react.JSX.Element;
|
|
584
|
+
|
|
585
|
+
interface AnvilIconProps extends IconProps {
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
declare function AnvilIcon(props: AnvilIconProps): react.JSX.Element;
|
|
589
|
+
|
|
590
|
+
interface HookIconProps extends IconProps {
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
declare function HookIcon(props: HookIconProps): react.JSX.Element;
|
|
594
|
+
|
|
595
|
+
interface TurbineIconProps extends IconProps {
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
declare function TurbineIcon(props: TurbineIconProps): react.JSX.Element;
|
|
599
|
+
|
|
600
|
+
interface PliersIconProps extends IconProps {
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
declare function PliersIcon(props: PliersIconProps): react.JSX.Element;
|
|
604
|
+
|
|
605
|
+
interface DrillIconProps extends IconProps {
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
declare function DrillIcon(props: DrillIconProps): react.JSX.Element;
|
|
609
|
+
|
|
610
|
+
interface HacksawIconProps extends IconProps {
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
declare function HacksawIcon(props: HacksawIconProps): react.JSX.Element;
|
|
614
|
+
|
|
615
|
+
interface TapeMeasureIconProps extends IconProps {
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
declare function TapeMeasureIcon(props: TapeMeasureIconProps): react.JSX.Element;
|
|
619
|
+
|
|
620
|
+
interface CaliperIconProps extends IconProps {
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
declare function CaliperIcon(props: CaliperIconProps): react.JSX.Element;
|
|
624
|
+
|
|
625
|
+
interface SpiritLevelIconProps extends IconProps {
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
declare function SpiritLevelIcon(props: SpiritLevelIconProps): react.JSX.Element;
|
|
629
|
+
|
|
630
|
+
interface SledgehammerIconProps extends IconProps {
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
declare function SledgehammerIcon(props: SledgehammerIconProps): react.JSX.Element;
|
|
634
|
+
|
|
635
|
+
interface PhoneMobileIconProps extends IconProps {
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
declare function PhoneMobileIcon(props: PhoneMobileIconProps): react.JSX.Element;
|
|
639
|
+
|
|
640
|
+
interface TabletIconProps extends IconProps {
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
declare function TabletIcon(props: TabletIconProps): react.JSX.Element;
|
|
644
|
+
|
|
645
|
+
interface LaptopIconProps extends IconProps {
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
declare function LaptopIcon(props: LaptopIconProps): react.JSX.Element;
|
|
649
|
+
|
|
650
|
+
interface SmartWatchIconProps extends IconProps {
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
declare function SmartWatchIcon(props: SmartWatchIconProps): react.JSX.Element;
|
|
654
|
+
|
|
655
|
+
interface RouterWifiIconProps extends IconProps {
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
declare function RouterWifiIcon(props: RouterWifiIconProps): react.JSX.Element;
|
|
659
|
+
|
|
660
|
+
interface ServerRackIconProps extends IconProps {
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
declare function ServerRackIcon(props: ServerRackIconProps): react.JSX.Element;
|
|
664
|
+
|
|
665
|
+
interface HardDriveExternalIconProps extends IconProps {
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
declare function HardDriveExternalIcon(props: HardDriveExternalIconProps): react.JSX.Element;
|
|
669
|
+
|
|
670
|
+
interface WebcamIconProps extends IconProps {
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
declare function WebcamIcon(props: WebcamIconProps): react.JSX.Element;
|
|
674
|
+
|
|
675
|
+
interface ChiselIconProps extends IconProps {
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
declare function ChiselIcon(props: ChiselIconProps): react.JSX.Element;
|
|
679
|
+
|
|
680
|
+
interface CrowbarIconProps extends IconProps {
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
declare function CrowbarIcon(props: CrowbarIconProps): react.JSX.Element;
|
|
684
|
+
|
|
685
|
+
interface FunnelIconProps extends IconProps {
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
declare function FunnelIcon(props: FunnelIconProps): react.JSX.Element;
|
|
689
|
+
|
|
690
|
+
interface OilCanIconProps extends IconProps {
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
declare function OilCanIcon(props: OilCanIconProps): react.JSX.Element;
|
|
694
|
+
|
|
695
|
+
interface BearingIconProps extends IconProps {
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
declare function BearingIcon(props: BearingIconProps): react.JSX.Element;
|
|
699
|
+
|
|
700
|
+
interface PulleyIconProps extends IconProps {
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
declare function PulleyIcon(props: PulleyIconProps): react.JSX.Element;
|
|
704
|
+
|
|
705
|
+
interface SprocketIconProps extends IconProps {
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
declare function SprocketIcon(props: SprocketIconProps): react.JSX.Element;
|
|
709
|
+
|
|
710
|
+
interface ProjectorIconProps extends IconProps {
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
declare function ProjectorIcon(props: ProjectorIconProps): react.JSX.Element;
|
|
714
|
+
|
|
715
|
+
interface GameConsoleIconProps extends IconProps {
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
declare function GameConsoleIcon(props: GameConsoleIconProps): react.JSX.Element;
|
|
719
|
+
|
|
720
|
+
interface VRHeadsetIconProps extends IconProps {
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
declare function VRHeadsetIcon(props: VRHeadsetIconProps): react.JSX.Element;
|
|
724
|
+
|
|
725
|
+
interface SmartSpeakerIconProps extends IconProps {
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
declare function SmartSpeakerIcon(props: SmartSpeakerIconProps): react.JSX.Element;
|
|
729
|
+
|
|
730
|
+
interface PowerBankIconProps extends IconProps {
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
declare function PowerBankIcon(props: PowerBankIconProps): react.JSX.Element;
|
|
734
|
+
|
|
735
|
+
interface UsbDriveIconProps extends IconProps {
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
declare function UsbDriveIcon(props: UsbDriveIconProps): react.JSX.Element;
|
|
739
|
+
|
|
740
|
+
interface MotherboardIconProps extends IconProps {
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
declare function MotherboardIcon(props: MotherboardIconProps): react.JSX.Element;
|
|
744
|
+
|
|
745
|
+
interface RamStickIconProps extends IconProps {
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
declare function RamStickIcon(props: RamStickIconProps): react.JSX.Element;
|
|
749
|
+
|
|
750
|
+
interface CrankIconProps extends IconProps {
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
declare function CrankIcon(props: CrankIconProps): react.JSX.Element;
|
|
754
|
+
|
|
755
|
+
interface CamshaftIconProps extends IconProps {
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
declare function CamshaftIcon(props: CamshaftIconProps): react.JSX.Element;
|
|
759
|
+
|
|
760
|
+
interface DriveShaftIconProps extends IconProps {
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
declare function DriveShaftIcon(props: DriveShaftIconProps): react.JSX.Element;
|
|
764
|
+
|
|
765
|
+
interface ValveIconProps extends IconProps {
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
declare function ValveIcon(props: ValveIconProps): react.JSX.Element;
|
|
769
|
+
|
|
770
|
+
interface PropellerIconProps extends IconProps {
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
declare function PropellerIcon(props: PropellerIconProps): react.JSX.Element;
|
|
774
|
+
|
|
775
|
+
interface HelicopterRotorIconProps extends IconProps {
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
declare function HelicopterRotorIcon(props: HelicopterRotorIconProps): react.JSX.Element;
|
|
779
|
+
|
|
780
|
+
interface HydraulicJackIconProps extends IconProps {
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
declare function HydraulicJackIcon(props: HydraulicJackIconProps): react.JSX.Element;
|
|
784
|
+
|
|
785
|
+
interface GpuIconProps extends IconProps {
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
declare function GpuIcon(props: GpuIconProps): react.JSX.Element;
|
|
789
|
+
|
|
790
|
+
interface PowerSupplyIconProps extends IconProps {
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
declare function PowerSupplyIcon(props: PowerSupplyIconProps): react.JSX.Element;
|
|
794
|
+
|
|
795
|
+
interface NetworkSwitchIconProps extends IconProps {
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
declare function NetworkSwitchIcon(props: NetworkSwitchIconProps): react.JSX.Element;
|
|
799
|
+
|
|
800
|
+
interface SmartPlugIconProps extends IconProps {
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
declare function SmartPlugIcon(props: SmartPlugIconProps): react.JSX.Element;
|
|
804
|
+
|
|
805
|
+
interface SmartBulbIconProps extends IconProps {
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
declare function SmartBulbIcon(props: SmartBulbIconProps): react.JSX.Element;
|
|
809
|
+
|
|
810
|
+
interface SecurityCameraIconProps extends IconProps {
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
declare function SecurityCameraIcon(props: SecurityCameraIconProps): react.JSX.Element;
|
|
814
|
+
|
|
815
|
+
interface SmartLockIconProps extends IconProps {
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
declare function SmartLockIcon(props: SmartLockIconProps): react.JSX.Element;
|
|
819
|
+
|
|
820
|
+
interface ThermostatIconProps extends IconProps {
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
declare function ThermostatIcon(props: ThermostatIconProps): react.JSX.Element;
|
|
824
|
+
|
|
825
|
+
interface GClampIconProps extends IconProps {
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
declare function GClampIcon(props: GClampIconProps): react.JSX.Element;
|
|
829
|
+
|
|
830
|
+
interface ViceIconProps extends IconProps {
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
declare function ViceIcon(props: ViceIconProps): react.JSX.Element;
|
|
834
|
+
|
|
835
|
+
interface GreaseGunIconProps extends IconProps {
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
declare function GreaseGunIcon(props: GreaseGunIconProps): react.JSX.Element;
|
|
839
|
+
|
|
840
|
+
interface GearboxIconProps extends IconProps {
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
declare function GearboxIcon(props: GearboxIconProps): react.JSX.Element;
|
|
844
|
+
|
|
845
|
+
interface DifferentialIconProps extends IconProps {
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
declare function DifferentialIcon(props: DifferentialIconProps): react.JSX.Element;
|
|
849
|
+
|
|
850
|
+
interface SuspensionIconProps extends IconProps {
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
declare function SuspensionIcon(props: SuspensionIconProps): react.JSX.Element;
|
|
854
|
+
|
|
855
|
+
interface WindlassIconProps extends IconProps {
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
declare function WindlassIcon(props: WindlassIconProps): react.JSX.Element;
|
|
859
|
+
|
|
860
|
+
interface EarbudsIconProps extends IconProps {
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
declare function EarbudsIcon(props: EarbudsIconProps): react.JSX.Element;
|
|
864
|
+
|
|
865
|
+
interface SmartRingIconProps extends IconProps {
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
declare function SmartRingIcon(props: SmartRingIconProps): react.JSX.Element;
|
|
869
|
+
|
|
870
|
+
interface DrawingTabletIconProps extends IconProps {
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
declare function DrawingTabletIcon(props: DrawingTabletIconProps): react.JSX.Element;
|
|
874
|
+
|
|
875
|
+
interface BarcodeScannerIconProps extends IconProps {
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
declare function BarcodeScannerIcon(props: BarcodeScannerIconProps): react.JSX.Element;
|
|
879
|
+
|
|
880
|
+
interface POSRegisterIconProps extends IconProps {
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
declare function POSRegisterIcon(props: POSRegisterIconProps): react.JSX.Element;
|
|
884
|
+
|
|
885
|
+
interface CalculatorIconProps extends IconProps {
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
declare function CalculatorIcon(props: CalculatorIconProps): react.JSX.Element;
|
|
889
|
+
|
|
890
|
+
interface RemoteControlIconProps extends IconProps {
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
declare function RemoteControlIcon(props: RemoteControlIconProps): react.JSX.Element;
|
|
894
|
+
|
|
895
|
+
interface SoundbarIconProps extends IconProps {
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
declare function SoundbarIcon(props: SoundbarIconProps): react.JSX.Element;
|
|
899
|
+
|
|
900
|
+
interface JackhammerIconProps extends IconProps {
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
declare function JackhammerIcon(props: JackhammerIconProps): react.JSX.Element;
|
|
904
|
+
|
|
905
|
+
interface SolderingIronIconProps extends IconProps {
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
declare function SolderingIronIcon(props: SolderingIronIconProps): react.JSX.Element;
|
|
909
|
+
|
|
910
|
+
interface BlowtorchIconProps extends IconProps {
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
declare function BlowtorchIcon(props: BlowtorchIconProps): react.JSX.Element;
|
|
914
|
+
|
|
915
|
+
interface WheelbarrowIconProps extends IconProps {
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
declare function WheelbarrowIcon(props: WheelbarrowIconProps): react.JSX.Element;
|
|
919
|
+
|
|
920
|
+
interface PlumbBobIconProps extends IconProps {
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
declare function PlumbBobIcon(props: PlumbBobIconProps): react.JSX.Element;
|
|
924
|
+
|
|
925
|
+
interface ShearsIconProps extends IconProps {
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
declare function ShearsIcon(props: ShearsIconProps): react.JSX.Element;
|
|
929
|
+
|
|
930
|
+
interface WireStripperIconProps extends IconProps {
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
declare function WireStripperIcon(props: WireStripperIconProps): react.JSX.Element;
|
|
934
|
+
|
|
935
|
+
interface PipeWrenchIconProps extends IconProps {
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
declare function PipeWrenchIcon(props: PipeWrenchIconProps): react.JSX.Element;
|
|
939
|
+
|
|
940
|
+
interface FloppyDiskIconProps extends IconProps {
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
declare function FloppyDiskIcon(props: FloppyDiskIconProps): react.JSX.Element;
|
|
944
|
+
|
|
945
|
+
interface TapeCassetteIconProps extends IconProps {
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
declare function TapeCassetteIcon(props: TapeCassetteIconProps): react.JSX.Element;
|
|
949
|
+
|
|
950
|
+
interface CompactDiscIconProps extends IconProps {
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
declare function CompactDiscIcon(props: CompactDiscIconProps): react.JSX.Element;
|
|
954
|
+
|
|
955
|
+
interface TvIconProps extends IconProps {
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
declare function TvIcon(props: TvIconProps): react.JSX.Element;
|
|
959
|
+
|
|
960
|
+
interface RadioIconProps extends IconProps {
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
declare function RadioIcon(props: RadioIconProps): react.JSX.Element;
|
|
964
|
+
|
|
965
|
+
interface WalkieTalkieIconProps extends IconProps {
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
declare function WalkieTalkieIcon(props: WalkieTalkieIconProps): react.JSX.Element;
|
|
969
|
+
|
|
970
|
+
interface HeadsetIconProps extends IconProps {
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
declare function HeadsetIcon(props: HeadsetIconProps): react.JSX.Element;
|
|
974
|
+
|
|
975
|
+
interface FishIconProps extends IconProps {
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
declare function FishIcon(props: FishIconProps): react.JSX.Element;
|
|
979
|
+
|
|
980
|
+
interface ButterflyIconProps extends IconProps {
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
declare function ButterflyIcon(props: ButterflyIconProps): react.JSX.Element;
|
|
984
|
+
|
|
985
|
+
interface BirdIconProps extends IconProps {
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
declare function BirdIcon(props: BirdIconProps): react.JSX.Element;
|
|
989
|
+
|
|
990
|
+
interface CatIconProps extends IconProps {
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
declare function CatIcon(props: CatIconProps): react.JSX.Element;
|
|
994
|
+
|
|
995
|
+
interface DogIconProps extends IconProps {
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
declare function DogIcon(props: DogIconProps): react.JSX.Element;
|
|
999
|
+
|
|
1000
|
+
interface RabbitIconProps extends IconProps {
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
declare function RabbitIcon(props: RabbitIconProps): react.JSX.Element;
|
|
1004
|
+
|
|
1005
|
+
interface ElephantIconProps extends IconProps {
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
declare function ElephantIcon(props: ElephantIconProps): react.JSX.Element;
|
|
1009
|
+
|
|
1010
|
+
interface OwlIconProps extends IconProps {
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
declare function OwlIcon(props: OwlIconProps): react.JSX.Element;
|
|
1014
|
+
|
|
1015
|
+
interface TurtleIconProps extends IconProps {
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
declare function TurtleIcon(props: TurtleIconProps): react.JSX.Element;
|
|
1019
|
+
|
|
1020
|
+
interface DolphinIconProps extends IconProps {
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
declare function DolphinIcon(props: DolphinIconProps): react.JSX.Element;
|
|
1024
|
+
|
|
1025
|
+
interface RoseIconProps extends IconProps {
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
declare function RoseIcon(props: RoseIconProps): react.JSX.Element;
|
|
1029
|
+
|
|
1030
|
+
interface SunflowerIconProps extends IconProps {
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
declare function SunflowerIcon(props: SunflowerIconProps): react.JSX.Element;
|
|
1034
|
+
|
|
1035
|
+
interface TulipIconProps extends IconProps {
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
declare function TulipIcon(props: TulipIconProps): react.JSX.Element;
|
|
1039
|
+
|
|
1040
|
+
interface LotusIconProps extends IconProps {
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
declare function LotusIcon(props: LotusIconProps): react.JSX.Element;
|
|
1044
|
+
|
|
1045
|
+
interface DaisyIconProps extends IconProps {
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
declare function DaisyIcon(props: DaisyIconProps): react.JSX.Element;
|
|
1049
|
+
|
|
1050
|
+
interface HibiscusIconProps extends IconProps {
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
declare function HibiscusIcon(props: HibiscusIconProps): react.JSX.Element;
|
|
1054
|
+
|
|
1055
|
+
interface OrchidIconProps extends IconProps {
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
declare function OrchidIcon(props: OrchidIconProps): react.JSX.Element;
|
|
1059
|
+
|
|
1060
|
+
interface LilyIconProps extends IconProps {
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
declare function LilyIcon(props: LilyIconProps): react.JSX.Element;
|
|
1064
|
+
|
|
1065
|
+
interface CactusIconProps extends IconProps {
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
declare function CactusIcon(props: CactusIconProps): react.JSX.Element;
|
|
1069
|
+
|
|
1070
|
+
interface LavenderIconProps extends IconProps {
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
declare function LavenderIcon(props: LavenderIconProps): react.JSX.Element;
|
|
1074
|
+
|
|
1075
|
+
interface LetterIconProps extends IconProps {
|
|
1076
|
+
/** The letter to render (A–Z). Case-insensitive. */
|
|
1077
|
+
letter: string;
|
|
1078
|
+
/** URL to a typeface.json font file. Defaults to the bundled Helvetiker Bold. */
|
|
1079
|
+
fontUrl?: string;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
declare function LetterIcon({ letter, fontUrl, ...props }: LetterIconProps): react.JSX.Element;
|
|
1083
|
+
|
|
1084
|
+
type LetterOnlyProps = Omit<LetterIconProps, "letter">;
|
|
1085
|
+
declare const AIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1086
|
+
declare const BIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1087
|
+
declare const CIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1088
|
+
declare const DIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1089
|
+
declare const EIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1090
|
+
declare const FIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1091
|
+
declare const GIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1092
|
+
declare const HIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1093
|
+
declare const IIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1094
|
+
declare const JIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1095
|
+
declare const KIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1096
|
+
declare const LIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1097
|
+
declare const MIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1098
|
+
declare const NIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1099
|
+
declare const OIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1100
|
+
declare const PIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1101
|
+
declare const QIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1102
|
+
declare const RIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1103
|
+
declare const SIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1104
|
+
declare const TIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1105
|
+
declare const UIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1106
|
+
declare const VIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1107
|
+
declare const WIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1108
|
+
declare const XIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1109
|
+
declare const YIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1110
|
+
declare const ZIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1111
|
+
declare const ZeroIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1112
|
+
declare const OneIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1113
|
+
declare const TwoIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1114
|
+
declare const ThreeIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1115
|
+
declare const FourIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1116
|
+
declare const FiveIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1117
|
+
declare const SixIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1118
|
+
declare const SevenIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1119
|
+
declare const EightIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1120
|
+
declare const NineIcon: (props: LetterOnlyProps) => react.JSX.Element;
|
|
1121
|
+
|
|
1122
|
+
interface Fallback2DProps {
|
|
1123
|
+
id: string;
|
|
1124
|
+
color?: string;
|
|
1125
|
+
theme?: "light" | "dark";
|
|
1126
|
+
preset?: IconPreset;
|
|
1127
|
+
}
|
|
1128
|
+
declare const Fallback2D: react__default.FC<Fallback2DProps>;
|
|
1129
|
+
|
|
1130
|
+
export { AIcon, ActivityIcon, AirplaneIcon, AlertCircleIcon, AnchorIcon, AnvilIcon, ArchiveIcon, BIcon, BagIcon, BarChartIcon, BarcodeScannerIcon, BatteryIcon, BearingIcon, BellIcon, BellOffIcon, BirdIcon, BlowtorchIcon, BoltIcon, BookIcon, BookmarkIcon, BriefcaseIcon, BugIcon, BulbIcon, ButterflyIcon, CIcon, CactusIcon, CalculatorIcon, CalendarIcon, CaliperIcon, CameraIcon, CamshaftIcon, CartIcon, CatIcon, ChatIcon, CheckIcon, ChiselIcon, ClockIcon, CloseIcon, CloudIcon, CloudLightningIcon, CodeIcon, CoffeeIcon, CompactDiscIcon, CompassIcon, ContainerIcon, CopyIcon, CpuIcon, CrankIcon, CreditCardIcon, CrowbarIcon, CrownIcon, DIcon, DaisyIcon, DatabaseIcon, DiamondIcon, DifferentialIcon, DogIcon, DollarIcon, DolphinIcon, DownloadIcon, DrawingTabletIcon, DrillIcon, DriveShaftIcon, EIcon, EarbudsIcon, EditIcon, EightIcon, ElephantIcon, EthernetIcon, EyeIcon, EyeOffIcon, FIcon, FacebookIcon, Fallback2D, FigmaIcon, FileIcon, FilterIcon, FishIcon, FiveIcon, FlagIcon, FlameIcon, FlashIcon, FlaskIcon, FloppyDiskIcon, FolderIcon, FolderOpenIcon, FourIcon, FrownIcon, FunnelIcon, GClampIcon, GIcon, GameConsoleIcon, GamepadIcon, GaugeIcon, GearIcon, GearboxIcon, GiftIcon, GitIcon, GithubIcon, GlassmorphismIcon, GlobeIcon, GoogleIcon, GpuIcon, GraduationCapIcon, GreaseGunIcon, HIcon, HacksawIcon, HammerIcon, HardDriveExternalIcon, HardDriveIcon, HeadphonesIcon, HeadsetIcon, HeartEyesIcon, HeartIcon, HelicopterRotorIcon, HibiscusIcon, HomeIcon, HookIcon, HydraulicJackIcon, IIcon, type IconAngle, type IconPreset, type IconProps, InfoIcon, InstagramIcon, JIcon, JackhammerIcon, KIcon, KeyIcon, KeyboardIcon, LIcon, LaptopIcon, LavenderIcon, LayersIcon, LetterIcon, type LetterIconProps, LilyIcon, LinkIcon, LockIcon, LotusIcon, MIcon, MagnetIcon, MailIcon, MapIcon, MapPinIcon, type MaterialConfig, MegaphoneIcon, MicrophoneIcon, MinusIcon, MonitorIcon, MoonIcon, MotherboardIcon, MouseIcon, MusicIcon, NIcon, NetworkIcon, NetworkSwitchIcon, NineIcon, NodeIcon, NutIcon, OIcon, OilCanIcon, OneIcon, OrchidIcon, OwlIcon, PIcon, POSRegisterIcon, PackageIcon, PaperclipIcon, PhoneIcon, PhoneMobileIcon, PieChartIcon, PinIcon, PipeWrenchIcon, PipelineIcon, PistonIcon, PlayIcon, PliersIcon, PlumbBobIcon, PlusIcon, PowerBankIcon, PowerSupplyIcon, PrinterIcon, ProjectorIcon, PropellerIcon, PulleyIcon, QIcon, RIcon, RabbitIcon, RadioIcon, RamStickIcon, ReactIcon, RefreshIcon, RemoteControlIcon, RocketIcon, RoseIcon, RouterIcon, RouterWifiIcon, SIcon, SatelliteIcon, ScissorsIcon, ScrewdriverIcon, SearchIcon, SecurityCameraIcon, SendIcon, ServerIcon, ServerRackIcon, SevenIcon, ShareIcon, ShearsIcon, ShieldAlertIcon, ShieldCheckIcon, ShieldIcon, SixIcon, SledgehammerIcon, SlidersIcon, SmartBulbIcon, SmartLockIcon, SmartPlugIcon, SmartRingIcon, SmartSpeakerIcon, SmartWatchIcon, SmileIcon, SolderingIronIcon, SoundbarIcon, SparklesIcon, SpeakerIcon, SpiritLevelIcon, SpringIcon, SprocketIcon, StackIcon, StarIcon, SunIcon, SunMoonIcon, SunflowerIcon, SuspensionIcon, TIcon, TabletIcon, TagIcon, TapeCassetteIcon, TapeMeasureIcon, TargetIcon, TerminalIcon, ThermostatIcon, ThreeIcon, ThumbUpIcon, TopologyIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TrophyIcon, TulipIcon, TurbineIcon, TurtleIcon, TvIcon, TwitterIcon, TwoIcon, UIcon, UmbrellaIcon, UnlockIcon, UploadIcon, UsbDriveIcon, UserIcon, UserPlusIcon, VIcon, VRHeadsetIcon, ValveIcon, ViceIcon, VideoIcon, VolumeIcon, WIcon, WalkieTalkieIcon, WalletIcon, WebcamIcon, WebhookIcon, WheelbarrowIcon, WifiIcon, WindlassIcon, WireStripperIcon, WorkflowIcon, WrenchIcon, XIcon, YIcon, ZIcon, ZeroIcon };
|