UNPKG

@kitten-science/kitten-scientists

Version:

Add-on for the wonderful incremental browser game: https://kittensgame.com/web/

15 lines 459 B
import { ListItem } from "./ListItem.js"; import styles from "./ToolbarListItem.module.css"; export class ToolbarListItem extends ListItem { constructor(parent, options) { super(parent, options); this.element.addClass(styles.toolbar); } toString() { return `[${ToolbarListItem.name}#${this.componentId}]`; } addChild(child) { return super.addChild(child); } } //# sourceMappingURL=ToolbarListItem.js.map