simple-icons/scripts/build/templates/index.js
2022-05-26 23:18:44 -07:00

13 lines
387 B
JavaScript

console.warn('Deprecation warning: The `simple-icons` entrypoint will be removed in the next major. Please switch to using `import * as icons from "simple-icons/icons"` if you need an object with all the icons.')
var icons = {%s};
Object.defineProperty(icons, "Get", {
enumerable: false,
value: function(targetName) {
return icons[targetName];
}
});
module.exports = icons;