From 64334830d808743f806a889d7c0ee794714ce537 Mon Sep 17 00:00:00 2001 From: Gionata Mettifogo Date: Mon, 27 Nov 2023 21:03:53 +0100 Subject: [PATCH] Update README.md The readme lists the url below with uppercase L @import ('~lucide-static/font/Lucide.css'); but the file in node_modules/lucide-static/font has a lowercase L making it fail on certain loaders like the one used by Storybook on MacOS. The fix is simply to use lowercase --- packages/lucide-static/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lucide-static/README.md b/packages/lucide-static/README.md index c4c08b250e..db916433d4 100644 --- a/packages/lucide-static/README.md +++ b/packages/lucide-static/README.md @@ -135,7 +135,7 @@ and update the svg as follows ### Icon Font ```css -@import ('~lucide-static/font/Lucide.css'); +@import ('~lucide-static/font/lucide.css'); ``` ```html