UNPKG

paella-core

Version:
24 lines (18 loc) 507 B
import ButtonPlugin from 'paella-core/js/core/ButtonPlugin'; import PaellaCorePlugins from './PaellaCorePlugins'; import testIcon from 'paella-core/icons/screen.svg'; export default class NonInteractiveButton extends ButtonPlugin { getPluginModuleInstance() { return PaellaCorePlugins.Get(); } async load() { this.icon = testIcon; this.title = "aa" } get interactive() { return false; } get dynamicWidth() { return false; } }