Skip to content

Commit

Permalink
fix: update SVG generation to join lines with newline character
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkpatchaa committed Jan 24, 2025
1 parent 02999cb commit 455a8c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/generate-svg.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const generateIndexFile = () => {
icon
)}';`
)
.join('');
.join('\n');

const fileContent = `/* GENERATED FILE */
export { type Icon, type IconProps, IconContext, type IconWeight } from './lib';
Expand Down

0 comments on commit 455a8c3

Please sign in to comment.