qwicons 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,16 @@
1
+ MIT License 2026
2
+
3
+ Copyright (c) 2026 Xiaofan Wu
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10
+
11
+ ---
12
+
13
+ Icons are taken from other projects. Please check each individual license for usage:
14
+
15
+ Lucide: ISC
16
+ https://github.com/lucide-icons/lucide/blob/main/LICENSE
package/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Qwik Icons
2
+
3
+ Include lucide icons easily in your Qwik projects with `qwicons` 🚀
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm i qwicons
9
+ yarn add qwicons
10
+ pnpm add qwicons
11
+ bun add qwicons
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```tsx
17
+ import { LuRocket } from "qwicons/lucide";
18
+
19
+ export const MyComponent = component$(() => {
20
+ // Icon size and color are inherited by default ⬇️
21
+ return (
22
+ <div style={{ color: "red", fontSize: "40px" }}>
23
+ <LuRocket />
24
+ </div>
25
+ );
26
+ });
27
+ ```
28
+
29
+ ## Available Libraries
30
+
31
+ ```tsx
32
+ import { LuRocket } from "qwicons/lucide";
33
+ ```
34
+
35
+ > **Missing a library?** Feel free to [open an issue](https://github.com/xiaofan2406/qwicons/issues/new) 🤝
@@ -0,0 +1 @@
1
+ export * from "./utils/index";
File without changes
File without changes