Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
255 Bytes
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`;
};