Skip to content

Commit f9955c1

Browse files
committed
chore: newline
1 parent 26b3489 commit f9955c1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/react-icons/scripts/icons/rhdsIconsMicrons.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,4 @@ export default {
151151
svgPathData:
152152
'm18.8 17.21-4.41-4.41A7.906 7.906 0 0 0 16 8c0-4.41-3.59-8-8-8S0 3.59 0 8s3.59 8 8 8c1.73 0 3.42-.57 4.8-1.61l4.41 4.41c.44.44 1.15.44 1.59 0 .44-.44.44-1.15 0-1.59ZM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Z'
153153
}
154-
};
154+
};

packages/react-icons/scripts/icons/rhdsIconsSocial.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,4 @@ export default {
279279
svgPathData:
280280
'M12.68 17.92V11.6l6.07 3.17-6.07 3.15ZM26 10.5a4.82 4.82 0 0 0-.9-2.23 3.21 3.21 0 0 0-2.25-.95C19.73 7.09 15 7.09 15 7.09s-4.72 0-7.87.23a3.21 3.21 0 0 0-2.25.95A4.82 4.82 0 0 0 4 10.5a34.76 34.76 0 0 0-.22 3.64v1.71A34.76 34.76 0 0 0 4 19.49a4.82 4.82 0 0 0 .9 2.23 3.74 3.74 0 0 0 2.47 1c1.8.17 7.65.23 7.65.23s4.73 0 7.87-.24a3.17 3.17 0 0 0 2.25-1 4.82 4.82 0 0 0 .9-2.23 34.76 34.76 0 0 0 .22-3.64v-1.7A34.76 34.76 0 0 0 26 10.5Z'
281281
}
282-
};
282+
};

packages/react-icons/scripts/icons/rhdsIconsStandard.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3871,4 +3871,4 @@ export default {
38713871
svgPathData:
38723872
'M18 3.38A14.64 14.64 0 0 0 3.38 18c.8 19.4 28.44 19.4 29.25 0A14.65 14.65 0 0 0 18 3.38Zm0 28A13.39 13.39 0 0 1 4.62 18C5.36.26 30.64.26 31.38 18A13.39 13.39 0 0 1 18 31.38Z'
38733873
}
3874-
};
3874+
};

packages/react-icons/scripts/icons/rhdsIconsUI.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4103,4 +4103,4 @@ export default {
41034103
svgPathData:
41044104
'm30.707 29.293-8.552-8.552A11.942 11.942 0 0 0 25 13c0-6.617-5.383-12-12-12S1 6.383 1 13s5.383 12 12 12c2.949 0 5.649-1.074 7.741-2.845l8.552 8.552a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414ZM13 23C7.486 23 3 18.514 3 13S7.486 3 13 3s10 4.486 10 10-4.486 10-10 10Zm6-10a1 1 0 0 1-1 1H8a1 1 0 1 1 0-2h10a1 1 0 0 1 1 1Z'
41054105
}
4106-
};
4106+
};

packages/react-icons/scripts/parseRHDSIcons.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ async function processSVGs() {
189189
// Capitalize first letter, and handle special case for 'ui' -> 'UI'
190190
const capitalizedType = iconType === 'ui' ? 'UI' : iconType.charAt(0).toUpperCase() + iconType.slice(1);
191191
const outputFile = path.join(OUTPUT_DIR, `rhdsIcons${capitalizedType}.mjs`);
192-
const moduleOutput = `export default ${formatModule(iconsObject)};`;
192+
const moduleOutput = `export default ${formatModule(iconsObject)};\n`; // newline keeps the linter happy
193193
await fs.writeFile(outputFile, moduleOutput, 'utf-8');
194194
console.log(`Output written to: ${outputFile}`);
195195
}

0 commit comments

Comments
 (0)