From e8816b3c7c18084ec4352021272975de77a1e8a0 Mon Sep 17 00:00:00 2001 From: Christoph Geschwind Date: Wed, 9 Feb 2022 12:55:56 +0100 Subject: [PATCH] Thumbtack.js export name regression v5 -> v6 Comparing https://unpkg.com/@fortawesome/free-solid-svg-icons@6.0.0/faThumbtack.js and https://unpkg.com/@fortawesome/free-solid-svg-icons@5.15.4/faThumbtack.js one can see that the export name was changed from "Thumbtack" to "ThumbTack". This unfortunately makes the icon not importable with the babel macro. The correct export name is "Thumbtack" as in v5. Same issue in the pro package, which I am looking at right now. Cheers! --- js-packages/@fortawesome/free-solid-svg-icons/faThumbtack.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js-packages/@fortawesome/free-solid-svg-icons/faThumbtack.js b/js-packages/@fortawesome/free-solid-svg-icons/faThumbtack.js index 7b7f7cf71..2005a7b8f 100644 --- a/js-packages/@fortawesome/free-solid-svg-icons/faThumbtack.js +++ b/js-packages/@fortawesome/free-solid-svg-icons/faThumbtack.js @@ -12,7 +12,7 @@ exports.definition = { source.svgPathData ]}; -exports.faThumbTack = exports.definition; +exports.faThumbtack = exports.definition; exports.prefix = source.prefix; exports.iconName = source.iconName; exports.width = source.width; @@ -20,4 +20,4 @@ exports.height = source.height; exports.ligatures = source.aliases; exports.unicode = source.unicode; exports.svgPathData = source.svgPathData; -exports.aliases = source.aliases; \ No newline at end of file +exports.aliases = source.aliases;