@chaos_team/chaos-ui 1.0.5
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/CHANGELOG.md +286 -0
- package/LICENSE +21 -0
- package/README.md +295 -0
- package/THIRD_PARTY_NOTICES.md +22 -0
- package/dist/business.cjs +26 -0
- package/dist/business.d.cts +10311 -0
- package/dist/business.d.ts +10311 -0
- package/dist/business.js +26 -0
- package/dist/format-BUpOzeCo.d.cts +8 -0
- package/dist/format-BUpOzeCo.d.ts +8 -0
- package/dist/hooks.cjs +8 -0
- package/dist/hooks.d.cts +1148 -0
- package/dist/hooks.d.ts +1148 -0
- package/dist/hooks.js +8 -0
- package/dist/index.cjs +6 -0
- package/dist/index.d.cts +5616 -0
- package/dist/index.d.ts +5616 -0
- package/dist/index.js +6 -0
- package/dist/lib.cjs +42 -0
- package/dist/lib.d.cts +804 -0
- package/dist/lib.d.ts +804 -0
- package/dist/lib.js +42 -0
- package/dist/message-KJli9tvf.d.cts +71 -0
- package/dist/message-KJli9tvf.d.ts +71 -0
- package/dist/message-provider-BI-P3CNq.d.cts +11 -0
- package/dist/message-provider-BI-P3CNq.d.ts +11 -0
- package/dist/next.cjs +6 -0
- package/dist/next.d.cts +103 -0
- package/dist/next.d.ts +103 -0
- package/dist/next.js +6 -0
- package/dist/theme-toggle-JL_jZE-w.d.cts +81 -0
- package/dist/theme-toggle-JL_jZE-w.d.ts +81 -0
- package/dist/time-picker-H1AaecnE.d.cts +452 -0
- package/dist/time-picker-H1AaecnE.d.ts +452 -0
- package/dist/ui/icons.cjs +6 -0
- package/dist/ui/icons.d.cts +3 -0
- package/dist/ui/icons.d.ts +3 -0
- package/dist/ui/icons.js +6 -0
- package/dist/ui-icons.cjs +6 -0
- package/dist/ui-icons.d.cts +205 -0
- package/dist/ui-icons.d.ts +205 -0
- package/dist/ui-icons.js +6 -0
- package/dist/ui.cjs +6 -0
- package/dist/ui.d.cts +39 -0
- package/dist/ui.d.ts +39 -0
- package/dist/ui.js +6 -0
- package/package.json +265 -0
- package/styles.css +1300 -0
- package/styles.css.d.ts +11 -0
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as Lucide from 'lucide-react';
|
|
3
|
+
export { LucideIcon } from 'lucide-react';
|
|
4
|
+
|
|
5
|
+
declare const AlertCircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
6
|
+
declare const AlertTriangleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
declare const ArchiveIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
declare const ArrowDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
declare const ArrowDownRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
declare const ArrowLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
declare const ArrowRight: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12
|
+
declare const ArrowRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13
|
+
declare const ArrowUpDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14
|
+
declare const ArrowUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
15
|
+
declare const ArrowUpRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
16
|
+
declare const BadgeDollarSignIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17
|
+
declare const BarChart3Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18
|
+
declare const BarcodeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19
|
+
declare const BellIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
+
declare const Bold: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
declare const BookOpen: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
declare const BookmarkCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
23
|
+
declare const BookmarkIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
24
|
+
declare const Building2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
25
|
+
declare const BuildingIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
26
|
+
declare const Calendar: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
27
|
+
declare const CalendarDaysIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
28
|
+
declare const CalendarIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
29
|
+
declare const CheckCircle2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
30
|
+
declare const CheckCircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
31
|
+
declare const CheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
32
|
+
declare const ChevronDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
33
|
+
declare const ChevronLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
34
|
+
declare const ChevronRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
35
|
+
declare const ChevronUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
36
|
+
declare const ChevronsUpDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
37
|
+
declare const CircleCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
declare const ClipboardListIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
39
|
+
declare const ClockIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
declare const Columns3Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
41
|
+
declare const CookieIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
42
|
+
declare const CopyIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
43
|
+
declare const CreditCardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
44
|
+
declare const DollarSignIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
45
|
+
declare const DownloadIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
declare const EditIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
47
|
+
declare const Edit3Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
48
|
+
declare const EyeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
49
|
+
declare const EyeOffIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
50
|
+
declare const FactoryIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
51
|
+
declare const FileIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
declare const FileSpreadsheetIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
53
|
+
declare const FileTextIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
54
|
+
declare const FileXIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
declare const FilterIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
declare const FolderIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
declare const GalleryHorizontalEnd: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
declare const GridIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
declare const GripVerticalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
60
|
+
declare const Home: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
declare const HomeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
62
|
+
declare const ImageIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
declare const Inbox: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
declare const InboxIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
declare const InfoIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
66
|
+
declare const Italic: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
declare const KeyboardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
68
|
+
declare const LanguagesIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
declare const LayoutDashboardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
declare const LifeBuoyIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
72
|
+
declare const ListIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
declare const Loader2: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
declare const Loader2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
declare const LockIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
declare const Mail: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
declare const MailIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
78
|
+
declare const MaximizeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
declare const MegaphoneIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
80
|
+
declare const MenuIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
declare const MessageSquareIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
declare const MinimizeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
declare const MinusIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
84
|
+
declare const MonitorIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
declare const MoonIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
86
|
+
declare const MoreHorizontalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
declare const MousePointerClickIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
declare const OctagonXIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
declare const PackageCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
declare const PackageIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
declare const PanelLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
declare const PanelLeftCloseIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
declare const PanelLeftOpenIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
declare const PanelRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
declare const PencilIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
96
|
+
declare const PinIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
declare const Plus: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
98
|
+
declare const PlusIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
declare const PrinterIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
declare const QrCodeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
declare const RadioTowerIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
102
|
+
declare const RefreshCwIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
declare const RotateCcwIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
104
|
+
declare const Search: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
declare const SearchIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
declare const SearchXIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
declare const SendIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
108
|
+
declare const ServerCrashIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
declare const Settings: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
declare const SettingsIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
declare const ShieldAlertIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
declare const ShieldCheck: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
declare const ShieldCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
114
|
+
declare const ShieldIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
declare const ShoppingCartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
116
|
+
declare const SmartphoneIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
declare const Sparkles: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
declare const StarIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
declare const SunIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
120
|
+
declare const TableIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
declare const TagIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
122
|
+
declare const Trash2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
declare const TrashIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
declare const TrendingDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
declare const TrendingUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
126
|
+
declare const TriangleAlertIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
declare const TrophyIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
declare const TruckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
declare const Underline: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
declare const UploadIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
declare const User: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
132
|
+
declare const UserIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
declare const UsersIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
134
|
+
declare const WifiOffIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
declare const WrenchIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
declare const XCircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
declare const XIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
138
|
+
declare const ActivityIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
declare const AwardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
140
|
+
declare const BanknoteIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
declare const BarChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
declare const CalculatorIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
declare const CameraIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
144
|
+
declare const CircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
declare const CoinsIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
declare const DotIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
declare const DonutIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
declare const ExternalLinkIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
declare const FileEditIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
declare const FilePlusIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
declare const FlagIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
152
|
+
declare const FolderOpenIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
declare const FunnelIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
declare const GanttChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
declare const GoalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
156
|
+
declare const LayoutGridIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
declare const LineChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
158
|
+
declare const Link2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
declare const MapIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
declare const MapPinIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
declare const MapPinnedIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
162
|
+
declare const MedalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
declare const MoreVerticalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
declare const PaperclipIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
declare const PauseIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
declare const PieChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
declare const PiggyBankIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
168
|
+
declare const PlayIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
declare const ReceiptIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
170
|
+
declare const RocketIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
declare const SaveIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
declare const Share2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
declare const SignatureIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
174
|
+
declare const SquareIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
declare const TargetIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
176
|
+
declare const WalletIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
declare const ZapIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
declare const CarIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
179
|
+
declare const GlobeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
180
|
+
declare const LayersIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
181
|
+
declare const BrainIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
+
declare const ChevronsLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
183
|
+
declare const ChevronsRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
184
|
+
declare const CodeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
declare const MicIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
186
|
+
declare const SparklesIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
187
|
+
declare const TerminalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
188
|
+
declare const ThumbsDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
189
|
+
declare const ThumbsUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
190
|
+
declare const Volume2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
191
|
+
declare const WandSparklesIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
192
|
+
declare const BoldIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
193
|
+
declare const ItalicIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
194
|
+
declare const ListOrderedIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
declare const QuoteIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
196
|
+
declare const UndoIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
197
|
+
declare const RedoIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
198
|
+
declare const Heading1Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
199
|
+
declare const Heading2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
declare const StrikethroughIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
201
|
+
declare const ZoomInIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
202
|
+
declare const ZoomOutIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
203
|
+
declare const PipetteIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
204
|
+
|
|
205
|
+
export { ActivityIcon, AlertCircleIcon, AlertTriangleIcon, ArchiveIcon, ArrowDownIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRight, ArrowRightIcon, ArrowUpDownIcon, ArrowUpIcon, ArrowUpRightIcon, AwardIcon, BadgeDollarSignIcon, BanknoteIcon, BarChart3Icon, BarChartIcon, BarcodeIcon, BellIcon, Bold, BoldIcon, BookOpen, BookmarkCheckIcon, BookmarkIcon, BrainIcon, Building2Icon, BuildingIcon, CalculatorIcon, Calendar, CalendarDaysIcon, CalendarIcon, CameraIcon, CarIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpDownIcon, CircleCheckIcon, CircleIcon, ClipboardListIcon, ClockIcon, CodeIcon, CoinsIcon, Columns3Icon, CookieIcon, CopyIcon, CreditCardIcon, DollarSignIcon, DonutIcon, DotIcon, DownloadIcon, Edit3Icon, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FactoryIcon, FileEditIcon, FileIcon, FilePlusIcon, FileSpreadsheetIcon, FileTextIcon, FileXIcon, FilterIcon, FlagIcon, FolderIcon, FolderOpenIcon, FunnelIcon, GalleryHorizontalEnd, GanttChartIcon, GlobeIcon, GoalIcon, GridIcon, GripVerticalIcon, Heading1Icon, Heading2Icon, Home, HomeIcon, ImageIcon, Inbox, InboxIcon, InfoIcon, Italic, ItalicIcon, KeyboardIcon, LanguagesIcon, LayersIcon, LayoutDashboardIcon, LayoutGridIcon, LifeBuoyIcon, LineChartIcon, Link2Icon, LinkIcon, ListIcon, ListOrderedIcon, Loader2, Loader2Icon, LockIcon, Mail, MailIcon, MapIcon, MapPinIcon, MapPinnedIcon, MaximizeIcon, MedalIcon, MegaphoneIcon, MenuIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerClickIcon, OctagonXIcon, PackageCheckIcon, PackageIcon, PanelLeftCloseIcon, PanelLeftIcon, PanelLeftOpenIcon, PanelRightIcon, PaperclipIcon, PauseIcon, PencilIcon, PieChartIcon, PiggyBankIcon, PinIcon, PipetteIcon, PlayIcon, Plus, PlusIcon, PrinterIcon, QrCodeIcon, QuoteIcon, RadioTowerIcon, ReceiptIcon, RedoIcon, RefreshCwIcon, RocketIcon, RotateCcwIcon, SaveIcon, Search, SearchIcon, SearchXIcon, SendIcon, ServerCrashIcon, Settings, SettingsIcon, Share2Icon, ShieldAlertIcon, ShieldCheck, ShieldCheckIcon, ShieldIcon, ShoppingCartIcon, SignatureIcon, SmartphoneIcon, Sparkles, SparklesIcon, SquareIcon, StarIcon, StrikethroughIcon, SunIcon, TableIcon, TagIcon, TargetIcon, TerminalIcon, ThumbsDownIcon, ThumbsUpIcon, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleAlertIcon, TrophyIcon, TruckIcon, Underline, UndoIcon, UploadIcon, User, UserIcon, UsersIcon, Volume2Icon, WalletIcon, WandSparklesIcon, WifiOffIcon, WrenchIcon, XCircleIcon, XIcon, ZapIcon, ZoomInIcon, ZoomOutIcon };
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as Lucide from 'lucide-react';
|
|
3
|
+
export { LucideIcon } from 'lucide-react';
|
|
4
|
+
|
|
5
|
+
declare const AlertCircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
6
|
+
declare const AlertTriangleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
declare const ArchiveIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
declare const ArrowDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
declare const ArrowDownRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
declare const ArrowLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
declare const ArrowRight: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12
|
+
declare const ArrowRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13
|
+
declare const ArrowUpDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14
|
+
declare const ArrowUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
15
|
+
declare const ArrowUpRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
16
|
+
declare const BadgeDollarSignIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17
|
+
declare const BarChart3Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18
|
+
declare const BarcodeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19
|
+
declare const BellIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
+
declare const Bold: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
declare const BookOpen: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
declare const BookmarkCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
23
|
+
declare const BookmarkIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
24
|
+
declare const Building2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
25
|
+
declare const BuildingIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
26
|
+
declare const Calendar: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
27
|
+
declare const CalendarDaysIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
28
|
+
declare const CalendarIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
29
|
+
declare const CheckCircle2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
30
|
+
declare const CheckCircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
31
|
+
declare const CheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
32
|
+
declare const ChevronDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
33
|
+
declare const ChevronLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
34
|
+
declare const ChevronRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
35
|
+
declare const ChevronUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
36
|
+
declare const ChevronsUpDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
37
|
+
declare const CircleCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
declare const ClipboardListIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
39
|
+
declare const ClockIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
declare const Columns3Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
41
|
+
declare const CookieIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
42
|
+
declare const CopyIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
43
|
+
declare const CreditCardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
44
|
+
declare const DollarSignIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
45
|
+
declare const DownloadIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
declare const EditIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
47
|
+
declare const Edit3Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
48
|
+
declare const EyeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
49
|
+
declare const EyeOffIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
50
|
+
declare const FactoryIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
51
|
+
declare const FileIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
declare const FileSpreadsheetIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
53
|
+
declare const FileTextIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
54
|
+
declare const FileXIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
declare const FilterIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
declare const FolderIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
declare const GalleryHorizontalEnd: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
declare const GridIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
declare const GripVerticalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
60
|
+
declare const Home: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
declare const HomeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
62
|
+
declare const ImageIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
declare const Inbox: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
declare const InboxIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
declare const InfoIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
66
|
+
declare const Italic: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
declare const KeyboardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
68
|
+
declare const LanguagesIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
declare const LayoutDashboardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
declare const LifeBuoyIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
72
|
+
declare const ListIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
declare const Loader2: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
declare const Loader2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
declare const LockIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
declare const Mail: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
declare const MailIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
78
|
+
declare const MaximizeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
declare const MegaphoneIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
80
|
+
declare const MenuIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
declare const MessageSquareIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
declare const MinimizeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
declare const MinusIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
84
|
+
declare const MonitorIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
declare const MoonIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
86
|
+
declare const MoreHorizontalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
declare const MousePointerClickIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
declare const OctagonXIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
declare const PackageCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
declare const PackageIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
declare const PanelLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
declare const PanelLeftCloseIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
declare const PanelLeftOpenIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
declare const PanelRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
declare const PencilIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
96
|
+
declare const PinIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
declare const Plus: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
98
|
+
declare const PlusIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
declare const PrinterIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
declare const QrCodeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
declare const RadioTowerIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
102
|
+
declare const RefreshCwIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
declare const RotateCcwIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
104
|
+
declare const Search: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
declare const SearchIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
declare const SearchXIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
declare const SendIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
108
|
+
declare const ServerCrashIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
declare const Settings: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
declare const SettingsIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
declare const ShieldAlertIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
declare const ShieldCheck: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
declare const ShieldCheckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
114
|
+
declare const ShieldIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
declare const ShoppingCartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
116
|
+
declare const SmartphoneIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
declare const Sparkles: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
declare const StarIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
declare const SunIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
120
|
+
declare const TableIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
declare const TagIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
122
|
+
declare const Trash2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
declare const TrashIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
declare const TrendingDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
declare const TrendingUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
126
|
+
declare const TriangleAlertIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
declare const TrophyIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
declare const TruckIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
declare const Underline: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
declare const UploadIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
declare const User: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
132
|
+
declare const UserIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
declare const UsersIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
134
|
+
declare const WifiOffIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
declare const WrenchIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
declare const XCircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
declare const XIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
138
|
+
declare const ActivityIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
declare const AwardIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
140
|
+
declare const BanknoteIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
declare const BarChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
declare const CalculatorIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
declare const CameraIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
144
|
+
declare const CircleIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
declare const CoinsIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
declare const DotIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
declare const DonutIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
declare const ExternalLinkIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
declare const FileEditIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
declare const FilePlusIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
declare const FlagIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
152
|
+
declare const FolderOpenIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
declare const FunnelIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
declare const GanttChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
declare const GoalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
156
|
+
declare const LayoutGridIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
declare const LineChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
158
|
+
declare const Link2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
declare const MapIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
declare const MapPinIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
declare const MapPinnedIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
162
|
+
declare const MedalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
declare const MoreVerticalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
declare const PaperclipIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
declare const PauseIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
declare const PieChartIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
declare const PiggyBankIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
168
|
+
declare const PlayIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
declare const ReceiptIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
170
|
+
declare const RocketIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
declare const SaveIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
declare const Share2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
declare const SignatureIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
174
|
+
declare const SquareIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
declare const TargetIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
176
|
+
declare const WalletIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
declare const ZapIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
declare const CarIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
179
|
+
declare const GlobeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
180
|
+
declare const LayersIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
181
|
+
declare const BrainIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
+
declare const ChevronsLeftIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
183
|
+
declare const ChevronsRightIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
184
|
+
declare const CodeIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
declare const MicIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
186
|
+
declare const SparklesIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
187
|
+
declare const TerminalIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
188
|
+
declare const ThumbsDownIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
189
|
+
declare const ThumbsUpIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
190
|
+
declare const Volume2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
191
|
+
declare const WandSparklesIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
192
|
+
declare const BoldIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
193
|
+
declare const ItalicIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
194
|
+
declare const ListOrderedIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
declare const QuoteIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
196
|
+
declare const UndoIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
197
|
+
declare const RedoIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
198
|
+
declare const Heading1Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
199
|
+
declare const Heading2Icon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
declare const StrikethroughIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
201
|
+
declare const ZoomInIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
202
|
+
declare const ZoomOutIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
203
|
+
declare const PipetteIcon: React.ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
204
|
+
|
|
205
|
+
export { ActivityIcon, AlertCircleIcon, AlertTriangleIcon, ArchiveIcon, ArrowDownIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRight, ArrowRightIcon, ArrowUpDownIcon, ArrowUpIcon, ArrowUpRightIcon, AwardIcon, BadgeDollarSignIcon, BanknoteIcon, BarChart3Icon, BarChartIcon, BarcodeIcon, BellIcon, Bold, BoldIcon, BookOpen, BookmarkCheckIcon, BookmarkIcon, BrainIcon, Building2Icon, BuildingIcon, CalculatorIcon, Calendar, CalendarDaysIcon, CalendarIcon, CameraIcon, CarIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpDownIcon, CircleCheckIcon, CircleIcon, ClipboardListIcon, ClockIcon, CodeIcon, CoinsIcon, Columns3Icon, CookieIcon, CopyIcon, CreditCardIcon, DollarSignIcon, DonutIcon, DotIcon, DownloadIcon, Edit3Icon, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FactoryIcon, FileEditIcon, FileIcon, FilePlusIcon, FileSpreadsheetIcon, FileTextIcon, FileXIcon, FilterIcon, FlagIcon, FolderIcon, FolderOpenIcon, FunnelIcon, GalleryHorizontalEnd, GanttChartIcon, GlobeIcon, GoalIcon, GridIcon, GripVerticalIcon, Heading1Icon, Heading2Icon, Home, HomeIcon, ImageIcon, Inbox, InboxIcon, InfoIcon, Italic, ItalicIcon, KeyboardIcon, LanguagesIcon, LayersIcon, LayoutDashboardIcon, LayoutGridIcon, LifeBuoyIcon, LineChartIcon, Link2Icon, LinkIcon, ListIcon, ListOrderedIcon, Loader2, Loader2Icon, LockIcon, Mail, MailIcon, MapIcon, MapPinIcon, MapPinnedIcon, MaximizeIcon, MedalIcon, MegaphoneIcon, MenuIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerClickIcon, OctagonXIcon, PackageCheckIcon, PackageIcon, PanelLeftCloseIcon, PanelLeftIcon, PanelLeftOpenIcon, PanelRightIcon, PaperclipIcon, PauseIcon, PencilIcon, PieChartIcon, PiggyBankIcon, PinIcon, PipetteIcon, PlayIcon, Plus, PlusIcon, PrinterIcon, QrCodeIcon, QuoteIcon, RadioTowerIcon, ReceiptIcon, RedoIcon, RefreshCwIcon, RocketIcon, RotateCcwIcon, SaveIcon, Search, SearchIcon, SearchXIcon, SendIcon, ServerCrashIcon, Settings, SettingsIcon, Share2Icon, ShieldAlertIcon, ShieldCheck, ShieldCheckIcon, ShieldIcon, ShoppingCartIcon, SignatureIcon, SmartphoneIcon, Sparkles, SparklesIcon, SquareIcon, StarIcon, StrikethroughIcon, SunIcon, TableIcon, TagIcon, TargetIcon, TerminalIcon, ThumbsDownIcon, ThumbsUpIcon, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleAlertIcon, TrophyIcon, TruckIcon, Underline, UndoIcon, UploadIcon, User, UserIcon, UsersIcon, Volume2Icon, WalletIcon, WandSparklesIcon, WifiOffIcon, WrenchIcon, XCircleIcon, XIcon, ZapIcon, ZoomInIcon, ZoomOutIcon };
|
package/dist/ui-icons.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Chaos UI - Enterprise React Component Library
|
|
3
|
+
* Copyright (c) 2026 qxyfoods
|
|
4
|
+
* MIT License
|
|
5
|
+
*/
|
|
6
|
+
import*as o from"lucide-react";var c=o.AlertCircleIcon,n=o.AlertTriangleIcon,e=o.ArchiveIcon,t=o.ArrowDownIcon,r=o.ArrowDownRightIcon,i=o.ArrowLeftIcon,I=o.ArrowRight,d=o.ArrowRightIcon,s=o.ArrowUpDownIcon,p=o.ArrowUpIcon,u=o.ArrowUpRightIcon,L=o.BadgeDollarSignIcon,a=o.BarChart3Icon,x=o.BarcodeIcon,l=o.BellIcon,h=o.Bold,C=o.BookOpen,g=o.BookmarkCheckIcon,k=o.BookmarkIcon,S=o.Building2Icon,P=o.BuildingIcon,w=o.Calendar,M=o.CalendarDaysIcon,m=o.CalendarIcon,B=o.CheckCircle2Icon,T=o.CheckCircleIcon,y=o.CheckIcon,f=o.ChevronDownIcon,A=o.ChevronLeftIcon,D=o.ChevronRightIcon,R=o.ChevronUpIcon,U=o.ChevronsUpDownIcon,F=o.CircleCheckIcon,v=o.ClipboardListIcon,b=o.ClockIcon,O=o.Columns3Icon,E=o.CookieIcon,G=o.CopyIcon,H=o.CreditCardIcon,X=o.DollarSignIcon,z=o.DownloadIcon,W=o.EditIcon,V=o.Edit3Icon,Z=o.EyeIcon,q=o.EyeOffIcon,Q=o.FactoryIcon,K=o.FileIcon,j=o.FileSpreadsheetIcon,J=o.FileTextIcon,N=o.FileXIcon,Y=o.FilterIcon,_=o.FolderIcon,$=o.GalleryHorizontalEnd,oo=o.GridIcon,co=o.GripVerticalIcon,no=o.Home,eo=o.HomeIcon,to=o.ImageIcon,ro=o.Inbox,io=o.InboxIcon,Io=o.InfoIcon,so=o.Italic,po=o.KeyboardIcon,uo=o.LanguagesIcon,Lo=o.LayoutDashboardIcon,ao=o.LifeBuoyIcon,xo=o.LinkIcon,lo=o.ListIcon,ho=o.Loader2,Co=o.Loader2Icon,go=o.LockIcon,ko=o.Mail,So=o.MailIcon,Po=o.MaximizeIcon,wo=o.MegaphoneIcon,Mo=o.MenuIcon,mo=o.MessageSquareIcon,Bo=o.MinimizeIcon,To=o.MinusIcon,yo=o.MonitorIcon,fo=o.MoonIcon,Ao=o.MoreHorizontalIcon,Do=o.MousePointerClickIcon,Ro=o.OctagonXIcon,Uo=o.PackageCheckIcon,Fo=o.PackageIcon,vo=o.PanelLeftIcon,bo=o.PanelLeftCloseIcon,Oo=o.PanelLeftOpenIcon,Eo=o.PanelRightIcon,Go=o.PencilIcon,Ho=o.PinIcon,Xo=o.Plus,zo=o.PlusIcon,Wo=o.PrinterIcon,Vo=o.QrCodeIcon,Zo=o.RadioTowerIcon,qo=o.RefreshCwIcon,Qo=o.RotateCcwIcon,Ko=o.Search,jo=o.SearchIcon,Jo=o.SearchXIcon,No=o.SendIcon,Yo=o.ServerCrashIcon,_o=o.Settings,$o=o.SettingsIcon,oc=o.ShieldAlertIcon,cc=o.ShieldCheck,nc=o.ShieldCheckIcon,ec=o.ShieldIcon,tc=o.ShoppingCartIcon,rc=o.SmartphoneIcon,ic=o.Sparkles,Ic=o.StarIcon,dc=o.SunIcon,sc=o.TableIcon,pc=o.TagIcon,uc=o.Trash2Icon,Lc=o.TrashIcon,ac=o.TrendingDownIcon,xc=o.TrendingUpIcon,lc=o.TriangleAlertIcon,hc=o.TrophyIcon,Cc=o.TruckIcon,gc=o.Underline,kc=o.UploadIcon,Sc=o.User,Pc=o.UserIcon,wc=o.UsersIcon,Mc=o.WifiOffIcon,mc=o.WrenchIcon,Bc=o.XCircleIcon,Tc=o.XIcon,yc=o.ActivityIcon,fc=o.AwardIcon,Ac=o.BanknoteIcon,Dc=o.BarChartIcon,Rc=o.CalculatorIcon,Uc=o.CameraIcon,Fc=o.CircleIcon,vc=o.CoinsIcon,bc=o.DotIcon,Oc=o.DonutIcon,Ec=o.ExternalLinkIcon,Gc=o.FileEditIcon,Hc=o.FilePlusIcon,Xc=o.FlagIcon,zc=o.FolderOpenIcon,Wc=o.FunnelIcon,Vc=o.GanttChartIcon,Zc=o.GoalIcon,qc=o.LayoutGridIcon,Qc=o.LineChartIcon,Kc=o.Link2Icon,jc=o.MapIcon,Jc=o.MapPinIcon,Nc=o.MapPinnedIcon,Yc=o.MedalIcon,_c=o.MoreVerticalIcon,$c=o.PaperclipIcon,on=o.PauseIcon,cn=o.PieChartIcon,nn=o.PiggyBankIcon,en=o.PlayIcon,tn=o.ReceiptIcon,rn=o.RocketIcon,In=o.SaveIcon,dn=o.Share2Icon,sn=o.SignatureIcon,pn=o.SquareIcon,un=o.TargetIcon,Ln=o.WalletIcon,an=o.ZapIcon,xn=o.CarIcon,ln=o.GlobeIcon,hn=o.LayersIcon,Cn=o.BrainIcon,gn=o.ChevronsLeftIcon,kn=o.ChevronsRightIcon,Sn=o.CodeIcon,Pn=o.MicIcon,wn=o.SparklesIcon,Mn=o.TerminalIcon,mn=o.ThumbsDownIcon,Bn=o.ThumbsUpIcon,Tn=o.Volume2Icon,yn=o.WandSparklesIcon,fn=o.BoldIcon,An=o.ItalicIcon,Dn=o.ListOrderedIcon,Rn=o.QuoteIcon,Un=o.UndoIcon,Fn=o.RedoIcon,vn=o.Heading1Icon,bn=o.Heading2Icon,On=o.StrikethroughIcon,En=o.ZoomInIcon,Gn=o.ZoomOutIcon,Hn=o.PipetteIcon;export{yc as ActivityIcon,c as AlertCircleIcon,n as AlertTriangleIcon,e as ArchiveIcon,t as ArrowDownIcon,r as ArrowDownRightIcon,i as ArrowLeftIcon,I as ArrowRight,d as ArrowRightIcon,s as ArrowUpDownIcon,p as ArrowUpIcon,u as ArrowUpRightIcon,fc as AwardIcon,L as BadgeDollarSignIcon,Ac as BanknoteIcon,a as BarChart3Icon,Dc as BarChartIcon,x as BarcodeIcon,l as BellIcon,h as Bold,fn as BoldIcon,C as BookOpen,g as BookmarkCheckIcon,k as BookmarkIcon,Cn as BrainIcon,S as Building2Icon,P as BuildingIcon,Rc as CalculatorIcon,w as Calendar,M as CalendarDaysIcon,m as CalendarIcon,Uc as CameraIcon,xn as CarIcon,B as CheckCircle2Icon,T as CheckCircleIcon,y as CheckIcon,f as ChevronDownIcon,A as ChevronLeftIcon,D as ChevronRightIcon,R as ChevronUpIcon,gn as ChevronsLeftIcon,kn as ChevronsRightIcon,U as ChevronsUpDownIcon,F as CircleCheckIcon,Fc as CircleIcon,v as ClipboardListIcon,b as ClockIcon,Sn as CodeIcon,vc as CoinsIcon,O as Columns3Icon,E as CookieIcon,G as CopyIcon,H as CreditCardIcon,X as DollarSignIcon,Oc as DonutIcon,bc as DotIcon,z as DownloadIcon,V as Edit3Icon,W as EditIcon,Ec as ExternalLinkIcon,Z as EyeIcon,q as EyeOffIcon,Q as FactoryIcon,Gc as FileEditIcon,K as FileIcon,Hc as FilePlusIcon,j as FileSpreadsheetIcon,J as FileTextIcon,N as FileXIcon,Y as FilterIcon,Xc as FlagIcon,_ as FolderIcon,zc as FolderOpenIcon,Wc as FunnelIcon,$ as GalleryHorizontalEnd,Vc as GanttChartIcon,ln as GlobeIcon,Zc as GoalIcon,oo as GridIcon,co as GripVerticalIcon,vn as Heading1Icon,bn as Heading2Icon,no as Home,eo as HomeIcon,to as ImageIcon,ro as Inbox,io as InboxIcon,Io as InfoIcon,so as Italic,An as ItalicIcon,po as KeyboardIcon,uo as LanguagesIcon,hn as LayersIcon,Lo as LayoutDashboardIcon,qc as LayoutGridIcon,ao as LifeBuoyIcon,Qc as LineChartIcon,Kc as Link2Icon,xo as LinkIcon,lo as ListIcon,Dn as ListOrderedIcon,ho as Loader2,Co as Loader2Icon,go as LockIcon,ko as Mail,So as MailIcon,jc as MapIcon,Jc as MapPinIcon,Nc as MapPinnedIcon,Po as MaximizeIcon,Yc as MedalIcon,wo as MegaphoneIcon,Mo as MenuIcon,mo as MessageSquareIcon,Pn as MicIcon,Bo as MinimizeIcon,To as MinusIcon,yo as MonitorIcon,fo as MoonIcon,Ao as MoreHorizontalIcon,_c as MoreVerticalIcon,Do as MousePointerClickIcon,Ro as OctagonXIcon,Uo as PackageCheckIcon,Fo as PackageIcon,bo as PanelLeftCloseIcon,vo as PanelLeftIcon,Oo as PanelLeftOpenIcon,Eo as PanelRightIcon,$c as PaperclipIcon,on as PauseIcon,Go as PencilIcon,cn as PieChartIcon,nn as PiggyBankIcon,Ho as PinIcon,Hn as PipetteIcon,en as PlayIcon,Xo as Plus,zo as PlusIcon,Wo as PrinterIcon,Vo as QrCodeIcon,Rn as QuoteIcon,Zo as RadioTowerIcon,tn as ReceiptIcon,Fn as RedoIcon,qo as RefreshCwIcon,rn as RocketIcon,Qo as RotateCcwIcon,In as SaveIcon,Ko as Search,jo as SearchIcon,Jo as SearchXIcon,No as SendIcon,Yo as ServerCrashIcon,_o as Settings,$o as SettingsIcon,dn as Share2Icon,oc as ShieldAlertIcon,cc as ShieldCheck,nc as ShieldCheckIcon,ec as ShieldIcon,tc as ShoppingCartIcon,sn as SignatureIcon,rc as SmartphoneIcon,ic as Sparkles,wn as SparklesIcon,pn as SquareIcon,Ic as StarIcon,On as StrikethroughIcon,dc as SunIcon,sc as TableIcon,pc as TagIcon,un as TargetIcon,Mn as TerminalIcon,mn as ThumbsDownIcon,Bn as ThumbsUpIcon,uc as Trash2Icon,Lc as TrashIcon,ac as TrendingDownIcon,xc as TrendingUpIcon,lc as TriangleAlertIcon,hc as TrophyIcon,Cc as TruckIcon,gc as Underline,Un as UndoIcon,kc as UploadIcon,Sc as User,Pc as UserIcon,wc as UsersIcon,Tn as Volume2Icon,Ln as WalletIcon,yn as WandSparklesIcon,Mc as WifiOffIcon,mc as WrenchIcon,Bc as XCircleIcon,Tc as XIcon,an as ZapIcon,En as ZoomInIcon,Gn as ZoomOutIcon};
|