21 lines
286 B
JavaScript
21 lines
286 B
JavaScript
|
|
import document from '/unify/document.js';
|
|
|
|
var icon_id = 0;
|
|
|
|
export default class image{
|
|
|
|
customElement = document.createElement("img");
|
|
|
|
useCustomElement = true;
|
|
|
|
id = icon_id++;
|
|
|
|
setImage( path ) {
|
|
|
|
this.customElement.setAttribute("src", path)
|
|
|
|
}
|
|
|
|
}
|