Skip to content

Commit f677552

Browse files
committed
prettier
1 parent 05b6536 commit f677552

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/generate-icon-components.mjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ const promises = icons.map((svg) => {
2828
await Promise.all(promises);
2929

3030
async function generateComponent(iconName) {
31-
const componentName = pascalCase(iconName, { mergeAmbiguousCharacters: true });
31+
const componentName = pascalCase(iconName, {
32+
mergeAmbiguousCharacters: true,
33+
});
3234

3335
const iconContent = (await readFile(join(ICON_FOLDER, iconName + ".svg")))
3436
.toString()

0 commit comments

Comments
 (0)