vueless 1.2.3-beta.12 → 1.2.3-beta.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.2.3-beta.12",
3
+ "version": "1.2.3-beta.13",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -337,6 +337,10 @@ function getIconLibraryPaths(name, library) {
337
337
  sourcePath = path.join(cwd(), NODE_MODULES_DIR, library, "24", fillVariant, `${iconName}.svg`);
338
338
  }
339
339
 
340
+ if (library === "lucide-static") {
341
+ sourcePath = path.join(cwd(), NODE_MODULES_DIR, library, "icons", `${name}.svg`);
342
+ }
343
+
340
344
  if (library === "custom-icons") {
341
345
  sourcePath = path.join(cwd(), uIconDefaults.path, `${name}.svg`);
342
346
  }