db-vendo-client/parse/icon.js

15 lines
250 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
2019-08-30 19:19:31 +02:00
}
if (i.fg) res.fgColor = i.fg
if (i.bg) res.bgColor = i.bg
return res
}
2022-05-07 16:17:37 +02:00
export {
parseIcon,
}