mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 02:51:57 +02:00
Prevent browser translation of icons in Pug pages GitOrigin-RevId: 97e4d3ba70a4c95bed2c9f52e66038911625613d
9 lines
251 B
JavaScript
9 lines
251 B
JavaScript
export default function createIcon(type) {
|
|
const icon = document.createElement('span')
|
|
icon.className = 'material-symbols'
|
|
icon.setAttribute('aria-hidden', 'true')
|
|
icon.setAttribute('translate', 'no')
|
|
icon.textContent = type
|
|
return icon
|
|
}
|