From e5ee997566941e8b9448873acad559d13d413a6f Mon Sep 17 00:00:00 2001 From: Gionata Mettifogo Date: Tue, 28 Nov 2023 21:00:46 +0100 Subject: [PATCH] Update README.md (#1704) 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