export const icons: Record = Object.create(null); const whitespace = /[\s\t\n]+/g; const feather_icons: Record = require('../vendor/feather-icons/icons.json'); for (const [name, contents] of Object.entries(feather_icons)) { icons[name] = ` `.replace(whitespace, ' ').trim(); } Object.freeze(icons);