db-vendo-client/parse/icon.js

21 lines
279 B
JavaScript
Raw Permalink Normal View History

const parseIcon = (ctx, i) => {
if (i.res === 'Empty') {
return null;
}
2019-08-30 19:19:31 +02:00
const res = {
type: i.res || null,
title: i.text || i.txt || i.txtS || null,
};
if (i.fg) {
res.fgColor = i.fg;
}
if (i.bg) {
res.bgColor = i.bg;
2019-08-30 19:19:31 +02:00
}
return res;
};
2019-08-30 19:19:31 +02:00
2022-05-07 16:17:37 +02:00
export {
parseIcon,
};