@pluralsight/icons
Version:
Icons for Pluralsight.
10 lines (9 loc) • 399 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const iconStrings_1 = require("./generated/iconStrings");
function getIconString(name, color = 'currentColor') {
const dataPrefix = 'data:image/svg+xml;utf8,';
return (dataPrefix +
iconStrings_1.iconStrings[name].replace('currentColor', `${encodeURIComponent(color)}`));
}
exports.default = getIconString;