@kamod-ch/icons 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/ATTRIBUTION.md +35 -0
  2. package/LICENSE +21 -0
  3. package/README.md +194 -0
  4. package/dist/index.d.ts +3 -0
  5. package/dist/index.js +24090 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/meta.d.ts +94 -0
  8. package/dist/meta.js +88 -0
  9. package/dist/meta.js.map +1 -0
  10. package/dist/sets/heroicons/outline/index.d.ts +652 -0
  11. package/dist/sets/heroicons/outline/index.js +8763 -0
  12. package/dist/sets/heroicons/outline/index.js.map +1 -0
  13. package/dist/sets/heroicons/solid/index.d.ts +652 -0
  14. package/dist/sets/heroicons/solid/index.js +8509 -0
  15. package/dist/sets/heroicons/solid/index.js.map +1 -0
  16. package/dist/sets/iconoir/regular/index.d.ts +2770 -0
  17. package/dist/sets/iconoir/regular/index.js +38439 -0
  18. package/dist/sets/iconoir/regular/index.js.map +1 -0
  19. package/dist/sets/iconoir/solid/index.d.ts +580 -0
  20. package/dist/sets/iconoir/solid/index.js +7663 -0
  21. package/dist/sets/iconoir/solid/index.js.map +1 -0
  22. package/dist/sets/lucide/index.d.ts +3492 -0
  23. package/dist/sets/lucide/index.js +48652 -0
  24. package/dist/sets/lucide/index.js.map +1 -0
  25. package/dist/sets/shadcn/index.d.ts +1758 -0
  26. package/dist/sets/shadcn/index.js +24090 -0
  27. package/dist/sets/shadcn/index.js.map +1 -0
  28. package/dist/sets/tabler/filled/index.d.ts +2110 -0
  29. package/dist/sets/tabler/filled/index.js +27476 -0
  30. package/dist/sets/tabler/filled/index.js.map +1 -0
  31. package/dist/sets/tabler/outline/index.d.ts +10190 -0
  32. package/dist/sets/tabler/outline/index.js +140037 -0
  33. package/dist/sets/tabler/outline/index.js.map +1 -0
  34. package/dist/types-DQL76FNw.d.ts +8 -0
  35. package/icon-sources.json +85 -0
  36. package/package.json +125 -0
package/ATTRIBUTION.md ADDED
@@ -0,0 +1,35 @@
1
+ # Attribution
2
+
3
+ `@kamod/icons` vendors SVG sources from upstream icon libraries and converts them into Preact components. The table below lists the upstream packages, versions, and licenses tracked in `icon-sources.json`.
4
+
5
+ | Set | Upstream package | Version | License | Repository |
6
+ | --- | --- | --- | --- | --- |
7
+ | shadcn | `lucide` / `lucide-static` | see `icon-sources.json` | ISC | https://github.com/lucide-icons/lucide |
8
+ | lucide | `lucide` / `lucide-static` | see `icon-sources.json` | ISC | https://github.com/lucide-icons/lucide |
9
+ | heroicons | `heroicons` / `@heroicons/react` | see `icon-sources.json` | MIT | https://github.com/tailwindlabs/heroicons |
10
+ | tabler | `@tabler/icons` | see `icon-sources.json` | MIT | https://github.com/tabler/tabler-icons |
11
+ | iconoir | `iconoir` | see `icon-sources.json` | MIT | https://github.com/iconoir-icons/iconoir |
12
+
13
+ ## shadcn/ui note
14
+
15
+ There is no separate npm package called "shadcn icons". The `@kamod/icons/shadcn` set is a Lucide-based subset with legacy icon names commonly used in shadcn/ui projects.
16
+
17
+ ## Sync workflow
18
+
19
+ Upstream SVGs are copied into `raw/<set>/` with:
20
+
21
+ ```bash
22
+ npm run icons:sync
23
+ npm run icons:generate
24
+ npm run build
25
+ ```
26
+
27
+ Programmatic access to the tracked metadata:
28
+
29
+ ```ts
30
+ import { iconSources } from "@kamod/icons/meta";
31
+ ```
32
+
33
+ ## License
34
+
35
+ The `@kamod/icons` package code is part of the Kamod project. Upstream icon libraries remain under their respective licenses listed above.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Klaus Zahiragic, Kamod GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,194 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/kamod-ch/kamod-icons/main/.github/assets/logo-kamod-icons-dark.svg" alt="Kamod Icons" width="280" />
3
+ </p>
4
+
5
+ <p align="center">
6
+ <a href="https://www.npmjs.com/package/@kamod/icons"><img src="https://img.shields.io/npm/v/@kamod/icons" alt="npm version" /></a>
7
+ <a href="https://github.com/kamod-ch/kamod-icons/actions/workflows/gh-pages.yml"><img src="https://github.com/kamod-ch/kamod-icons/actions/workflows/gh-pages.yml/badge.svg" alt="Docs deploy" /></a>
8
+ <a href="https://github.com/kamod-ch/kamod-icons/stargazers"><img src="https://img.shields.io/github/stars/kamod-ch/kamod-icons?style=social" alt="GitHub stars" /></a>
9
+ <a href="https://github.com/kamod-ch/kamod-icons/blob/main/packages/icons/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT license" /></a>
10
+ </p>
11
+
12
+ <p align="center">
13
+ <strong><a href="https://kamod-ch.github.io/kamod-icons/">Docs</a></strong> ·
14
+ <strong><a href="https://www.npmjs.com/package/@kamod/icons">npm</a></strong> ·
15
+ <strong><a href="https://github.com/kamod-ch/kamod-icons">GitHub</a></strong> ·
16
+ <strong><a href="https://github.com/kamod-ch/kamod-icons/issues">Issues</a></strong>
17
+ </p>
18
+
19
+ # @kamod/icons
20
+
21
+ Tree-shakeable Preact icon components for Kamod. The package contains multiple independent icon sets (`shadcn`, `lucide`, `heroicons`, `tabler`, `iconoir`) via stable subpath exports.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ npm install @kamod/icons preact
27
+ ```
28
+
29
+ `preact` is a peer dependency. There is no React runtime dependency.
30
+
31
+ ## Usage
32
+
33
+ ### Default set
34
+
35
+ The root export currently points to the `shadcn` set:
36
+
37
+ ```tsx
38
+ import { SearchIcon } from "@kamod/icons";
39
+
40
+ export function Example() {
41
+ return <SearchIcon size={20} />;
42
+ }
43
+ ```
44
+
45
+ ### Explicit icon set
46
+
47
+ ```tsx
48
+ import { SearchIcon } from "@kamod/icons/shadcn";
49
+ import { SearchIcon as LucideSearchIcon } from "@kamod/icons/lucide";
50
+ ```
51
+
52
+ ### Heroicons (outline and solid)
53
+
54
+ Heroicons are split into separate subpath exports, matching the upstream `outline` / `solid` layout:
55
+
56
+ ```tsx
57
+ import { MagnifyingGlassIcon } from "@kamod/icons/heroicons/outline";
58
+ import { MagnifyingGlassIcon as MagnifyingGlassSolidIcon } from "@kamod/icons/heroicons/solid";
59
+ ```
60
+
61
+ Raw SVGs live in variant subfolders:
62
+
63
+ ```txt
64
+ raw/heroicons/outline/magnifying-glass.svg
65
+ raw/heroicons/solid/magnifying-glass.svg
66
+ ```
67
+
68
+ ### Tabler (outline and filled)
69
+
70
+ ```tsx
71
+ import { SearchIcon } from "@kamod/icons/tabler/outline";
72
+ import { SearchIcon as SearchFilledIcon } from "@kamod/icons/tabler/filled";
73
+ ```
74
+
75
+ Raw SVGs:
76
+
77
+ ```txt
78
+ raw/tabler/outline/search.svg
79
+ raw/tabler/filled/search.svg
80
+ ```
81
+
82
+ ### Iconoir (regular and solid)
83
+
84
+ ```tsx
85
+ import { SearchIcon } from "@kamod/icons/iconoir/regular";
86
+ import { AlarmIcon as AlarmSolidIcon } from "@kamod/icons/iconoir/solid";
87
+ ```
88
+
89
+ Raw SVGs:
90
+
91
+ ```txt
92
+ raw/iconoir/regular/search.svg
93
+ raw/iconoir/solid/alarm.svg
94
+ ```
95
+
96
+ ### Tailwind classes
97
+
98
+ ```tsx
99
+ import { SearchIcon } from "@kamod/icons/shadcn";
100
+
101
+ export function Example() {
102
+ return (
103
+ <button class="inline-flex items-center gap-2">
104
+ <SearchIcon class="h-4 w-4 text-muted-foreground" />
105
+ Search
106
+ </button>
107
+ );
108
+ }
109
+ ```
110
+
111
+ ### Accessibility title
112
+
113
+ Without `title`, icons are rendered with `aria-hidden`. Provide `title` for meaningful standalone icons:
114
+
115
+ ```tsx
116
+ <SearchIcon title="Search" class="h-5 w-5" />
117
+ ```
118
+
119
+ All icons use `currentColor`, accept `class`, `style`, `size`, `title`, and normal SVG props. `size` sets both `width` and `height`.
120
+
121
+ ## Adding new Figma SVGs
122
+
123
+ 1. Export SVGs from Figma.
124
+ 2. Put them into the matching raw folder, for example:
125
+
126
+ ```txt
127
+ raw/shadcn/search.svg
128
+ raw/shadcn/calendar-days.svg
129
+ ```
130
+
131
+ 3. Generate components:
132
+
133
+ ```bash
134
+ npm run icons:generate
135
+ ```
136
+
137
+ Or generate one set only:
138
+
139
+ ```bash
140
+ npm run icons:generate -- --set shadcn
141
+ ```
142
+
143
+ 4. Build the package:
144
+
145
+ ```bash
146
+ npm run build
147
+ ```
148
+
149
+ File names are converted to PascalCase with an `Icon` suffix, e.g. `arrow-left.svg` becomes `ArrowLeftIcon`.
150
+
151
+ ## Adding another icon set
152
+
153
+ The package already contains raw and source folders plus subpath exports for:
154
+
155
+ - `shadcn`
156
+ - `lucide`
157
+ - `heroicons`
158
+ - `tabler`
159
+ - `iconoir`
160
+
161
+ To add icons to one of these sets, place SVG files in `raw/<set-name>/` and run the generator. Heroicons use variant subfolders (`raw/heroicons/outline/`, `raw/heroicons/solid/`) and export via `@kamod/icons/heroicons/outline` and `@kamod/icons/heroicons/solid`. Tabler uses `outline` / `filled`; Iconoir uses `regular` / `solid`. To add a brand-new set later, add:
162
+
163
+ 1. `raw/<set-name>/`
164
+ 2. `src/sets/<set-name>/index.ts`
165
+ 3. a matching subpath export in `package.json`
166
+ 4. an entry in `tsup.config.ts`
167
+
168
+ Keep set-specific imports to avoid naming conflicts between icon sets.
169
+
170
+ ## Icon sources
171
+
172
+ Each bundled set tracks its upstream npm package in `icon-sources.json`. Sync raw SVGs from upstream, regenerate components, then build:
173
+
174
+ ```bash
175
+ npm run icons:sync
176
+ npm run icons:generate
177
+ npm run build
178
+ ```
179
+
180
+ Sync one set only:
181
+
182
+ ```bash
183
+ npm run icons:sync -- --set heroicons
184
+ ```
185
+
186
+ Read tracked metadata at runtime:
187
+
188
+ ```tsx
189
+ import { iconSources } from "@kamod/icons/meta";
190
+
191
+ console.log(iconSources.heroicons.upstream.version);
192
+ ```
193
+
194
+ See `ATTRIBUTION.md` for upstream licenses and repositories.
@@ -0,0 +1,3 @@
1
+ export { AccessibilityIcon, ActivityIcon, AirVentIcon, AirplayIcon, AlarmCheckIcon, AlarmClockIcon, AlarmClockOffIcon, AlarmMinusIcon, AlarmPlusIcon, AlbumIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterHorizontalIcon, AlignCenterIcon, AlignCenterVerticalIcon, AlignEndHorizontalIcon, AlignEndVerticalIcon, AlignHorizontalDistributeCenterIcon, AlignHorizontalDistributeEndIcon, AlignHorizontalDistributeStartIcon, AlignHorizontalJustifyCenterIcon, AlignHorizontalJustifyEndIcon, AlignHorizontalJustifyStartIcon, AlignHorizontalSpaceAroundIcon, AlignHorizontalSpaceBetweenIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AlignStartHorizontalIcon, AlignStartVerticalIcon, AlignVerticalDistributeCenterIcon, AlignVerticalDistributeEndIcon, AlignVerticalDistributeStartIcon, AlignVerticalJustifyCenterIcon, AlignVerticalJustifyEndIcon, AlignVerticalJustifyStartIcon, AlignVerticalSpaceAroundIcon, AlignVerticalSpaceBetweenIcon, AnchorIcon, AngryIcon, AnnoyedIcon, ApertureIcon, AppleIcon, ArchiveIcon, ArchiveRestoreIcon, ArmchairIcon, ArrowBigDownIcon, ArrowBigLeftIcon, ArrowBigRightIcon, ArrowBigUpIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowLeftRightIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpDownIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AsteriskIcon, AtSignIcon, AwardIcon, AxeIcon, Axis3dIcon, BabyIcon, BackpackIcon, BaggageClaimIcon, BananaIcon, BanknoteIcon, BarChart2Icon, BarChart3Icon, BarChart4Icon, BarChartHorizontalIcon, BarChartIcon, BaselineIcon, BathIcon, BatteryChargingIcon, BatteryFullIcon, BatteryIcon, BatteryLowIcon, BatteryMediumIcon, BatteryWarningIcon, BeakerIcon, BeanIcon, BeanOffIcon, BedDoubleIcon, BedIcon, BedSingleIcon, BeefIcon, BeerIcon, BellIcon, BellMinusIcon, BellOffIcon, BellPlusIcon, BellRingIcon, BikeIcon, BinaryIcon, BitcoinIcon, BluetoothConnectedIcon, BluetoothIcon, BluetoothOffIcon, BluetoothSearchingIcon, BoldIcon, BombIcon, BoneIcon, BookIcon, BookOpenCheckIcon, BookOpenIcon, BookmarkIcon, BookmarkMinusIcon, BookmarkPlusIcon, BotIcon, BoxIcon, BoxSelectIcon, BoxesIcon, BriefcaseIcon, BrushIcon, BugIcon, Building2Icon, BuildingIcon, BusIcon, CakeIcon, CalculatorIcon, CalendarCheck2Icon, CalendarCheckIcon, CalendarClockIcon, CalendarDaysIcon, CalendarHeartIcon, CalendarIcon, CalendarMinusIcon, CalendarOffIcon, CalendarPlusIcon, CalendarRangeIcon, CalendarSearchIcon, CalendarX2Icon, CalendarXIcon, CameraIcon, CameraOffIcon, CandyIcon, CandyOffIcon, CarIcon, CarrotIcon, CastIcon, CatIcon, CheckCheckIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChefHatIcon, CherryIcon, ChevronDownIcon, ChevronFirstIcon, ChevronLastIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsDownUpIcon, ChevronsLeftIcon, ChevronsLeftRightIcon, ChevronsRightIcon, ChevronsRightLeftIcon, ChevronsUpDownIcon, ChevronsUpIcon, ChromeIcon, CigaretteIcon, CigaretteOffIcon, CircleDotIcon, CircleEllipsisIcon, CircleIcon, CircleSlashedIcon, CitrusIcon, ClapperboardIcon, ClipboardCheckIcon, ClipboardCopyIcon, ClipboardEditIcon, ClipboardIcon, ClipboardListIcon, ClipboardSignatureIcon, ClipboardTypeIcon, ClipboardXIcon, Clock10Icon, Clock11Icon, Clock12Icon, Clock1Icon, Clock2Icon, Clock3Icon, Clock4Icon, Clock5Icon, Clock6Icon, Clock7Icon, Clock8Icon, Clock9Icon, ClockIcon, CloudCogIcon, CloudDrizzleIcon, CloudFogIcon, CloudHailIcon, CloudIcon, CloudLightningIcon, CloudMoonIcon, CloudMoonRainIcon, CloudOffIcon, CloudRainIcon, CloudRainWindIcon, CloudSnowIcon, CloudSunIcon, CloudSunRainIcon, CloudyIcon, CloverIcon, Code2Icon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, CogIcon, CoinsIcon, ColumnsIcon, CommandIcon, CompassIcon, ComponentIcon, ConciergeBellIcon, ContactIcon, ContrastIcon, CookieIcon, CopyIcon, CopyleftIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CroissantIcon, CropIcon, CrossIcon, CrosshairIcon, CrownIcon, CupSodaIcon, CurlyBracesIcon, CurrencyIcon, DatabaseBackupIcon, DatabaseIcon, DeleteIcon, DiamondIcon, Dice1Icon, Dice2Icon, Dice3Icon, Dice4Icon, Dice5Icon, Dice6Icon, DicesIcon, DiffIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DnaIcon, DnaOffIcon, DogIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, DropletsIcon, DrumstickIcon, DumbbellIcon, EarIcon, EarOffIcon, Edit2Icon, Edit3Icon, EditIcon, EggFriedIcon, EggIcon, EggOffIcon, EqualIcon, EqualNotIcon, EraserIcon, EuroIcon, ExpandIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FactoryIcon, FanIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileArchiveIcon, FileAudio2Icon, FileAudioIcon, FileAxis3dIcon, FileBadge2Icon, FileBadgeIcon, FileBarChart2Icon, FileBarChartIcon, FileBoxIcon, FileCheck2Icon, FileCheckIcon, FileClockIcon, FileCodeIcon, FileCog2Icon, FileCogIcon, FileDiffIcon, FileDigitIcon, FileDownIcon, FileEditIcon, FileHeartIcon, FileIcon, FileImageIcon, FileInputIcon, FileJson2Icon, FileJsonIcon, FileKey2Icon, FileKeyIcon, FileLineChartIcon, FileLock2Icon, FileLockIcon, FileMinus2Icon, FileMinusIcon, FileOutputIcon, FilePieChartIcon, FilePlus2Icon, FilePlusIcon, FileQuestionIcon, FileScanIcon, FileSearch2Icon, FileSearchIcon, FileSignatureIcon, FileSpreadsheetIcon, FileSymlinkIcon, FileTerminalIcon, FileTextIcon, FileType2Icon, FileTypeIcon, FileUpIcon, FileVideo2Icon, FileVideoIcon, FileVolume2Icon, FileVolumeIcon, FileWarningIcon, FileX2Icon, FileXIcon, FilesIcon, FilmIcon, FilterIcon, FingerprintIcon, FishIcon, FlagIcon, FlagOffIcon, FlagTriangleLeftIcon, FlagTriangleRightIcon, FlameIcon, FlashlightIcon, FlashlightOffIcon, FlaskConicalIcon, FlaskConicalOffIcon, FlaskRoundIcon, FlipHorizontal2Icon, FlipHorizontalIcon, FlipVertical2Icon, FlipVerticalIcon, Flower2Icon, FlowerIcon, FocusIcon, FolderArchiveIcon, FolderCheckIcon, FolderClockIcon, FolderClosedIcon, FolderCog2Icon, FolderCogIcon, FolderDownIcon, FolderEditIcon, FolderHeartIcon, FolderIcon, FolderInputIcon, FolderKeyIcon, FolderLockIcon, FolderMinusIcon, FolderOpenIcon, FolderOutputIcon, FolderPlusIcon, FolderSearch2Icon, FolderSearchIcon, FolderSymlinkIcon, FolderTreeIcon, FolderUpIcon, FolderXIcon, FoldersIcon, FormInputIcon, ForwardIcon, FrameIcon, FramerIcon, FrownIcon, FuelIcon, FunctionSquareIcon, Gamepad2Icon, GamepadIcon, GaugeIcon, GavelIcon, GemIcon, GhostIcon, GiftIcon, GitBranchIcon, GitBranchPlusIcon, GitCommitIcon, GitCompareIcon, GitForkIcon, GitMergeIcon, GitPullRequestClosedIcon, GitPullRequestDraftIcon, GitPullRequestIcon, GithubIcon, GitlabIcon, GlassWaterIcon, GlassesIcon, Globe2Icon, GlobeIcon, GrabIcon, GraduationCapIcon, GrapeIcon, GridIcon, GripHorizontalIcon, GripVerticalIcon, HammerIcon, HandIcon, HandMetalIcon, HardDriveIcon, HardHatIcon, HashIcon, HazeIcon, Heading1Icon, Heading2Icon, Heading3Icon, Heading4Icon, Heading5Icon, Heading6Icon, HeadingIcon, HeadphonesIcon, HeartCrackIcon, HeartHandshakeIcon, HeartIcon, HeartOffIcon, HeartPulseIcon, HelpCircleIcon, HexagonIcon, HighlighterIcon, HistoryIcon, HomeIcon, HopIcon, HopOffIcon, HourglassIcon, IceCream2Icon, IceCreamIcon, ImageIcon, ImageMinusIcon, ImageOffIcon, ImagePlusIcon, ImportIcon, InboxIcon, IndentIcon, IndianRupeeIcon, InfinityIcon, InfoIcon, InspectIcon, InstagramIcon, ItalicIcon, JapaneseYenIcon, JoystickIcon, KeyIcon, KeyboardIcon, LampCeilingIcon, LampDeskIcon, LampFloorIcon, LampIcon, LampWallDownIcon, LampWallUpIcon, LandmarkIcon, LanguagesIcon, Laptop2Icon, LaptopIcon, LassoIcon, LassoSelectIcon, LaughIcon, LayersIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutIcon, LayoutListIcon, LayoutTemplateIcon, LeafIcon, LibraryIcon, LifeBuoyIcon, LightbulbIcon, LightbulbOffIcon, LineChartIcon, Link2Icon, Link2OffIcon, LinkIcon, LinkedinIcon, ListChecksIcon, ListEndIcon, ListIcon, ListMinusIcon, ListMusicIcon, ListOrderedIcon, ListPlusIcon, ListStartIcon, ListVideoIcon, ListXIcon, Loader2Icon, LoaderIcon, LocateFixedIcon, LocateIcon, LocateOffIcon, LockIcon, LogInIcon, LogOutIcon, LuggageIcon, MagnetIcon, MailCheckIcon, MailIcon, MailMinusIcon, MailOpenIcon, MailPlusIcon, MailQuestionIcon, MailSearchIcon, MailWarningIcon, MailXIcon, MailsIcon, MapIcon, MapPinIcon, MapPinOffIcon, MartiniIcon, Maximize2Icon, MaximizeIcon, MedalIcon, MegaphoneIcon, MegaphoneOffIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, Mic2Icon, MicIcon, MicOffIcon, MicroscopeIcon, MicrowaveIcon, MilestoneIcon, MilkIcon, MilkOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MonitorOffIcon, MonitorSmartphoneIcon, MonitorSpeakerIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MountainIcon, MountainSnowIcon, MouseIcon, MousePointer2Icon, MousePointerClickIcon, MousePointerIcon, Move3dIcon, MoveDiagonal2Icon, MoveDiagonalIcon, MoveHorizontalIcon, MoveIcon, MoveVerticalIcon, Music2Icon, Music3Icon, Music4Icon, MusicIcon, Navigation2Icon, Navigation2OffIcon, NavigationIcon, NavigationOffIcon, NetworkIcon, NewspaperIcon, NutIcon, NutOffIcon, OctagonIcon, OptionIcon, OutdentIcon, Package2Icon, PackageCheckIcon, PackageIcon, PackageMinusIcon, PackageOpenIcon, PackagePlusIcon, PackageSearchIcon, PackageXIcon, PaintBucketIcon, Paintbrush2Icon, PaintbrushIcon, PaletteIcon, PalmtreeIcon, PaperclipIcon, PartyPopperIcon, PauseCircleIcon, PauseIcon, PauseOctagonIcon, PenToolIcon, PencilIcon, PercentIcon, PersonStandingIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PiggyBankIcon, PilcrowIcon, PinIcon, PinOffIcon, PipetteIcon, PizzaIcon, PlaneIcon, PlayCircleIcon, PlayIcon, Plug2Icon, PlugIcon, PlugZapIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PodcastIcon, PointerIcon, PoundSterlingIcon, PowerIcon, PowerOffIcon, PrinterIcon, PuzzleIcon, QrCodeIcon, QuoteIcon, RadioIcon, RadioReceiverIcon, RectangleHorizontalIcon, RectangleVerticalIcon, RecycleIcon, Redo2Icon, RedoIcon, RefreshCcwIcon, RefreshCwIcon, RefrigeratorIcon, RegexIcon, Repeat1Icon, RepeatIcon, ReplyAllIcon, ReplyIcon, RewindIcon, RocketIcon, RockingChairIcon, Rotate3dIcon, RotateCcwIcon, RotateCwIcon, RssIcon, RulerIcon, RussianRubleIcon, SailboatIcon, SaladIcon, SandwichIcon, SaveIcon, Scale3dIcon, ScaleIcon, ScalingIcon, ScanFaceIcon, ScanIcon, ScanLineIcon, ScissorsIcon, ScreenShareIcon, ScreenShareOffIcon, ScrollIcon, SearchIcon, SendIcon, SeparatorHorizontalIcon, SeparatorVerticalIcon, ServerCogIcon, ServerCrashIcon, ServerIcon, ServerOffIcon, Settings2Icon, SettingsIcon, Share2Icon, ShareIcon, SheetIcon, ShieldAlertIcon, ShieldCheckIcon, ShieldCloseIcon, ShieldIcon, ShieldOffIcon, ShirtIcon, ShoppingBagIcon, ShoppingCartIcon, ShovelIcon, ShowerHeadIcon, ShrinkIcon, ShrubIcon, ShuffleIcon, SidebarCloseIcon, SidebarIcon, SidebarOpenIcon, SigmaIcon, SignalHighIcon, SignalIcon, SignalLowIcon, SignalMediumIcon, SignalZeroIcon, SirenIcon, SkipBackIcon, SkipForwardIcon, SkullIcon, SlackIcon, SlashIcon, SliceIcon, SlidersHorizontalIcon, SlidersIcon, SmartphoneChargingIcon, SmartphoneIcon, SmileIcon, SmilePlusIcon, SnowflakeIcon, SofaIcon, SortAscIcon, SortDescIcon, SoupIcon, SpeakerIcon, SplineIcon, SproutIcon, SquareIcon, StarHalfIcon, StarIcon, StarOffIcon, StethoscopeIcon, StickerIcon, StickyNoteIcon, StopCircleIcon, StretchHorizontalIcon, StretchVerticalIcon, StrikethroughIcon, SubscriptIcon, SubtitlesIcon, SunDimIcon, SunIcon, SunMediumIcon, SunMoonIcon, SunSnowIcon, SunriseIcon, SunsetIcon, SuperscriptIcon, SwissFrancIcon, SwitchCameraIcon, SwordIcon, SwordsIcon, SyringeIcon, Table2Icon, TableIcon, TabletIcon, TagIcon, TagsIcon, TargetIcon, TentIcon, TerminalIcon, TerminalSquareIcon, TextCursorIcon, TextCursorInputIcon, ThermometerIcon, ThermometerSnowflakeIcon, ThermometerSunIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, TimerIcon, TimerOffIcon, TimerResetIcon, ToggleLeftIcon, ToggleRightIcon, TornadoIcon, ToyBrickIcon, TrainIcon, Trash2Icon, TrashIcon, TreeDeciduousIcon, TreePineIcon, TreesIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrophyIcon, TruckIcon, Tv2Icon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, Undo2Icon, UndoIcon, Unlink2Icon, UnlinkIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UsbIcon, UserCheckIcon, UserCogIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, UtensilsCrossedIcon, UtensilsIcon, VeganIcon, VenetianMaskIcon, VerifiedIcon, VibrateIcon, VibrateOffIcon, VideoIcon, VideoOffIcon, ViewIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WalletIcon, Wand2Icon, WandIcon, WatchIcon, WavesIcon, WebcamIcon, WebhookIcon, WheatIcon, WheatOffIcon, WifiIcon, WifiOffIcon, WindIcon, WineIcon, WineOffIcon, WrapTextIcon, WrenchIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from './sets/shadcn/index.js';
2
+ export { I as IconProps } from './types-DQL76FNw.js';
3
+ import 'preact';