mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-28 11:00:08 +02:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
export function materialIcon(type: string) {
|
|
const icon = document.createElement('span')
|
|
icon.className = 'material-symbols'
|
|
icon.textContent = type
|
|
icon.ariaHidden = 'true'
|
|
icon.translate = false
|
|
|
|
return icon
|
|
}
|