Last active
March 13, 2022 17:21
-
-
Save LeoVerto/f3cd2b86eac877d6a994b98bf38639ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ICON = { | |
jellyfin: "M12 1.09375 C 9.113281 1.09375 -0.179688 17.941406 1.238281 20.785156 C 2.65625 23.632812 21.363281 23.597656 22.765625 20.785156 C 24.167969 17.972656 14.886719 1.09375 12 1.09375 Z M 19.05>" | |
}; | |
async function getIcon(name) { | |
return { | |
path: ICON[name], | |
viewBox: "0 0 24 24" | |
}; | |
}; | |
window.customIconsets = window.customIconsets || {}; | |
window.customIconsets['custom'] = getIcon; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment