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!
This commit is contained in:
Christoph Geschwind 2022-02-09 12:55:56 +01:00 committed by GitHub
parent 65f4bdb502
commit e8816b3c7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
exports.aliases = source.aliases;