Skip to content

Instantly share code, notes, and snippets.

@franky47
Created February 16, 2021 14:16
Show Gist options
  • Save franky47/64e2fb647d03d503c85ebd420ba350ab to your computer and use it in GitHub Desktop.
Save franky47/64e2fb647d03d503c85ebd420ba350ab to your computer and use it in GitHub Desktop.
Emoji Favicon with badge
import React from 'react'
export interface EmojiFaviconProps {
emoji: string
badgeEmoji?: string
}
export const EmojiFavicon: React.FC<EmojiFaviconProps> = ({ emoji, badgeEmoji }) => {
const inlineSvg = React.useMemo(() => {
return `
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100">
<text y=".9em" font-size="90">${emoji}</text>
${
badgeEmoji
? `<text x="1.5em" y="2.5em" font-size="35">${badgeEmoji}</text>`
: ''
}
</svg>
`
.replace(/\"/g, '%22')
.split('\n')
.map(line => line.trim())
.join('')
}, [emoji, badgeEmoji])
return <link rel="icon" href={`data:image/svg+xml,${inlineSvg}`} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment