Skip to content

Commit 455a8c3

Browse files
committed
fix: update SVG generation to join lines with newline character
1 parent 02999cb commit 455a8c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/generate-svg.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ const generateIndexFile = () => {
175175
icon
176176
)}';`
177177
)
178-
.join('');
178+
.join('\n');
179179

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

0 commit comments

Comments
 (0)