@windrun-huaiin/base-ui 15.1.0 → 16.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +4 -4
- package/dist/components/global-icon.d.ts +22 -1
- package/dist/components/global-icon.js +4 -35
- package/dist/components/global-icon.mjs +5 -36
- package/dist/components/icon-factory.d.ts +15 -0
- package/dist/components/icon-factory.js +39 -0
- package/dist/components/icon-factory.mjs +35 -0
- package/dist/components/language-switcher.d.ts +1 -1
- package/dist/components/language-switcher.js +3 -3
- package/dist/components/language-switcher.mjs +3 -3
- package/dist/components/limited-lucide-icons.d.ts +1 -1
- package/dist/components/limited-lucide-icons.js +84 -0
- package/dist/components/limited-lucide-icons.mjs +1 -1
- package/dist/components/server.d.ts +1 -0
- package/dist/components/server.js +191 -0
- package/dist/components/server.mjs +2 -0
- package/dist/icons/index.d.ts +189 -0
- package/dist/icons/index.js +418 -0
- package/dist/icons/index.mjs +225 -0
- package/dist/ui/button.js +2 -2
- package/dist/ui/button.mjs +2 -2
- package/dist/ui/copyable-text.js +2 -2
- package/dist/ui/copyable-text.mjs +2 -2
- package/dist/ui/dropdown-menu.js +4 -4
- package/dist/ui/dropdown-menu.mjs +4 -4
- package/dist/ui/language-button.js +1 -1
- package/dist/ui/language-button.mjs +1 -1
- package/package.json +8 -3
- package/src/components/global-icon.tsx +7 -65
- package/src/components/icon-factory.tsx +92 -0
- package/src/components/language-switcher.tsx +4 -4
- package/src/components/limited-lucide-icons.ts +21 -0
- package/src/components/server.ts +1 -0
- package/src/icons/index.ts +381 -0
- package/src/ui/button.tsx +2 -2
- package/src/ui/copyable-text.tsx +3 -3
- package/src/ui/dropdown-menu.tsx +4 -4
- package/src/ui/language-button.tsx +1 -1
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var bitcoin = require('../assets/bitcoin.js');
|
|
4
|
+
var clerk = require('../assets/clerk.js');
|
|
5
|
+
var css = require('../assets/css.js');
|
|
6
|
+
var csv = require('../assets/csv.js');
|
|
7
|
+
var d8 = require('../assets/d8.js');
|
|
8
|
+
var diff = require('../assets/diff.js');
|
|
9
|
+
var dpa = require('../assets/dpa.js');
|
|
10
|
+
var faq = require('../assets/faq.js');
|
|
11
|
+
var faqb = require('../assets/faqb.js');
|
|
12
|
+
var faqs = require('../assets/faqs.js');
|
|
13
|
+
var github = require('../assets/github.js');
|
|
14
|
+
var html = require('../assets/html.js');
|
|
15
|
+
var http = require('../assets/http.js');
|
|
16
|
+
var iterm = require('../assets/iterm.js');
|
|
17
|
+
var java = require('../assets/java.js');
|
|
18
|
+
var json = require('../assets/json.js');
|
|
19
|
+
var lastUpdated = require('../assets/last-updated.js');
|
|
20
|
+
var log = require('../assets/log.js');
|
|
21
|
+
var mac = require('../assets/mac.js');
|
|
22
|
+
var markdown = require('../assets/markdown.js');
|
|
23
|
+
var mdx = require('../assets/mdx.js');
|
|
24
|
+
var mermaid = require('../assets/mermaid.js');
|
|
25
|
+
var scheme = require('../assets/scheme.js');
|
|
26
|
+
var snippets = require('../assets/snippets.js');
|
|
27
|
+
var sql = require('../assets/sql.js');
|
|
28
|
+
var subp = require('../assets/subp.js');
|
|
29
|
+
var t3p = require('../assets/t3p.js');
|
|
30
|
+
var test = require('../assets/test.js');
|
|
31
|
+
var txt = require('../assets/txt.js');
|
|
32
|
+
var xml = require('../assets/xml.js');
|
|
33
|
+
var yaml = require('../assets/yaml.js');
|
|
34
|
+
var iconFactory = require('../components/icon-factory.js');
|
|
35
|
+
var lucideReact = require('lucide-react');
|
|
36
|
+
var globalIcon = require('../components/global-icon.js');
|
|
37
|
+
var siteIcon = require('../components/site-icon.js');
|
|
38
|
+
|
|
39
|
+
const AlbumIcon = iconFactory.createGlobalLucideIcon(lucideReact.AlbumIcon, 'AlbumIcon');
|
|
40
|
+
const AlignHorizontalJustifyEndIcon = iconFactory.createGlobalLucideIcon(lucideReact.AlignHorizontalJustifyEnd, 'AlignHorizontalJustifyEndIcon');
|
|
41
|
+
const ArrowLeftIcon = iconFactory.createGlobalLucideIcon(lucideReact.ArrowLeft, 'ArrowLeftIcon');
|
|
42
|
+
const ArrowRightIcon = iconFactory.createGlobalLucideIcon(lucideReact.ArrowRight, 'ArrowRightIcon');
|
|
43
|
+
const ArrowUpIcon = iconFactory.createGlobalLucideIcon(lucideReact.ArrowUp, 'ArrowUpIcon');
|
|
44
|
+
const BabyIcon = iconFactory.createGlobalLucideIcon(lucideReact.Baby, 'BabyIcon');
|
|
45
|
+
const BellIcon = iconFactory.createGlobalLucideIcon(lucideReact.Bell, 'BellIcon');
|
|
46
|
+
const BinaryIcon = iconFactory.createGlobalLucideIcon(lucideReact.Binary, 'BinaryIcon');
|
|
47
|
+
const BlocksIcon = iconFactory.createGlobalLucideIcon(lucideReact.Blocks, 'BlocksIcon');
|
|
48
|
+
const BookXIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookX, 'BookXIcon');
|
|
49
|
+
const BookOpenIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookOpen, 'BookOpenIcon');
|
|
50
|
+
const BookAudioIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookAudio, 'BookAudioIcon');
|
|
51
|
+
const BookAIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookA, 'BookAIcon');
|
|
52
|
+
const BookCheckIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookCheck, 'BookCheckIcon');
|
|
53
|
+
const BookDownIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookDown, 'BookDownIcon');
|
|
54
|
+
const BookHeadphonesIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookHeadphones, 'BookHeadphonesIcon');
|
|
55
|
+
const BookmarkIcon = iconFactory.createGlobalLucideIcon(lucideReact.Bookmark, 'BookmarkIcon');
|
|
56
|
+
const BookmarkCheckIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookmarkCheck, 'BookmarkCheckIcon');
|
|
57
|
+
const BookmarkMinusIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookmarkMinus, 'BookmarkMinusIcon');
|
|
58
|
+
const BookmarkPlusIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookmarkPlus, 'BookmarkPlusIcon');
|
|
59
|
+
const BookmarkXIcon = iconFactory.createGlobalLucideIcon(lucideReact.BookmarkX, 'BookmarkXIcon');
|
|
60
|
+
const BotMessageSquareIcon = iconFactory.createGlobalLucideIcon(lucideReact.BotMessageSquare, 'BotMessageSquareIcon');
|
|
61
|
+
const BrainIcon = iconFactory.createGlobalLucideIcon(lucideReact.Brain, 'BrainIcon');
|
|
62
|
+
const BrainCircuitIcon = iconFactory.createGlobalLucideIcon(lucideReact.BrainCircuit, 'BrainCircuitIcon');
|
|
63
|
+
const BriefcaseIcon = iconFactory.createGlobalLucideIcon(lucideReact.Briefcase, 'BriefcaseIcon');
|
|
64
|
+
const BringToFrontIcon = iconFactory.createGlobalLucideIcon(lucideReact.BringToFront, 'BringToFrontIcon');
|
|
65
|
+
const BrushCleaningIcon = iconFactory.createGlobalLucideIcon(lucideReact.BrushCleaning, 'BrushCleaningIcon');
|
|
66
|
+
const Building2Icon = iconFactory.createGlobalLucideIcon(lucideReact.Building2, 'Building2Icon');
|
|
67
|
+
const BugIcon = iconFactory.createGlobalLucideIcon(lucideReact.Bug, 'BugIcon');
|
|
68
|
+
const BugOffIcon = iconFactory.createGlobalLucideIcon(lucideReact.BugOff, 'BugOffIcon');
|
|
69
|
+
const BadgeQuestionMarkIcon = iconFactory.createGlobalLucideIcon(lucideReact.BadgeQuestionMark, 'BadgeQuestionMarkIcon');
|
|
70
|
+
const CarIcon = iconFactory.createGlobalLucideIcon(lucideReact.Car, 'CarIcon');
|
|
71
|
+
const ChartColumnStackedIcon = iconFactory.createGlobalLucideIcon(lucideReact.ChartColumnStacked, 'ChartColumnStackedIcon');
|
|
72
|
+
const CircleIcon = iconFactory.createGlobalLucideIcon(lucideReact.Circle, 'CircleIcon');
|
|
73
|
+
const CircleAlertIcon = iconFactory.createGlobalLucideIcon(lucideReact.CircleAlert, 'CircleAlertIcon');
|
|
74
|
+
const CircleQuestionMarkIcon = iconFactory.createGlobalLucideIcon(lucideReact.CircleQuestionMark, 'CircleQuestionMarkIcon');
|
|
75
|
+
const CircleSmallIcon = iconFactory.createGlobalLucideIcon(lucideReact.CircleSmall, 'CircleSmallIcon');
|
|
76
|
+
const CircleStopIcon = iconFactory.createGlobalLucideIcon(lucideReact.CircleStop, 'CircleStopIcon');
|
|
77
|
+
const CheckIcon = iconFactory.createGlobalLucideIcon(lucideReact.Check, 'CheckIcon');
|
|
78
|
+
const CircleArrowDownIcon = iconFactory.createGlobalLucideIcon(lucideReact.CircleArrowDown, 'CircleArrowDownIcon');
|
|
79
|
+
const CircleArrowUpIcon = iconFactory.createGlobalLucideIcon(lucideReact.CircleArrowUp, 'CircleArrowUpIcon');
|
|
80
|
+
const CheckCheckIcon = iconFactory.createGlobalLucideIcon(lucideReact.CheckCheck, 'CheckCheckIcon');
|
|
81
|
+
const CheckLineIcon = iconFactory.createGlobalLucideIcon(lucideReact.CheckLine, 'CheckLineIcon');
|
|
82
|
+
const ChevronDownIcon = iconFactory.createGlobalLucideIcon(lucideReact.ChevronDown, 'ChevronDownIcon');
|
|
83
|
+
const ChevronLeftIcon = iconFactory.createGlobalLucideIcon(lucideReact.ChevronLeft, 'ChevronLeftIcon');
|
|
84
|
+
const ChevronRightIcon = iconFactory.createGlobalLucideIcon(lucideReact.ChevronRight, 'ChevronRightIcon');
|
|
85
|
+
const ChevronUpIcon = iconFactory.createGlobalLucideIcon(lucideReact.ChevronUp, 'ChevronUpIcon');
|
|
86
|
+
const CoffeeIcon = iconFactory.createGlobalLucideIcon(lucideReact.Coffee, 'CoffeeIcon');
|
|
87
|
+
const CoinsIcon = iconFactory.createGlobalLucideIcon(lucideReact.Coins, 'CoinsIcon');
|
|
88
|
+
const ComponentIcon = iconFactory.createGlobalLucideIcon(lucideReact.ComponentIcon, 'ComponentIcon');
|
|
89
|
+
const CopyIcon = iconFactory.createGlobalLucideIcon(lucideReact.Copy, 'CopyIcon');
|
|
90
|
+
const CopyCheckIcon = iconFactory.createGlobalLucideIcon(lucideReact.CopyCheck, 'CopyCheckIcon');
|
|
91
|
+
const CpuIcon = iconFactory.createGlobalLucideIcon(lucideReact.Cpu, 'CpuIcon');
|
|
92
|
+
const DatabaseIcon = iconFactory.createGlobalLucideIcon(lucideReact.Database, 'DatabaseIcon');
|
|
93
|
+
const DatabaseZapIcon = iconFactory.createGlobalLucideIcon(lucideReact.DatabaseZap, 'DatabaseZapIcon');
|
|
94
|
+
const DotIcon = iconFactory.createGlobalLucideIcon(lucideReact.Dot, 'DotIcon');
|
|
95
|
+
const DownloadIcon = iconFactory.createGlobalLucideIcon(lucideReact.Download, 'DownloadIcon');
|
|
96
|
+
const EllipsisIcon = iconFactory.createGlobalLucideIcon(lucideReact.Ellipsis, 'EllipsisIcon');
|
|
97
|
+
const EllipsisVerticalIcon = iconFactory.createGlobalLucideIcon(lucideReact.EllipsisVertical, 'EllipsisVerticalIcon');
|
|
98
|
+
const EyeIcon = iconFactory.createGlobalLucideIcon(lucideReact.Eye, 'EyeIcon');
|
|
99
|
+
const EyeOffIcon = iconFactory.createGlobalLucideIcon(lucideReact.EyeOff, 'EyeOffIcon');
|
|
100
|
+
const ExternalLinkIcon = iconFactory.createGlobalLucideIcon(lucideReact.ExternalLink, 'ExternalLinkIcon');
|
|
101
|
+
const FacebookIcon = iconFactory.createGlobalLucideIcon(lucideReact.Facebook, 'FacebookIcon');
|
|
102
|
+
const ShieldIcon = iconFactory.createGlobalLucideIcon(lucideReact.Shield, 'ShieldIcon');
|
|
103
|
+
const FileIcon = iconFactory.createGlobalLucideIcon(lucideReact.File, 'FileIcon');
|
|
104
|
+
const FileDownIcon = iconFactory.createGlobalLucideIcon(lucideReact.FileDown, 'FileDownIcon');
|
|
105
|
+
const FileInputIcon = iconFactory.createGlobalLucideIcon(lucideReact.FileInput, 'FileInputIcon');
|
|
106
|
+
const FileLock2Icon = iconFactory.createGlobalLucideIcon(lucideReact.FileLock2, 'FileLock2Icon');
|
|
107
|
+
const FileUpIcon = iconFactory.createGlobalLucideIcon(lucideReact.FileUp, 'FileUpIcon');
|
|
108
|
+
const FingerprintIcon = iconFactory.createGlobalLucideIcon(lucideReact.Fingerprint, 'FingerprintIcon');
|
|
109
|
+
const FolderIcon = iconFactory.createGlobalLucideIcon(lucideReact.Folder, 'FolderIcon');
|
|
110
|
+
const FolderOpenIcon = iconFactory.createGlobalLucideIcon(lucideReact.FolderOpen, 'FolderOpenIcon');
|
|
111
|
+
const GemIcon = iconFactory.createGlobalLucideIcon(lucideReact.Gem, 'GemIcon');
|
|
112
|
+
const GiftIcon = iconFactory.createGlobalLucideIcon(lucideReact.Gift, 'GiftIcon');
|
|
113
|
+
const GitMergeIcon = iconFactory.createGlobalLucideIcon(lucideReact.GitMerge, 'GitMergeIcon');
|
|
114
|
+
const GitPullRequestArrowIcon = iconFactory.createGlobalLucideIcon(lucideReact.GitPullRequestArrow, 'GitPullRequestArrowIcon');
|
|
115
|
+
const GlobeIcon = iconFactory.createGlobalLucideIcon(lucideReact.Globe, 'GlobeIcon');
|
|
116
|
+
const GlobeLockIcon = iconFactory.createGlobalLucideIcon(lucideReact.GlobeLock, 'GlobeLockIcon');
|
|
117
|
+
const GripIcon = iconFactory.createGlobalLucideIcon(lucideReact.Grip, 'GripIcon');
|
|
118
|
+
const GripVerticalIcon = iconFactory.createGlobalLucideIcon(lucideReact.GripVertical, 'GripVerticalIcon');
|
|
119
|
+
const HandHeartIcon = iconFactory.createGlobalLucideIcon(lucideReact.HandHeart, 'HandHeartIcon');
|
|
120
|
+
const HandshakeIcon = iconFactory.createGlobalLucideIcon(lucideReact.Handshake, 'HandshakeIcon');
|
|
121
|
+
const HighlighterIcon = iconFactory.createGlobalLucideIcon(lucideReact.Highlighter, 'HighlighterIcon');
|
|
122
|
+
const HistoryIcon = iconFactory.createGlobalLucideIcon(lucideReact.History, 'HistoryIcon');
|
|
123
|
+
const HousePlusIcon = iconFactory.createGlobalLucideIcon(lucideReact.HousePlus, 'HousePlusIcon');
|
|
124
|
+
const InfinityIcon = iconFactory.createGlobalLucideIcon(lucideReact.Infinity, 'InfinityIcon');
|
|
125
|
+
const InfoIcon = iconFactory.createGlobalLucideIcon(lucideReact.Info, 'InfoIcon');
|
|
126
|
+
const ImageDownIcon = iconFactory.createGlobalLucideIcon(lucideReact.ImageDown, 'ImageDownIcon');
|
|
127
|
+
const ImageOffIcon = iconFactory.createGlobalLucideIcon(lucideReact.ImageOff, 'ImageOffIcon');
|
|
128
|
+
const ImageUpIcon = iconFactory.createGlobalLucideIcon(lucideReact.ImageUp, 'ImageUpIcon');
|
|
129
|
+
const KeyboardIcon = iconFactory.createGlobalLucideIcon(lucideReact.Keyboard, 'KeyboardIcon');
|
|
130
|
+
const LandPlotIcon = iconFactory.createGlobalLucideIcon(lucideReact.LandPlot, 'LandPlotIcon');
|
|
131
|
+
const LanguagesIcon = iconFactory.createGlobalLucideIcon(lucideReact.Languages, 'LanguagesIcon');
|
|
132
|
+
const LayoutIcon = iconFactory.createGlobalLucideIcon(lucideReact.Layout, 'LayoutIcon');
|
|
133
|
+
const LayoutTemplateIcon = iconFactory.createGlobalLucideIcon(lucideReact.LayoutTemplate, 'LayoutTemplateIcon');
|
|
134
|
+
const LibraryIcon = iconFactory.createGlobalLucideIcon(lucideReact.LibraryIcon, 'LibraryIcon');
|
|
135
|
+
const LightbulbIcon = iconFactory.createGlobalLucideIcon(lucideReact.Lightbulb, 'LightbulbIcon');
|
|
136
|
+
const LinkIcon = iconFactory.createGlobalLucideIcon(lucideReact.Link, 'LinkIcon');
|
|
137
|
+
const ListTodoIcon = iconFactory.createGlobalLucideIcon(lucideReact.ListTodo, 'ListTodoIcon');
|
|
138
|
+
const Loader2Icon = iconFactory.createGlobalLucideIcon(lucideReact.Loader2, 'Loader2Icon');
|
|
139
|
+
const LogInIcon = iconFactory.createGlobalLucideIcon(lucideReact.LogIn, 'LogInIcon');
|
|
140
|
+
const LogOutIcon = iconFactory.createGlobalLucideIcon(lucideReact.LogOut, 'LogOutIcon');
|
|
141
|
+
const MailIcon = iconFactory.createGlobalLucideIcon(lucideReact.Mail, 'MailIcon');
|
|
142
|
+
const MessageCircleMoreIcon = iconFactory.createGlobalLucideIcon(lucideReact.MessageCircleMore, 'MessageCircleMoreIcon');
|
|
143
|
+
const MessageCircleCodeIcon = iconFactory.createGlobalLucideIcon(lucideReact.MessageCircleCode, 'MessageCircleCodeIcon');
|
|
144
|
+
const MessageSquareDiffIcon = iconFactory.createGlobalLucideIcon(lucideReact.MessageSquareDiff, 'MessageSquareDiffIcon');
|
|
145
|
+
const Music4Icon = iconFactory.createGlobalLucideIcon(lucideReact.Music4, 'Music4Icon');
|
|
146
|
+
const MoreHorizontalIcon = iconFactory.createGlobalLucideIcon(lucideReact.MoreHorizontal, 'MoreHorizontalIcon');
|
|
147
|
+
const MousePointerClickIcon = iconFactory.createGlobalLucideIcon(lucideReact.MousePointerClick, 'MousePointerClickIcon');
|
|
148
|
+
const NotepadTextIcon = iconFactory.createGlobalLucideIcon(lucideReact.NotepadText, 'NotepadTextIcon');
|
|
149
|
+
const PaletteIcon = iconFactory.createGlobalLucideIcon(lucideReact.Palette, 'PaletteIcon');
|
|
150
|
+
const PanelLeftIcon = iconFactory.createGlobalLucideIcon(lucideReact.PanelLeft, 'PanelLeftIcon');
|
|
151
|
+
const PanelsTopLeftIcon = iconFactory.createGlobalLucideIcon(lucideReact.PanelsTopLeft, 'PanelsTopLeftIcon');
|
|
152
|
+
const PawPrintIcon = iconFactory.createGlobalLucideIcon(lucideReact.PawPrint, 'PawPrintIcon');
|
|
153
|
+
const PencilIcon = iconFactory.createGlobalLucideIcon(lucideReact.Pencil, 'PencilIcon');
|
|
154
|
+
const PiIcon = iconFactory.createGlobalLucideIcon(lucideReact.Pi, 'PiIcon');
|
|
155
|
+
const PinIcon = iconFactory.createGlobalLucideIcon(lucideReact.Pin, 'PinIcon');
|
|
156
|
+
const PinOffIcon = iconFactory.createGlobalLucideIcon(lucideReact.PinOff, 'PinOffIcon');
|
|
157
|
+
const PlusIcon = iconFactory.createGlobalLucideIcon(lucideReact.Plus, 'PlusIcon');
|
|
158
|
+
const QrCodeIcon = iconFactory.createGlobalLucideIcon(lucideReact.QrCode, 'QrCodeIcon');
|
|
159
|
+
const ReceiptTextIcon = iconFactory.createGlobalLucideIcon(lucideReact.ReceiptText, 'ReceiptTextIcon');
|
|
160
|
+
const RefreshCcwIcon = iconFactory.createGlobalLucideIcon(lucideReact.RefreshCcw, 'RefreshCcwIcon');
|
|
161
|
+
const RegexIcon = iconFactory.createGlobalLucideIcon(lucideReact.Regex, 'RegexIcon');
|
|
162
|
+
const ReplaceIcon = iconFactory.createGlobalLucideIcon(lucideReact.Replace, 'ReplaceIcon');
|
|
163
|
+
const RocketIcon = iconFactory.createGlobalLucideIcon(lucideReact.Rocket, 'RocketIcon');
|
|
164
|
+
const RotateCcwIcon = iconFactory.createGlobalLucideIcon(lucideReact.RotateCcw, 'RotateCcwIcon');
|
|
165
|
+
const RssIcon = iconFactory.createGlobalLucideIcon(lucideReact.Rss, 'RssIcon');
|
|
166
|
+
const ScaleIcon = iconFactory.createGlobalLucideIcon(lucideReact.Scale, 'ScaleIcon');
|
|
167
|
+
const ScanSearchIcon = iconFactory.createGlobalLucideIcon(lucideReact.ScanSearch, 'ScanSearchIcon');
|
|
168
|
+
const SearchIcon = iconFactory.createGlobalLucideIcon(lucideReact.Search, 'SearchIcon');
|
|
169
|
+
const SendIcon = iconFactory.createGlobalLucideIcon(lucideReact.Send, 'SendIcon');
|
|
170
|
+
const SendHorizontalIcon = iconFactory.createGlobalLucideIcon(lucideReact.SendHorizontal, 'SendHorizontalIcon');
|
|
171
|
+
const SettingsIcon = iconFactory.createGlobalLucideIcon(lucideReact.Settings, 'SettingsIcon');
|
|
172
|
+
const Settings2Icon = iconFactory.createGlobalLucideIcon(lucideReact.Settings2, 'Settings2Icon');
|
|
173
|
+
const ShareIcon = iconFactory.createGlobalLucideIcon(lucideReact.Share, 'ShareIcon');
|
|
174
|
+
const SigmaIcon = iconFactory.createGlobalLucideIcon(lucideReact.Sigma, 'SigmaIcon');
|
|
175
|
+
const ShieldUserIcon = iconFactory.createGlobalLucideIcon(lucideReact.ShieldUser, 'ShieldUserIcon');
|
|
176
|
+
const ShoppingCartIcon = iconFactory.createGlobalLucideIcon(lucideReact.ShoppingCart, 'ShoppingCartIcon');
|
|
177
|
+
const SproutIcon = iconFactory.createGlobalLucideIcon(lucideReact.Sprout, 'SproutIcon');
|
|
178
|
+
const SquareDashedBottomCodeIcon = iconFactory.createGlobalLucideIcon(lucideReact.SquareDashedBottomCode, 'SquareDashedBottomCodeIcon');
|
|
179
|
+
const SquareTerminalIcon = iconFactory.createGlobalLucideIcon(lucideReact.SquareTerminal, 'SquareTerminalIcon');
|
|
180
|
+
const ServerIcon = iconFactory.createGlobalLucideIcon(lucideReact.Server, 'ServerIcon');
|
|
181
|
+
const SplinePointerIcon = iconFactory.createGlobalLucideIcon(lucideReact.SplinePointer, 'SplinePointerIcon');
|
|
182
|
+
const SparklesIcon = iconFactory.createGlobalLucideIcon(lucideReact.Sparkles, 'SparklesIcon');
|
|
183
|
+
const StarIcon = iconFactory.createGlobalLucideIcon(lucideReact.Star, 'StarIcon');
|
|
184
|
+
const TabletsIcon = iconFactory.createGlobalLucideIcon(lucideReact.Tablets, 'TabletsIcon');
|
|
185
|
+
const TerminalIcon = iconFactory.createGlobalLucideIcon(lucideReact.Terminal, 'TerminalIcon');
|
|
186
|
+
const Trash2Icon = iconFactory.createGlobalLucideIcon(lucideReact.Trash2, 'Trash2Icon');
|
|
187
|
+
const TwitterIcon = iconFactory.createGlobalLucideIcon(lucideReact.Twitter, 'TwitterIcon');
|
|
188
|
+
const UsbIcon = iconFactory.createGlobalLucideIcon(lucideReact.Usb, 'UsbIcon');
|
|
189
|
+
const UserRoundCheckIcon = iconFactory.createGlobalLucideIcon(lucideReact.UserRoundCheck, 'UserRoundCheckIcon');
|
|
190
|
+
const Wand2Icon = iconFactory.createGlobalLucideIcon(lucideReact.Wand2, 'Wand2Icon');
|
|
191
|
+
const WorkflowIcon = iconFactory.createGlobalLucideIcon(lucideReact.Workflow, 'WorkflowIcon');
|
|
192
|
+
const XIcon = iconFactory.createGlobalLucideIcon(lucideReact.X, 'XIcon');
|
|
193
|
+
const ZapIcon = iconFactory.createGlobalLucideIcon(lucideReact.Zap, 'ZapIcon');
|
|
194
|
+
const GitHubIcon = iconFactory.createGlobalIcon(github.default, 'GitHubIcon');
|
|
195
|
+
const D8Icon = iconFactory.createGlobalIcon(d8.default, 'D8Icon');
|
|
196
|
+
const ClerkIcon = iconFactory.createGlobalIcon(clerk.default, 'ClerkIcon');
|
|
197
|
+
const ItermIcon = iconFactory.createGlobalIcon(iterm.default, 'ItermIcon');
|
|
198
|
+
const MarkdownIcon = iconFactory.createGlobalIcon(markdown.default, 'MarkdownIcon');
|
|
199
|
+
const MDXIcon = iconFactory.createGlobalIcon(mdx.default, 'MDXIcon');
|
|
200
|
+
const HtmlIcon = iconFactory.createGlobalIcon(html.default, 'HtmlIcon');
|
|
201
|
+
const JsonIcon = iconFactory.createGlobalIcon(json.default, 'JsonIcon');
|
|
202
|
+
const XMLIcon = iconFactory.createGlobalIcon(xml.default, 'XMLIcon');
|
|
203
|
+
const YamlIcon = iconFactory.createGlobalIcon(yaml.default, 'YamlIcon');
|
|
204
|
+
const CSVIcon = iconFactory.createGlobalIcon(csv.default, 'CSVIcon');
|
|
205
|
+
const TxtIcon = iconFactory.createGlobalIcon(txt.default, 'TxtIcon');
|
|
206
|
+
const JavaIcon = iconFactory.createGlobalIcon(java.default, 'JavaIcon');
|
|
207
|
+
const SQLIcon = iconFactory.createGlobalIcon(sql.default, 'SQLIcon');
|
|
208
|
+
const LogIcon = iconFactory.createGlobalIcon(log.default, 'LogIcon');
|
|
209
|
+
const MACIcon = iconFactory.createGlobalIcon(mac.default, 'MACIcon');
|
|
210
|
+
const BTCIcon = iconFactory.createGlobalIcon(bitcoin.default, 'BTCIcon');
|
|
211
|
+
const CSSIcon = iconFactory.createGlobalIcon(css.default, 'CSSIcon');
|
|
212
|
+
const MmdIcon = iconFactory.createGlobalIcon(mermaid.default, 'MmdIcon');
|
|
213
|
+
const LastUpdatedIcon = iconFactory.createGlobalIcon(lastUpdated.default, 'LastUpdatedIcon');
|
|
214
|
+
const SnippetsIcon = iconFactory.createGlobalIcon(snippets.default, 'SnippetsIcon');
|
|
215
|
+
const TestIcon = iconFactory.createGlobalIcon(test.default, 'TestIcon');
|
|
216
|
+
const DiffIcon = iconFactory.createGlobalIcon(diff.default, 'DiffIcon');
|
|
217
|
+
const DPAIcon = iconFactory.createGlobalIcon(dpa.default, 'DPAIcon');
|
|
218
|
+
const SubPIcon = iconFactory.createGlobalIcon(subp.default, 'SubPIcon');
|
|
219
|
+
const T3PIcon = iconFactory.createGlobalIcon(t3p.default, 'T3PIcon');
|
|
220
|
+
const HttpIcon = iconFactory.createGlobalIcon(http.default, 'HttpIcon');
|
|
221
|
+
const SchemeIcon = iconFactory.createGlobalIcon(scheme.default, 'SchemeIcon');
|
|
222
|
+
const FAQIcon = iconFactory.createGlobalIcon(faq.default, 'FAQIcon');
|
|
223
|
+
const FAQBIcon = iconFactory.createGlobalIcon(faqb.default, 'FAQBIcon');
|
|
224
|
+
const FAQSIcon = iconFactory.createGlobalIcon(faqs.default, 'FAQSIcon');
|
|
225
|
+
|
|
226
|
+
exports.GlobalAccentIcon = iconFactory.GlobalAccentIcon;
|
|
227
|
+
exports.createGlobalIcon = iconFactory.createGlobalIcon;
|
|
228
|
+
exports.createGlobalLucideIcon = iconFactory.createGlobalLucideIcon;
|
|
229
|
+
exports.getGlobalIcon = globalIcon.getGlobalIcon;
|
|
230
|
+
exports.getIconElement = globalIcon.getIconElement;
|
|
231
|
+
exports.globalLucideIcons = globalIcon.globalLucideIcons;
|
|
232
|
+
exports.createSiteIcon = siteIcon.createSiteIcon;
|
|
233
|
+
exports.AlbumIcon = AlbumIcon;
|
|
234
|
+
exports.AlignHorizontalJustifyEndIcon = AlignHorizontalJustifyEndIcon;
|
|
235
|
+
exports.ArrowLeftIcon = ArrowLeftIcon;
|
|
236
|
+
exports.ArrowRightIcon = ArrowRightIcon;
|
|
237
|
+
exports.ArrowUpIcon = ArrowUpIcon;
|
|
238
|
+
exports.BTCIcon = BTCIcon;
|
|
239
|
+
exports.BabyIcon = BabyIcon;
|
|
240
|
+
exports.BadgeQuestionMarkIcon = BadgeQuestionMarkIcon;
|
|
241
|
+
exports.BellIcon = BellIcon;
|
|
242
|
+
exports.BinaryIcon = BinaryIcon;
|
|
243
|
+
exports.BlocksIcon = BlocksIcon;
|
|
244
|
+
exports.BookAIcon = BookAIcon;
|
|
245
|
+
exports.BookAudioIcon = BookAudioIcon;
|
|
246
|
+
exports.BookCheckIcon = BookCheckIcon;
|
|
247
|
+
exports.BookDownIcon = BookDownIcon;
|
|
248
|
+
exports.BookHeadphonesIcon = BookHeadphonesIcon;
|
|
249
|
+
exports.BookOpenIcon = BookOpenIcon;
|
|
250
|
+
exports.BookXIcon = BookXIcon;
|
|
251
|
+
exports.BookmarkCheckIcon = BookmarkCheckIcon;
|
|
252
|
+
exports.BookmarkIcon = BookmarkIcon;
|
|
253
|
+
exports.BookmarkMinusIcon = BookmarkMinusIcon;
|
|
254
|
+
exports.BookmarkPlusIcon = BookmarkPlusIcon;
|
|
255
|
+
exports.BookmarkXIcon = BookmarkXIcon;
|
|
256
|
+
exports.BotMessageSquareIcon = BotMessageSquareIcon;
|
|
257
|
+
exports.BrainCircuitIcon = BrainCircuitIcon;
|
|
258
|
+
exports.BrainIcon = BrainIcon;
|
|
259
|
+
exports.BriefcaseIcon = BriefcaseIcon;
|
|
260
|
+
exports.BringToFrontIcon = BringToFrontIcon;
|
|
261
|
+
exports.BrushCleaningIcon = BrushCleaningIcon;
|
|
262
|
+
exports.BugIcon = BugIcon;
|
|
263
|
+
exports.BugOffIcon = BugOffIcon;
|
|
264
|
+
exports.Building2Icon = Building2Icon;
|
|
265
|
+
exports.CSSIcon = CSSIcon;
|
|
266
|
+
exports.CSVIcon = CSVIcon;
|
|
267
|
+
exports.CarIcon = CarIcon;
|
|
268
|
+
exports.ChartColumnStackedIcon = ChartColumnStackedIcon;
|
|
269
|
+
exports.CheckCheckIcon = CheckCheckIcon;
|
|
270
|
+
exports.CheckIcon = CheckIcon;
|
|
271
|
+
exports.CheckLineIcon = CheckLineIcon;
|
|
272
|
+
exports.ChevronDownIcon = ChevronDownIcon;
|
|
273
|
+
exports.ChevronLeftIcon = ChevronLeftIcon;
|
|
274
|
+
exports.ChevronRightIcon = ChevronRightIcon;
|
|
275
|
+
exports.ChevronUpIcon = ChevronUpIcon;
|
|
276
|
+
exports.CircleAlertIcon = CircleAlertIcon;
|
|
277
|
+
exports.CircleArrowDownIcon = CircleArrowDownIcon;
|
|
278
|
+
exports.CircleArrowUpIcon = CircleArrowUpIcon;
|
|
279
|
+
exports.CircleIcon = CircleIcon;
|
|
280
|
+
exports.CircleQuestionMarkIcon = CircleQuestionMarkIcon;
|
|
281
|
+
exports.CircleSmallIcon = CircleSmallIcon;
|
|
282
|
+
exports.CircleStopIcon = CircleStopIcon;
|
|
283
|
+
exports.ClerkIcon = ClerkIcon;
|
|
284
|
+
exports.CoffeeIcon = CoffeeIcon;
|
|
285
|
+
exports.CoinsIcon = CoinsIcon;
|
|
286
|
+
exports.ComponentIcon = ComponentIcon;
|
|
287
|
+
exports.CopyCheckIcon = CopyCheckIcon;
|
|
288
|
+
exports.CopyIcon = CopyIcon;
|
|
289
|
+
exports.CpuIcon = CpuIcon;
|
|
290
|
+
exports.D8Icon = D8Icon;
|
|
291
|
+
exports.DPAIcon = DPAIcon;
|
|
292
|
+
exports.DatabaseIcon = DatabaseIcon;
|
|
293
|
+
exports.DatabaseZapIcon = DatabaseZapIcon;
|
|
294
|
+
exports.DiffIcon = DiffIcon;
|
|
295
|
+
exports.DotIcon = DotIcon;
|
|
296
|
+
exports.DownloadIcon = DownloadIcon;
|
|
297
|
+
exports.EllipsisIcon = EllipsisIcon;
|
|
298
|
+
exports.EllipsisVerticalIcon = EllipsisVerticalIcon;
|
|
299
|
+
exports.ExternalLinkIcon = ExternalLinkIcon;
|
|
300
|
+
exports.EyeIcon = EyeIcon;
|
|
301
|
+
exports.EyeOffIcon = EyeOffIcon;
|
|
302
|
+
exports.FAQBIcon = FAQBIcon;
|
|
303
|
+
exports.FAQIcon = FAQIcon;
|
|
304
|
+
exports.FAQSIcon = FAQSIcon;
|
|
305
|
+
exports.FacebookIcon = FacebookIcon;
|
|
306
|
+
exports.FileDownIcon = FileDownIcon;
|
|
307
|
+
exports.FileIcon = FileIcon;
|
|
308
|
+
exports.FileInputIcon = FileInputIcon;
|
|
309
|
+
exports.FileLock2Icon = FileLock2Icon;
|
|
310
|
+
exports.FileUpIcon = FileUpIcon;
|
|
311
|
+
exports.FingerprintIcon = FingerprintIcon;
|
|
312
|
+
exports.FolderIcon = FolderIcon;
|
|
313
|
+
exports.FolderOpenIcon = FolderOpenIcon;
|
|
314
|
+
exports.GemIcon = GemIcon;
|
|
315
|
+
exports.GiftIcon = GiftIcon;
|
|
316
|
+
exports.GitHubIcon = GitHubIcon;
|
|
317
|
+
exports.GitMergeIcon = GitMergeIcon;
|
|
318
|
+
exports.GitPullRequestArrowIcon = GitPullRequestArrowIcon;
|
|
319
|
+
exports.GlobeIcon = GlobeIcon;
|
|
320
|
+
exports.GlobeLockIcon = GlobeLockIcon;
|
|
321
|
+
exports.GripIcon = GripIcon;
|
|
322
|
+
exports.GripVerticalIcon = GripVerticalIcon;
|
|
323
|
+
exports.HandHeartIcon = HandHeartIcon;
|
|
324
|
+
exports.HandshakeIcon = HandshakeIcon;
|
|
325
|
+
exports.HighlighterIcon = HighlighterIcon;
|
|
326
|
+
exports.HistoryIcon = HistoryIcon;
|
|
327
|
+
exports.HousePlusIcon = HousePlusIcon;
|
|
328
|
+
exports.HtmlIcon = HtmlIcon;
|
|
329
|
+
exports.HttpIcon = HttpIcon;
|
|
330
|
+
exports.ImageDownIcon = ImageDownIcon;
|
|
331
|
+
exports.ImageOffIcon = ImageOffIcon;
|
|
332
|
+
exports.ImageUpIcon = ImageUpIcon;
|
|
333
|
+
exports.InfinityIcon = InfinityIcon;
|
|
334
|
+
exports.InfoIcon = InfoIcon;
|
|
335
|
+
exports.ItermIcon = ItermIcon;
|
|
336
|
+
exports.JavaIcon = JavaIcon;
|
|
337
|
+
exports.JsonIcon = JsonIcon;
|
|
338
|
+
exports.KeyboardIcon = KeyboardIcon;
|
|
339
|
+
exports.LandPlotIcon = LandPlotIcon;
|
|
340
|
+
exports.LanguagesIcon = LanguagesIcon;
|
|
341
|
+
exports.LastUpdatedIcon = LastUpdatedIcon;
|
|
342
|
+
exports.LayoutIcon = LayoutIcon;
|
|
343
|
+
exports.LayoutTemplateIcon = LayoutTemplateIcon;
|
|
344
|
+
exports.LibraryIcon = LibraryIcon;
|
|
345
|
+
exports.LightbulbIcon = LightbulbIcon;
|
|
346
|
+
exports.LinkIcon = LinkIcon;
|
|
347
|
+
exports.ListTodoIcon = ListTodoIcon;
|
|
348
|
+
exports.Loader2Icon = Loader2Icon;
|
|
349
|
+
exports.LogIcon = LogIcon;
|
|
350
|
+
exports.LogInIcon = LogInIcon;
|
|
351
|
+
exports.LogOutIcon = LogOutIcon;
|
|
352
|
+
exports.MACIcon = MACIcon;
|
|
353
|
+
exports.MDXIcon = MDXIcon;
|
|
354
|
+
exports.MailIcon = MailIcon;
|
|
355
|
+
exports.MarkdownIcon = MarkdownIcon;
|
|
356
|
+
exports.MessageCircleCodeIcon = MessageCircleCodeIcon;
|
|
357
|
+
exports.MessageCircleMoreIcon = MessageCircleMoreIcon;
|
|
358
|
+
exports.MessageSquareDiffIcon = MessageSquareDiffIcon;
|
|
359
|
+
exports.MmdIcon = MmdIcon;
|
|
360
|
+
exports.MoreHorizontalIcon = MoreHorizontalIcon;
|
|
361
|
+
exports.MousePointerClickIcon = MousePointerClickIcon;
|
|
362
|
+
exports.Music4Icon = Music4Icon;
|
|
363
|
+
exports.NotepadTextIcon = NotepadTextIcon;
|
|
364
|
+
exports.PaletteIcon = PaletteIcon;
|
|
365
|
+
exports.PanelLeftIcon = PanelLeftIcon;
|
|
366
|
+
exports.PanelsTopLeftIcon = PanelsTopLeftIcon;
|
|
367
|
+
exports.PawPrintIcon = PawPrintIcon;
|
|
368
|
+
exports.PencilIcon = PencilIcon;
|
|
369
|
+
exports.PiIcon = PiIcon;
|
|
370
|
+
exports.PinIcon = PinIcon;
|
|
371
|
+
exports.PinOffIcon = PinOffIcon;
|
|
372
|
+
exports.PlusIcon = PlusIcon;
|
|
373
|
+
exports.QrCodeIcon = QrCodeIcon;
|
|
374
|
+
exports.ReceiptTextIcon = ReceiptTextIcon;
|
|
375
|
+
exports.RefreshCcwIcon = RefreshCcwIcon;
|
|
376
|
+
exports.RegexIcon = RegexIcon;
|
|
377
|
+
exports.ReplaceIcon = ReplaceIcon;
|
|
378
|
+
exports.RocketIcon = RocketIcon;
|
|
379
|
+
exports.RotateCcwIcon = RotateCcwIcon;
|
|
380
|
+
exports.RssIcon = RssIcon;
|
|
381
|
+
exports.SQLIcon = SQLIcon;
|
|
382
|
+
exports.ScaleIcon = ScaleIcon;
|
|
383
|
+
exports.ScanSearchIcon = ScanSearchIcon;
|
|
384
|
+
exports.SchemeIcon = SchemeIcon;
|
|
385
|
+
exports.SearchIcon = SearchIcon;
|
|
386
|
+
exports.SendHorizontalIcon = SendHorizontalIcon;
|
|
387
|
+
exports.SendIcon = SendIcon;
|
|
388
|
+
exports.ServerIcon = ServerIcon;
|
|
389
|
+
exports.Settings2Icon = Settings2Icon;
|
|
390
|
+
exports.SettingsIcon = SettingsIcon;
|
|
391
|
+
exports.ShareIcon = ShareIcon;
|
|
392
|
+
exports.ShieldIcon = ShieldIcon;
|
|
393
|
+
exports.ShieldUserIcon = ShieldUserIcon;
|
|
394
|
+
exports.ShoppingCartIcon = ShoppingCartIcon;
|
|
395
|
+
exports.SigmaIcon = SigmaIcon;
|
|
396
|
+
exports.SnippetsIcon = SnippetsIcon;
|
|
397
|
+
exports.SparklesIcon = SparklesIcon;
|
|
398
|
+
exports.SplinePointerIcon = SplinePointerIcon;
|
|
399
|
+
exports.SproutIcon = SproutIcon;
|
|
400
|
+
exports.SquareDashedBottomCodeIcon = SquareDashedBottomCodeIcon;
|
|
401
|
+
exports.SquareTerminalIcon = SquareTerminalIcon;
|
|
402
|
+
exports.StarIcon = StarIcon;
|
|
403
|
+
exports.SubPIcon = SubPIcon;
|
|
404
|
+
exports.T3PIcon = T3PIcon;
|
|
405
|
+
exports.TabletsIcon = TabletsIcon;
|
|
406
|
+
exports.TerminalIcon = TerminalIcon;
|
|
407
|
+
exports.TestIcon = TestIcon;
|
|
408
|
+
exports.Trash2Icon = Trash2Icon;
|
|
409
|
+
exports.TwitterIcon = TwitterIcon;
|
|
410
|
+
exports.TxtIcon = TxtIcon;
|
|
411
|
+
exports.UsbIcon = UsbIcon;
|
|
412
|
+
exports.UserRoundCheckIcon = UserRoundCheckIcon;
|
|
413
|
+
exports.Wand2Icon = Wand2Icon;
|
|
414
|
+
exports.WorkflowIcon = WorkflowIcon;
|
|
415
|
+
exports.XIcon = XIcon;
|
|
416
|
+
exports.XMLIcon = XMLIcon;
|
|
417
|
+
exports.YamlIcon = YamlIcon;
|
|
418
|
+
exports.ZapIcon = ZapIcon;
|