import fs from 'fs'
import path from 'path'
import * as simpleIcons from 'simple-icons'
import { icons as featherIcons } from 'feather-icons'
const icons = {};
for (const key in featherIcons) {
const icon = featherIcons[key]
icons[icon.name] = ``
}
for (const key in simpleIcons) {
const icon = simpleIcons[key]
icons['brand-' + icon.slug] = ``
}
fs.writeFileSync(
path.join(import.meta.dirname, '../../data/m10c/icons.json'),
JSON.stringify(icons, null, 2),
'utf8',
)