Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Windvis committed Mar 19, 2024
1 parent 05b6536 commit f677552
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/generate-icon-components.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ const promises = icons.map((svg) => {
await Promise.all(promises);

async function generateComponent(iconName) {
const componentName = pascalCase(iconName, { mergeAmbiguousCharacters: true });
const componentName = pascalCase(iconName, {
mergeAmbiguousCharacters: true,
});

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

0 comments on commit f677552

Please sign in to comment.