We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05b6536 commit f677552Copy full SHA for f677552
lib/generate-icon-components.mjs
@@ -28,7 +28,9 @@ const promises = icons.map((svg) => {
28
await Promise.all(promises);
29
30
async function generateComponent(iconName) {
31
- const componentName = pascalCase(iconName, { mergeAmbiguousCharacters: true });
+ const componentName = pascalCase(iconName, {
32
+ mergeAmbiguousCharacters: true,
33
+ });
34
35
const iconContent = (await readFile(join(ICON_FOLDER, iconName + ".svg")))
36
.toString()
0 commit comments