Replace material-icons in YearInReview components

This commit is contained in:
Greg Lorenzen 2024-07-08 22:29:20 +00:00
parent a76600e53b
commit 0fc84a8684
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ export default {
const addIcon = (icon, color, fontSize, x, y) => {
ctx.fillStyle = color
ctx.font = `${fontSize} Material Icons Outlined`
ctx.font = `${fontSize} Material Symbols Outlined`
ctx.fillText(icon, x, y)
}

View File

@ -64,7 +64,7 @@ export default {
const addIcon = (icon, color, fontSize, x, y) => {
ctx.fillStyle = color
ctx.font = `${fontSize} Material Icons Outlined`
ctx.font = `${fontSize} Material Symbols Outlined`
ctx.fillText(icon, x, y)
}