This commit is contained in:
2025-08-09 03:38:22 +02:00
parent b677b5f711
commit 679427a6f9
280 changed files with 12578 additions and 47 deletions

View File

@@ -0,0 +1,12 @@
const fs = require('fs');
const path = require('path');
const iconsDir = __dirname;
fs.readdirSync(iconsDir).forEach(file => {
if (file.endsWith('.svg')) {
const filePath = path.join(iconsDir, file);
let content = fs.readFileSync(filePath, 'utf8');
content = content.replace(/stroke="#[0-9a-fA-F]{3,6}"/g, 'stroke="currentColor"');
fs.writeFileSync(filePath, content, 'utf8');
}
});