import { widget } from "interface/widget.js"; class icon extends widget { constructor(target, name = undefined) { super(target, "icon", name); } change(target) { this._content = target; } } export { icon };