| 12345678910111213141516 |
- import { types } from "assets/types.js";
- import { icon } from "interface/icon.js";
- class material_icon extends icon {
- constructor(which, name = undefined) {
- types.check_string(which);
- const target = document.createElement("span");
- target.classList.add("meterial-symbols-outlined");
- target.innerText = which;
- super(target, "material-icon", name);
- }
- }
- export { material_icon };
|