8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
|
import { createElement } from '../main.js'
|
||
|
|
||
|
export function Avatar(options) {
|
||
|
const element = createElement(options, 'img')
|
||
|
element.onerror = () => element.src = '/favicon.ico'
|
||
|
return element
|
||
|
}
|