mcp-probe-kit 3.0.14 → 3.0.16

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.
Files changed (43) hide show
  1. package/README.md +17 -11
  2. package/build/lib/__tests__/gitnexus-bridge.unit.test.js +9 -1
  3. package/build/lib/gitnexus-bridge.d.ts +1 -0
  4. package/build/lib/gitnexus-bridge.js +29 -1
  5. package/build/lib/skill-bridge.d.ts +31 -0
  6. package/build/lib/skill-bridge.js +100 -0
  7. package/build/resources/ui-ux-data/charts.json +302 -0
  8. package/build/resources/ui-ux-data/colors.json +1058 -0
  9. package/build/resources/ui-ux-data/icons.json +1102 -0
  10. package/build/resources/ui-ux-data/landing.json +262 -0
  11. package/build/resources/ui-ux-data/metadata.json +6 -0
  12. package/build/resources/ui-ux-data/products.json +1058 -0
  13. package/build/resources/ui-ux-data/react-performance.json +574 -0
  14. package/build/resources/ui-ux-data/stacks/astro.json +266 -0
  15. package/build/resources/ui-ux-data/stacks/flutter.json +626 -0
  16. package/build/resources/ui-ux-data/stacks/html-tailwind.json +662 -0
  17. package/build/resources/ui-ux-data/stacks/jetpack-compose.json +626 -0
  18. package/build/resources/ui-ux-data/stacks/nextjs.json +218 -0
  19. package/build/resources/ui-ux-data/stacks/nuxt-ui.json +14 -0
  20. package/build/resources/ui-ux-data/stacks/nuxtjs.json +182 -0
  21. package/build/resources/ui-ux-data/stacks/react-native.json +350 -0
  22. package/build/resources/ui-ux-data/stacks/react.json +530 -0
  23. package/build/resources/ui-ux-data/stacks/shadcn.json +566 -0
  24. package/build/resources/ui-ux-data/stacks/svelte.json +134 -0
  25. package/build/resources/ui-ux-data/stacks/swiftui.json +26 -0
  26. package/build/resources/ui-ux-data/stacks/vue.json +170 -0
  27. package/build/resources/ui-ux-data/styles.json +1610 -0
  28. package/build/resources/ui-ux-data/typography.json +743 -0
  29. package/build/resources/ui-ux-data/ui-reasoning.json +1431 -0
  30. package/build/resources/ui-ux-data/ux-guidelines.json +1190 -0
  31. package/build/resources/ui-ux-data/web-interface.json +389 -0
  32. package/build/schemas/ui-ux-schemas.js +1 -1
  33. package/build/tools/start_product.js +8 -1
  34. package/build/tools/start_ui.js +14 -3
  35. package/build/tools/ui-ux-tools.js +21 -17
  36. package/build/utils/ui-data-loader.d.ts +18 -2
  37. package/build/utils/ui-data-loader.js +74 -12
  38. package/docs/i18n/en.json +4 -2
  39. package/docs/i18n/ja.json +4 -2
  40. package/docs/i18n/ko.json +4 -2
  41. package/docs/i18n/zh-CN.json +4 -2
  42. package/docs/pages/getting-started.html +3 -0
  43. package/package.json +2 -1
@@ -0,0 +1,1102 @@
1
+ [
2
+ {
3
+ "No": "1",
4
+ "Category": "Navigation",
5
+ "Icon Name": "menu",
6
+ "Keywords": "hamburger menu navigation toggle bars",
7
+ "Library": "Lucide",
8
+ "Import Code": "import { Menu } from 'lucide-react'",
9
+ "Usage": "<Menu />",
10
+ "Best For": "Mobile navigation drawer toggle sidebar",
11
+ "Style": "Outline"
12
+ },
13
+ {
14
+ "No": "2",
15
+ "Category": "Navigation",
16
+ "Icon Name": "arrow-left",
17
+ "Keywords": "back previous return navigate",
18
+ "Library": "Lucide",
19
+ "Import Code": "import { ArrowLeft } from 'lucide-react'",
20
+ "Usage": "<ArrowLeft />",
21
+ "Best For": "Back button breadcrumb navigation",
22
+ "Style": "Outline"
23
+ },
24
+ {
25
+ "No": "3",
26
+ "Category": "Navigation",
27
+ "Icon Name": "arrow-right",
28
+ "Keywords": "next forward continue navigate",
29
+ "Library": "Lucide",
30
+ "Import Code": "import { ArrowRight } from 'lucide-react'",
31
+ "Usage": "<ArrowRight />",
32
+ "Best For": "Forward button next step CTA",
33
+ "Style": "Outline"
34
+ },
35
+ {
36
+ "No": "4",
37
+ "Category": "Navigation",
38
+ "Icon Name": "chevron-down",
39
+ "Keywords": "dropdown expand accordion select",
40
+ "Library": "Lucide",
41
+ "Import Code": "import { ChevronDown } from 'lucide-react'",
42
+ "Usage": "<ChevronDown />",
43
+ "Best For": "Dropdown toggle accordion header",
44
+ "Style": "Outline"
45
+ },
46
+ {
47
+ "No": "5",
48
+ "Category": "Navigation",
49
+ "Icon Name": "chevron-up",
50
+ "Keywords": "collapse close accordion minimize",
51
+ "Library": "Lucide",
52
+ "Import Code": "import { ChevronUp } from 'lucide-react'",
53
+ "Usage": "<ChevronUp />",
54
+ "Best For": "Accordion collapse minimize",
55
+ "Style": "Outline"
56
+ },
57
+ {
58
+ "No": "6",
59
+ "Category": "Navigation",
60
+ "Icon Name": "home",
61
+ "Keywords": "homepage main dashboard start",
62
+ "Library": "Lucide",
63
+ "Import Code": "import { Home } from 'lucide-react'",
64
+ "Usage": "<Home />",
65
+ "Best For": "Home navigation main page",
66
+ "Style": "Outline"
67
+ },
68
+ {
69
+ "No": "7",
70
+ "Category": "Navigation",
71
+ "Icon Name": "x",
72
+ "Keywords": "close cancel dismiss remove exit",
73
+ "Library": "Lucide",
74
+ "Import Code": "import { X } from 'lucide-react'",
75
+ "Usage": "<X />",
76
+ "Best For": "Modal close dismiss button",
77
+ "Style": "Outline"
78
+ },
79
+ {
80
+ "No": "8",
81
+ "Category": "Navigation",
82
+ "Icon Name": "external-link",
83
+ "Keywords": "open new tab external link",
84
+ "Library": "Lucide",
85
+ "Import Code": "import { ExternalLink } from 'lucide-react'",
86
+ "Usage": "<ExternalLink />",
87
+ "Best For": "External link indicator",
88
+ "Style": "Outline"
89
+ },
90
+ {
91
+ "No": "9",
92
+ "Category": "Action",
93
+ "Icon Name": "plus",
94
+ "Keywords": "add create new insert",
95
+ "Library": "Lucide",
96
+ "Import Code": "import { Plus } from 'lucide-react'",
97
+ "Usage": "<Plus />",
98
+ "Best For": "Add button create new item",
99
+ "Style": "Outline"
100
+ },
101
+ {
102
+ "No": "10",
103
+ "Category": "Action",
104
+ "Icon Name": "minus",
105
+ "Keywords": "remove subtract decrease delete",
106
+ "Library": "Lucide",
107
+ "Import Code": "import { Minus } from 'lucide-react'",
108
+ "Usage": "<Minus />",
109
+ "Best For": "Remove item quantity decrease",
110
+ "Style": "Outline"
111
+ },
112
+ {
113
+ "No": "11",
114
+ "Category": "Action",
115
+ "Icon Name": "trash-2",
116
+ "Keywords": "delete remove discard bin",
117
+ "Library": "Lucide",
118
+ "Import Code": "import { Trash2 } from 'lucide-react'",
119
+ "Usage": "<Trash2 />",
120
+ "Best For": "Delete action destructive",
121
+ "Style": "Outline"
122
+ },
123
+ {
124
+ "No": "12",
125
+ "Category": "Action",
126
+ "Icon Name": "edit",
127
+ "Keywords": "pencil modify change update",
128
+ "Library": "Lucide",
129
+ "Import Code": "import { Edit } from 'lucide-react'",
130
+ "Usage": "<Edit />",
131
+ "Best For": "Edit button modify content",
132
+ "Style": "Outline"
133
+ },
134
+ {
135
+ "No": "13",
136
+ "Category": "Action",
137
+ "Icon Name": "save",
138
+ "Keywords": "disk store persist save",
139
+ "Library": "Lucide",
140
+ "Import Code": "import { Save } from 'lucide-react'",
141
+ "Usage": "<Save />",
142
+ "Best For": "Save button persist changes",
143
+ "Style": "Outline"
144
+ },
145
+ {
146
+ "No": "14",
147
+ "Category": "Action",
148
+ "Icon Name": "download",
149
+ "Keywords": "export save file download",
150
+ "Library": "Lucide",
151
+ "Import Code": "import { Download } from 'lucide-react'",
152
+ "Usage": "<Download />",
153
+ "Best For": "Download file export",
154
+ "Style": "Outline"
155
+ },
156
+ {
157
+ "No": "15",
158
+ "Category": "Action",
159
+ "Icon Name": "upload",
160
+ "Keywords": "import file attach upload",
161
+ "Library": "Lucide",
162
+ "Import Code": "import { Upload } from 'lucide-react'",
163
+ "Usage": "<Upload />",
164
+ "Best For": "Upload file import",
165
+ "Style": "Outline"
166
+ },
167
+ {
168
+ "No": "16",
169
+ "Category": "Action",
170
+ "Icon Name": "copy",
171
+ "Keywords": "duplicate clipboard paste",
172
+ "Library": "Lucide",
173
+ "Import Code": "import { Copy } from 'lucide-react'",
174
+ "Usage": "<Copy />",
175
+ "Best For": "Copy to clipboard",
176
+ "Style": "Outline"
177
+ },
178
+ {
179
+ "No": "17",
180
+ "Category": "Action",
181
+ "Icon Name": "share",
182
+ "Keywords": "social distribute send",
183
+ "Library": "Lucide",
184
+ "Import Code": "import { Share } from 'lucide-react'",
185
+ "Usage": "<Share />",
186
+ "Best For": "Share button social",
187
+ "Style": "Outline"
188
+ },
189
+ {
190
+ "No": "18",
191
+ "Category": "Action",
192
+ "Icon Name": "search",
193
+ "Keywords": "find lookup filter query",
194
+ "Library": "Lucide",
195
+ "Import Code": "import { Search } from 'lucide-react'",
196
+ "Usage": "<Search />",
197
+ "Best For": "Search input bar",
198
+ "Style": "Outline"
199
+ },
200
+ {
201
+ "No": "19",
202
+ "Category": "Action",
203
+ "Icon Name": "filter",
204
+ "Keywords": "sort refine narrow options",
205
+ "Library": "Lucide",
206
+ "Import Code": "import { Filter } from 'lucide-react'",
207
+ "Usage": "<Filter />",
208
+ "Best For": "Filter dropdown sort",
209
+ "Style": "Outline"
210
+ },
211
+ {
212
+ "No": "20",
213
+ "Category": "Action",
214
+ "Icon Name": "settings",
215
+ "Keywords": "gear cog preferences config",
216
+ "Library": "Lucide",
217
+ "Import Code": "import { Settings } from 'lucide-react'",
218
+ "Usage": "<Settings />",
219
+ "Best For": "Settings page configuration",
220
+ "Style": "Outline"
221
+ },
222
+ {
223
+ "No": "21",
224
+ "Category": "Status",
225
+ "Icon Name": "check",
226
+ "Keywords": "success done complete verified",
227
+ "Library": "Lucide",
228
+ "Import Code": "import { Check } from 'lucide-react'",
229
+ "Usage": "<Check />",
230
+ "Best For": "Success state checkmark",
231
+ "Style": "Outline"
232
+ },
233
+ {
234
+ "No": "22",
235
+ "Category": "Status",
236
+ "Icon Name": "check-circle",
237
+ "Keywords": "success verified approved complete",
238
+ "Library": "Lucide",
239
+ "Import Code": "import { CheckCircle } from 'lucide-react'",
240
+ "Usage": "<CheckCircle />",
241
+ "Best For": "Success badge verified",
242
+ "Style": "Outline"
243
+ },
244
+ {
245
+ "No": "23",
246
+ "Category": "Status",
247
+ "Icon Name": "x-circle",
248
+ "Keywords": "error failed cancel rejected",
249
+ "Library": "Lucide",
250
+ "Import Code": "import { XCircle } from 'lucide-react'",
251
+ "Usage": "<XCircle />",
252
+ "Best For": "Error state failed",
253
+ "Style": "Outline"
254
+ },
255
+ {
256
+ "No": "24",
257
+ "Category": "Status",
258
+ "Icon Name": "alert-triangle",
259
+ "Keywords": "warning caution attention danger",
260
+ "Library": "Lucide",
261
+ "Import Code": "import { AlertTriangle } from 'lucide-react'",
262
+ "Usage": "<AlertTriangle />",
263
+ "Best For": "Warning message caution",
264
+ "Style": "Outline"
265
+ },
266
+ {
267
+ "No": "25",
268
+ "Category": "Status",
269
+ "Icon Name": "alert-circle",
270
+ "Keywords": "info notice information help",
271
+ "Library": "Lucide",
272
+ "Import Code": "import { AlertCircle } from 'lucide-react'",
273
+ "Usage": "<AlertCircle />",
274
+ "Best For": "Info notice alert",
275
+ "Style": "Outline"
276
+ },
277
+ {
278
+ "No": "26",
279
+ "Category": "Status",
280
+ "Icon Name": "info",
281
+ "Keywords": "information help tooltip details",
282
+ "Library": "Lucide",
283
+ "Import Code": "import { Info } from 'lucide-react'",
284
+ "Usage": "<Info />",
285
+ "Best For": "Information tooltip help",
286
+ "Style": "Outline"
287
+ },
288
+ {
289
+ "No": "27",
290
+ "Category": "Status",
291
+ "Icon Name": "loader",
292
+ "Keywords": "loading spinner processing wait",
293
+ "Library": "Lucide",
294
+ "Import Code": "import { Loader } from 'lucide-react'",
295
+ "Usage": "<Loader className=\"animate-spin\" />",
296
+ "Best For": "Loading state spinner",
297
+ "Style": "Outline"
298
+ },
299
+ {
300
+ "No": "28",
301
+ "Category": "Status",
302
+ "Icon Name": "clock",
303
+ "Keywords": "time schedule pending wait",
304
+ "Library": "Lucide",
305
+ "Import Code": "import { Clock } from 'lucide-react'",
306
+ "Usage": "<Clock />",
307
+ "Best For": "Pending time schedule",
308
+ "Style": "Outline"
309
+ },
310
+ {
311
+ "No": "29",
312
+ "Category": "Communication",
313
+ "Icon Name": "mail",
314
+ "Keywords": "email message inbox letter",
315
+ "Library": "Lucide",
316
+ "Import Code": "import { Mail } from 'lucide-react'",
317
+ "Usage": "<Mail />",
318
+ "Best For": "Email contact inbox",
319
+ "Style": "Outline"
320
+ },
321
+ {
322
+ "No": "30",
323
+ "Category": "Communication",
324
+ "Icon Name": "message-circle",
325
+ "Keywords": "chat comment bubble conversation",
326
+ "Library": "Lucide",
327
+ "Import Code": "import { MessageCircle } from 'lucide-react'",
328
+ "Usage": "<MessageCircle />",
329
+ "Best For": "Chat comment message",
330
+ "Style": "Outline"
331
+ },
332
+ {
333
+ "No": "31",
334
+ "Category": "Communication",
335
+ "Icon Name": "phone",
336
+ "Keywords": "call mobile telephone contact",
337
+ "Library": "Lucide",
338
+ "Import Code": "import { Phone } from 'lucide-react'",
339
+ "Usage": "<Phone />",
340
+ "Best For": "Phone contact call",
341
+ "Style": "Outline"
342
+ },
343
+ {
344
+ "No": "32",
345
+ "Category": "Communication",
346
+ "Icon Name": "send",
347
+ "Keywords": "submit dispatch message airplane",
348
+ "Library": "Lucide",
349
+ "Import Code": "import { Send } from 'lucide-react'",
350
+ "Usage": "<Send />",
351
+ "Best For": "Send message submit",
352
+ "Style": "Outline"
353
+ },
354
+ {
355
+ "No": "33",
356
+ "Category": "Communication",
357
+ "Icon Name": "bell",
358
+ "Keywords": "notification alert ring reminder",
359
+ "Library": "Lucide",
360
+ "Import Code": "import { Bell } from 'lucide-react'",
361
+ "Usage": "<Bell />",
362
+ "Best For": "Notification bell alert",
363
+ "Style": "Outline"
364
+ },
365
+ {
366
+ "No": "34",
367
+ "Category": "User",
368
+ "Icon Name": "user",
369
+ "Keywords": "profile account person avatar",
370
+ "Library": "Lucide",
371
+ "Import Code": "import { User } from 'lucide-react'",
372
+ "Usage": "<User />",
373
+ "Best For": "User profile account",
374
+ "Style": "Outline"
375
+ },
376
+ {
377
+ "No": "35",
378
+ "Category": "User",
379
+ "Icon Name": "users",
380
+ "Keywords": "team group people members",
381
+ "Library": "Lucide",
382
+ "Import Code": "import { Users } from 'lucide-react'",
383
+ "Usage": "<Users />",
384
+ "Best For": "Team group members",
385
+ "Style": "Outline"
386
+ },
387
+ {
388
+ "No": "36",
389
+ "Category": "User",
390
+ "Icon Name": "user-plus",
391
+ "Keywords": "add invite new member",
392
+ "Library": "Lucide",
393
+ "Import Code": "import { UserPlus } from 'lucide-react'",
394
+ "Usage": "<UserPlus />",
395
+ "Best For": "Add user invite",
396
+ "Style": "Outline"
397
+ },
398
+ {
399
+ "No": "37",
400
+ "Category": "User",
401
+ "Icon Name": "log-in",
402
+ "Keywords": "signin authenticate enter",
403
+ "Library": "Lucide",
404
+ "Import Code": "import { LogIn } from 'lucide-react'",
405
+ "Usage": "<LogIn />",
406
+ "Best For": "Login signin",
407
+ "Style": "Outline"
408
+ },
409
+ {
410
+ "No": "38",
411
+ "Category": "User",
412
+ "Icon Name": "log-out",
413
+ "Keywords": "signout exit leave logout",
414
+ "Library": "Lucide",
415
+ "Import Code": "import { LogOut } from 'lucide-react'",
416
+ "Usage": "<LogOut />",
417
+ "Best For": "Logout signout",
418
+ "Style": "Outline"
419
+ },
420
+ {
421
+ "No": "39",
422
+ "Category": "Media",
423
+ "Icon Name": "image",
424
+ "Keywords": "photo picture gallery thumbnail",
425
+ "Library": "Lucide",
426
+ "Import Code": "import { Image } from 'lucide-react'",
427
+ "Usage": "<Image />",
428
+ "Best For": "Image photo gallery",
429
+ "Style": "Outline"
430
+ },
431
+ {
432
+ "No": "40",
433
+ "Category": "Media",
434
+ "Icon Name": "video",
435
+ "Keywords": "movie film play record",
436
+ "Library": "Lucide",
437
+ "Import Code": "import { Video } from 'lucide-react'",
438
+ "Usage": "<Video />",
439
+ "Best For": "Video player media",
440
+ "Style": "Outline"
441
+ },
442
+ {
443
+ "No": "41",
444
+ "Category": "Media",
445
+ "Icon Name": "play",
446
+ "Keywords": "start video audio media",
447
+ "Library": "Lucide",
448
+ "Import Code": "import { Play } from 'lucide-react'",
449
+ "Usage": "<Play />",
450
+ "Best For": "Play button video audio",
451
+ "Style": "Outline"
452
+ },
453
+ {
454
+ "No": "42",
455
+ "Category": "Media",
456
+ "Icon Name": "pause",
457
+ "Keywords": "stop halt video audio",
458
+ "Library": "Lucide",
459
+ "Import Code": "import { Pause } from 'lucide-react'",
460
+ "Usage": "<Pause />",
461
+ "Best For": "Pause button media",
462
+ "Style": "Outline"
463
+ },
464
+ {
465
+ "No": "43",
466
+ "Category": "Media",
467
+ "Icon Name": "volume-2",
468
+ "Keywords": "sound audio speaker music",
469
+ "Library": "Lucide",
470
+ "Import Code": "import { Volume2 } from 'lucide-react'",
471
+ "Usage": "<Volume2 />",
472
+ "Best For": "Volume audio sound",
473
+ "Style": "Outline"
474
+ },
475
+ {
476
+ "No": "44",
477
+ "Category": "Media",
478
+ "Icon Name": "mic",
479
+ "Keywords": "microphone record voice audio",
480
+ "Library": "Lucide",
481
+ "Import Code": "import { Mic } from 'lucide-react'",
482
+ "Usage": "<Mic />",
483
+ "Best For": "Microphone voice record",
484
+ "Style": "Outline"
485
+ },
486
+ {
487
+ "No": "45",
488
+ "Category": "Media",
489
+ "Icon Name": "camera",
490
+ "Keywords": "photo capture snapshot picture",
491
+ "Library": "Lucide",
492
+ "Import Code": "import { Camera } from 'lucide-react'",
493
+ "Usage": "<Camera />",
494
+ "Best For": "Camera photo capture",
495
+ "Style": "Outline"
496
+ },
497
+ {
498
+ "No": "46",
499
+ "Category": "Commerce",
500
+ "Icon Name": "shopping-cart",
501
+ "Keywords": "cart checkout basket buy",
502
+ "Library": "Lucide",
503
+ "Import Code": "import { ShoppingCart } from 'lucide-react'",
504
+ "Usage": "<ShoppingCart />",
505
+ "Best For": "Shopping cart e-commerce",
506
+ "Style": "Outline"
507
+ },
508
+ {
509
+ "No": "47",
510
+ "Category": "Commerce",
511
+ "Icon Name": "shopping-bag",
512
+ "Keywords": "purchase buy store bag",
513
+ "Library": "Lucide",
514
+ "Import Code": "import { ShoppingBag } from 'lucide-react'",
515
+ "Usage": "<ShoppingBag />",
516
+ "Best For": "Shopping bag purchase",
517
+ "Style": "Outline"
518
+ },
519
+ {
520
+ "No": "48",
521
+ "Category": "Commerce",
522
+ "Icon Name": "credit-card",
523
+ "Keywords": "payment card checkout stripe",
524
+ "Library": "Lucide",
525
+ "Import Code": "import { CreditCard } from 'lucide-react'",
526
+ "Usage": "<CreditCard />",
527
+ "Best For": "Payment credit card",
528
+ "Style": "Outline"
529
+ },
530
+ {
531
+ "No": "49",
532
+ "Category": "Commerce",
533
+ "Icon Name": "dollar-sign",
534
+ "Keywords": "money price currency cost",
535
+ "Library": "Lucide",
536
+ "Import Code": "import { DollarSign } from 'lucide-react'",
537
+ "Usage": "<DollarSign />",
538
+ "Best For": "Price money currency",
539
+ "Style": "Outline"
540
+ },
541
+ {
542
+ "No": "50",
543
+ "Category": "Commerce",
544
+ "Icon Name": "tag",
545
+ "Keywords": "label price discount sale",
546
+ "Library": "Lucide",
547
+ "Import Code": "import { Tag } from 'lucide-react'",
548
+ "Usage": "<Tag />",
549
+ "Best For": "Price tag label",
550
+ "Style": "Outline"
551
+ },
552
+ {
553
+ "No": "51",
554
+ "Category": "Commerce",
555
+ "Icon Name": "gift",
556
+ "Keywords": "present reward bonus offer",
557
+ "Library": "Lucide",
558
+ "Import Code": "import { Gift } from 'lucide-react'",
559
+ "Usage": "<Gift />",
560
+ "Best For": "Gift reward offer",
561
+ "Style": "Outline"
562
+ },
563
+ {
564
+ "No": "52",
565
+ "Category": "Commerce",
566
+ "Icon Name": "percent",
567
+ "Keywords": "discount sale offer promo",
568
+ "Library": "Lucide",
569
+ "Import Code": "import { Percent } from 'lucide-react'",
570
+ "Usage": "<Percent />",
571
+ "Best For": "Discount percentage sale",
572
+ "Style": "Outline"
573
+ },
574
+ {
575
+ "No": "53",
576
+ "Category": "Data",
577
+ "Icon Name": "bar-chart",
578
+ "Keywords": "analytics statistics graph metrics",
579
+ "Library": "Lucide",
580
+ "Import Code": "import { BarChart } from 'lucide-react'",
581
+ "Usage": "<BarChart />",
582
+ "Best For": "Bar chart analytics",
583
+ "Style": "Outline"
584
+ },
585
+ {
586
+ "No": "54",
587
+ "Category": "Data",
588
+ "Icon Name": "pie-chart",
589
+ "Keywords": "statistics distribution breakdown",
590
+ "Library": "Lucide",
591
+ "Import Code": "import { PieChart } from 'lucide-react'",
592
+ "Usage": "<PieChart />",
593
+ "Best For": "Pie chart distribution",
594
+ "Style": "Outline"
595
+ },
596
+ {
597
+ "No": "55",
598
+ "Category": "Data",
599
+ "Icon Name": "trending-up",
600
+ "Keywords": "growth increase positive trend",
601
+ "Library": "Lucide",
602
+ "Import Code": "import { TrendingUp } from 'lucide-react'",
603
+ "Usage": "<TrendingUp />",
604
+ "Best For": "Growth trend positive",
605
+ "Style": "Outline"
606
+ },
607
+ {
608
+ "No": "56",
609
+ "Category": "Data",
610
+ "Icon Name": "trending-down",
611
+ "Keywords": "decline decrease negative trend",
612
+ "Library": "Lucide",
613
+ "Import Code": "import { TrendingDown } from 'lucide-react'",
614
+ "Usage": "<TrendingDown />",
615
+ "Best For": "Decline trend negative",
616
+ "Style": "Outline"
617
+ },
618
+ {
619
+ "No": "57",
620
+ "Category": "Data",
621
+ "Icon Name": "activity",
622
+ "Keywords": "pulse heartbeat monitor live",
623
+ "Library": "Lucide",
624
+ "Import Code": "import { Activity } from 'lucide-react'",
625
+ "Usage": "<Activity />",
626
+ "Best For": "Activity monitor pulse",
627
+ "Style": "Outline"
628
+ },
629
+ {
630
+ "No": "58",
631
+ "Category": "Data",
632
+ "Icon Name": "database",
633
+ "Keywords": "storage server data backend",
634
+ "Library": "Lucide",
635
+ "Import Code": "import { Database } from 'lucide-react'",
636
+ "Usage": "<Database />",
637
+ "Best For": "Database storage",
638
+ "Style": "Outline"
639
+ },
640
+ {
641
+ "No": "59",
642
+ "Category": "Files",
643
+ "Icon Name": "file",
644
+ "Keywords": "document page paper doc",
645
+ "Library": "Lucide",
646
+ "Import Code": "import { File } from 'lucide-react'",
647
+ "Usage": "<File />",
648
+ "Best For": "File document",
649
+ "Style": "Outline"
650
+ },
651
+ {
652
+ "No": "60",
653
+ "Category": "Files",
654
+ "Icon Name": "file-text",
655
+ "Keywords": "document text page article",
656
+ "Library": "Lucide",
657
+ "Import Code": "import { FileText } from 'lucide-react'",
658
+ "Usage": "<FileText />",
659
+ "Best For": "Text document article",
660
+ "Style": "Outline"
661
+ },
662
+ {
663
+ "No": "61",
664
+ "Category": "Files",
665
+ "Icon Name": "folder",
666
+ "Keywords": "directory organize group files",
667
+ "Library": "Lucide",
668
+ "Import Code": "import { Folder } from 'lucide-react'",
669
+ "Usage": "<Folder />",
670
+ "Best For": "Folder directory",
671
+ "Style": "Outline"
672
+ },
673
+ {
674
+ "No": "62",
675
+ "Category": "Files",
676
+ "Icon Name": "folder-open",
677
+ "Keywords": "expanded browse files view",
678
+ "Library": "Lucide",
679
+ "Import Code": "import { FolderOpen } from 'lucide-react'",
680
+ "Usage": "<FolderOpen />",
681
+ "Best For": "Open folder browse",
682
+ "Style": "Outline"
683
+ },
684
+ {
685
+ "No": "63",
686
+ "Category": "Files",
687
+ "Icon Name": "paperclip",
688
+ "Keywords": "attachment attach file link",
689
+ "Library": "Lucide",
690
+ "Import Code": "import { Paperclip } from 'lucide-react'",
691
+ "Usage": "<Paperclip />",
692
+ "Best For": "Attachment paperclip",
693
+ "Style": "Outline"
694
+ },
695
+ {
696
+ "No": "64",
697
+ "Category": "Files",
698
+ "Icon Name": "link",
699
+ "Keywords": "url hyperlink chain connect",
700
+ "Library": "Lucide",
701
+ "Import Code": "import { Link } from 'lucide-react'",
702
+ "Usage": "<Link />",
703
+ "Best For": "Link URL hyperlink",
704
+ "Style": "Outline"
705
+ },
706
+ {
707
+ "No": "65",
708
+ "Category": "Files",
709
+ "Icon Name": "clipboard",
710
+ "Keywords": "paste copy buffer notes",
711
+ "Library": "Lucide",
712
+ "Import Code": "import { Clipboard } from 'lucide-react'",
713
+ "Usage": "<Clipboard />",
714
+ "Best For": "Clipboard paste",
715
+ "Style": "Outline"
716
+ },
717
+ {
718
+ "No": "66",
719
+ "Category": "Layout",
720
+ "Icon Name": "grid",
721
+ "Keywords": "tiles gallery layout dashboard",
722
+ "Library": "Lucide",
723
+ "Import Code": "import { Grid } from 'lucide-react'",
724
+ "Usage": "<Grid />",
725
+ "Best For": "Grid layout gallery",
726
+ "Style": "Outline"
727
+ },
728
+ {
729
+ "No": "67",
730
+ "Category": "Layout",
731
+ "Icon Name": "list",
732
+ "Keywords": "rows table lines items",
733
+ "Library": "Lucide",
734
+ "Import Code": "import { List } from 'lucide-react'",
735
+ "Usage": "<List />",
736
+ "Best For": "List view rows",
737
+ "Style": "Outline"
738
+ },
739
+ {
740
+ "No": "68",
741
+ "Category": "Layout",
742
+ "Icon Name": "columns",
743
+ "Keywords": "layout split dual sidebar",
744
+ "Library": "Lucide",
745
+ "Import Code": "import { Columns } from 'lucide-react'",
746
+ "Usage": "<Columns />",
747
+ "Best For": "Column layout split",
748
+ "Style": "Outline"
749
+ },
750
+ {
751
+ "No": "69",
752
+ "Category": "Layout",
753
+ "Icon Name": "maximize",
754
+ "Keywords": "fullscreen expand enlarge zoom",
755
+ "Library": "Lucide",
756
+ "Import Code": "import { Maximize } from 'lucide-react'",
757
+ "Usage": "<Maximize />",
758
+ "Best For": "Fullscreen maximize",
759
+ "Style": "Outline"
760
+ },
761
+ {
762
+ "No": "70",
763
+ "Category": "Layout",
764
+ "Icon Name": "minimize",
765
+ "Keywords": "reduce shrink collapse exit",
766
+ "Library": "Lucide",
767
+ "Import Code": "import { Minimize } from 'lucide-react'",
768
+ "Usage": "<Minimize />",
769
+ "Best For": "Minimize reduce",
770
+ "Style": "Outline"
771
+ },
772
+ {
773
+ "No": "71",
774
+ "Category": "Layout",
775
+ "Icon Name": "sidebar",
776
+ "Keywords": "panel drawer navigation menu",
777
+ "Library": "Lucide",
778
+ "Import Code": "import { Sidebar } from 'lucide-react'",
779
+ "Usage": "<Sidebar />",
780
+ "Best For": "Sidebar panel",
781
+ "Style": "Outline"
782
+ },
783
+ {
784
+ "No": "72",
785
+ "Category": "Social",
786
+ "Icon Name": "heart",
787
+ "Keywords": "like love favorite wishlist",
788
+ "Library": "Lucide",
789
+ "Import Code": "import { Heart } from 'lucide-react'",
790
+ "Usage": "<Heart />",
791
+ "Best For": "Like favorite love",
792
+ "Style": "Outline"
793
+ },
794
+ {
795
+ "No": "73",
796
+ "Category": "Social",
797
+ "Icon Name": "star",
798
+ "Keywords": "rating review favorite bookmark",
799
+ "Library": "Lucide",
800
+ "Import Code": "import { Star } from 'lucide-react'",
801
+ "Usage": "<Star />",
802
+ "Best For": "Star rating favorite",
803
+ "Style": "Outline"
804
+ },
805
+ {
806
+ "No": "74",
807
+ "Category": "Social",
808
+ "Icon Name": "thumbs-up",
809
+ "Keywords": "like approve agree positive",
810
+ "Library": "Lucide",
811
+ "Import Code": "import { ThumbsUp } from 'lucide-react'",
812
+ "Usage": "<ThumbsUp />",
813
+ "Best For": "Like approve thumb",
814
+ "Style": "Outline"
815
+ },
816
+ {
817
+ "No": "75",
818
+ "Category": "Social",
819
+ "Icon Name": "thumbs-down",
820
+ "Keywords": "dislike disapprove disagree negative",
821
+ "Library": "Lucide",
822
+ "Import Code": "import { ThumbsDown } from 'lucide-react'",
823
+ "Usage": "<ThumbsDown />",
824
+ "Best For": "Dislike disapprove",
825
+ "Style": "Outline"
826
+ },
827
+ {
828
+ "No": "76",
829
+ "Category": "Social",
830
+ "Icon Name": "bookmark",
831
+ "Keywords": "save later favorite mark",
832
+ "Library": "Lucide",
833
+ "Import Code": "import { Bookmark } from 'lucide-react'",
834
+ "Usage": "<Bookmark />",
835
+ "Best For": "Bookmark save",
836
+ "Style": "Outline"
837
+ },
838
+ {
839
+ "No": "77",
840
+ "Category": "Social",
841
+ "Icon Name": "flag",
842
+ "Keywords": "report mark important highlight",
843
+ "Library": "Lucide",
844
+ "Import Code": "import { Flag } from 'lucide-react'",
845
+ "Usage": "<Flag />",
846
+ "Best For": "Flag report",
847
+ "Style": "Outline"
848
+ },
849
+ {
850
+ "No": "78",
851
+ "Category": "Device",
852
+ "Icon Name": "smartphone",
853
+ "Keywords": "mobile phone device touch",
854
+ "Library": "Lucide",
855
+ "Import Code": "import { Smartphone } from 'lucide-react'",
856
+ "Usage": "<Smartphone />",
857
+ "Best For": "Mobile smartphone",
858
+ "Style": "Outline"
859
+ },
860
+ {
861
+ "No": "79",
862
+ "Category": "Device",
863
+ "Icon Name": "tablet",
864
+ "Keywords": "ipad device touch screen",
865
+ "Library": "Lucide",
866
+ "Import Code": "import { Tablet } from 'lucide-react'",
867
+ "Usage": "<Tablet />",
868
+ "Best For": "Tablet device",
869
+ "Style": "Outline"
870
+ },
871
+ {
872
+ "No": "80",
873
+ "Category": "Device",
874
+ "Icon Name": "monitor",
875
+ "Keywords": "desktop screen computer display",
876
+ "Library": "Lucide",
877
+ "Import Code": "import { Monitor } from 'lucide-react'",
878
+ "Usage": "<Monitor />",
879
+ "Best For": "Desktop monitor",
880
+ "Style": "Outline"
881
+ },
882
+ {
883
+ "No": "81",
884
+ "Category": "Device",
885
+ "Icon Name": "laptop",
886
+ "Keywords": "notebook computer portable device",
887
+ "Library": "Lucide",
888
+ "Import Code": "import { Laptop } from 'lucide-react'",
889
+ "Usage": "<Laptop />",
890
+ "Best For": "Laptop computer",
891
+ "Style": "Outline"
892
+ },
893
+ {
894
+ "No": "82",
895
+ "Category": "Device",
896
+ "Icon Name": "printer",
897
+ "Keywords": "print document output paper",
898
+ "Library": "Lucide",
899
+ "Import Code": "import { Printer } from 'lucide-react'",
900
+ "Usage": "<Printer />",
901
+ "Best For": "Printer print",
902
+ "Style": "Outline"
903
+ },
904
+ {
905
+ "No": "83",
906
+ "Category": "Security",
907
+ "Icon Name": "lock",
908
+ "Keywords": "secure password protected private",
909
+ "Library": "Lucide",
910
+ "Import Code": "import { Lock } from 'lucide-react'",
911
+ "Usage": "<Lock />",
912
+ "Best For": "Lock secure",
913
+ "Style": "Outline"
914
+ },
915
+ {
916
+ "No": "84",
917
+ "Category": "Security",
918
+ "Icon Name": "unlock",
919
+ "Keywords": "open access unsecure public",
920
+ "Library": "Lucide",
921
+ "Import Code": "import { Unlock } from 'lucide-react'",
922
+ "Usage": "<Unlock />",
923
+ "Best For": "Unlock open",
924
+ "Style": "Outline"
925
+ },
926
+ {
927
+ "No": "85",
928
+ "Category": "Security",
929
+ "Icon Name": "shield",
930
+ "Keywords": "protection security safe guard",
931
+ "Library": "Lucide",
932
+ "Import Code": "import { Shield } from 'lucide-react'",
933
+ "Usage": "<Shield />",
934
+ "Best For": "Shield protection",
935
+ "Style": "Outline"
936
+ },
937
+ {
938
+ "No": "86",
939
+ "Category": "Security",
940
+ "Icon Name": "key",
941
+ "Keywords": "password access unlock login",
942
+ "Library": "Lucide",
943
+ "Import Code": "import { Key } from 'lucide-react'",
944
+ "Usage": "<Key />",
945
+ "Best For": "Key password",
946
+ "Style": "Outline"
947
+ },
948
+ {
949
+ "No": "87",
950
+ "Category": "Security",
951
+ "Icon Name": "eye",
952
+ "Keywords": "view show visible password",
953
+ "Library": "Lucide",
954
+ "Import Code": "import { Eye } from 'lucide-react'",
955
+ "Usage": "<Eye />",
956
+ "Best For": "Show password view",
957
+ "Style": "Outline"
958
+ },
959
+ {
960
+ "No": "88",
961
+ "Category": "Security",
962
+ "Icon Name": "eye-off",
963
+ "Keywords": "hide invisible password hidden",
964
+ "Library": "Lucide",
965
+ "Import Code": "import { EyeOff } from 'lucide-react'",
966
+ "Usage": "<EyeOff />",
967
+ "Best For": "Hide password",
968
+ "Style": "Outline"
969
+ },
970
+ {
971
+ "No": "89",
972
+ "Category": "Location",
973
+ "Icon Name": "map-pin",
974
+ "Keywords": "location marker place address",
975
+ "Library": "Lucide",
976
+ "Import Code": "import { MapPin } from 'lucide-react'",
977
+ "Usage": "<MapPin />",
978
+ "Best For": "Location pin marker",
979
+ "Style": "Outline"
980
+ },
981
+ {
982
+ "No": "90",
983
+ "Category": "Location",
984
+ "Icon Name": "map",
985
+ "Keywords": "directions navigate geography location",
986
+ "Library": "Lucide",
987
+ "Import Code": "import { Map } from 'lucide-react'",
988
+ "Usage": "<Map />",
989
+ "Best For": "Map directions",
990
+ "Style": "Outline"
991
+ },
992
+ {
993
+ "No": "91",
994
+ "Category": "Location",
995
+ "Icon Name": "navigation",
996
+ "Keywords": "compass direction pointer arrow",
997
+ "Library": "Lucide",
998
+ "Import Code": "import { Navigation } from 'lucide-react'",
999
+ "Usage": "<Navigation />",
1000
+ "Best For": "Navigation compass",
1001
+ "Style": "Outline"
1002
+ },
1003
+ {
1004
+ "No": "92",
1005
+ "Category": "Location",
1006
+ "Icon Name": "globe",
1007
+ "Keywords": "world international global web",
1008
+ "Library": "Lucide",
1009
+ "Import Code": "import { Globe } from 'lucide-react'",
1010
+ "Usage": "<Globe />",
1011
+ "Best For": "Globe world",
1012
+ "Style": "Outline"
1013
+ },
1014
+ {
1015
+ "No": "93",
1016
+ "Category": "Time",
1017
+ "Icon Name": "calendar",
1018
+ "Keywords": "date schedule event appointment",
1019
+ "Library": "Lucide",
1020
+ "Import Code": "import { Calendar } from 'lucide-react'",
1021
+ "Usage": "<Calendar />",
1022
+ "Best For": "Calendar date",
1023
+ "Style": "Outline"
1024
+ },
1025
+ {
1026
+ "No": "94",
1027
+ "Category": "Time",
1028
+ "Icon Name": "refresh-cw",
1029
+ "Keywords": "reload sync update refresh",
1030
+ "Library": "Lucide",
1031
+ "Import Code": "import { RefreshCw } from 'lucide-react'",
1032
+ "Usage": "<RefreshCw />",
1033
+ "Best For": "Refresh reload",
1034
+ "Style": "Outline"
1035
+ },
1036
+ {
1037
+ "No": "95",
1038
+ "Category": "Time",
1039
+ "Icon Name": "rotate-ccw",
1040
+ "Keywords": "undo back revert history",
1041
+ "Library": "Lucide",
1042
+ "Import Code": "import { RotateCcw } from 'lucide-react'",
1043
+ "Usage": "<RotateCcw />",
1044
+ "Best For": "Undo revert",
1045
+ "Style": "Outline"
1046
+ },
1047
+ {
1048
+ "No": "96",
1049
+ "Category": "Time",
1050
+ "Icon Name": "rotate-cw",
1051
+ "Keywords": "redo forward repeat history",
1052
+ "Library": "Lucide",
1053
+ "Import Code": "import { RotateCw } from 'lucide-react'",
1054
+ "Usage": "<RotateCw />",
1055
+ "Best For": "Redo forward",
1056
+ "Style": "Outline"
1057
+ },
1058
+ {
1059
+ "No": "97",
1060
+ "Category": "Development",
1061
+ "Icon Name": "code",
1062
+ "Keywords": "develop programming syntax html",
1063
+ "Library": "Lucide",
1064
+ "Import Code": "import { Code } from 'lucide-react'",
1065
+ "Usage": "<Code />",
1066
+ "Best For": "Code development",
1067
+ "Style": "Outline"
1068
+ },
1069
+ {
1070
+ "No": "98",
1071
+ "Category": "Development",
1072
+ "Icon Name": "terminal",
1073
+ "Keywords": "console cli command shell",
1074
+ "Library": "Lucide",
1075
+ "Import Code": "import { Terminal } from 'lucide-react'",
1076
+ "Usage": "<Terminal />",
1077
+ "Best For": "Terminal console",
1078
+ "Style": "Outline"
1079
+ },
1080
+ {
1081
+ "No": "99",
1082
+ "Category": "Development",
1083
+ "Icon Name": "git-branch",
1084
+ "Keywords": "version control branch merge",
1085
+ "Library": "Lucide",
1086
+ "Import Code": "import { GitBranch } from 'lucide-react'",
1087
+ "Usage": "<GitBranch />",
1088
+ "Best For": "Git branch",
1089
+ "Style": "Outline"
1090
+ },
1091
+ {
1092
+ "No": "100",
1093
+ "Category": "Development",
1094
+ "Icon Name": "github",
1095
+ "Keywords": "repository code open source",
1096
+ "Library": "Lucide",
1097
+ "Import Code": "import { Github } from 'lucide-react'",
1098
+ "Usage": "<Github />",
1099
+ "Best For": "GitHub repository",
1100
+ "Style": "Outline"
1101
+ }
1102
+ ]