File size: 255 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 |
export const getLogo = (tag) => {
if (tag.isCustomTag) {
return '#';
}
if (tag.logo) {
return tag.logo;
}
return `https://raw.githubusercontent.com/devicons/devicon/master/icons/${tag.tagName}/${tag.tagName}-original.svg`;
};
|