UNPKG

x-data-spreadsheet

Version:
12 lines (10 loc) 307 B
import { Element } from './element'; import { cssPrefix } from '../config'; import { t } from '../locale/locale'; export default class Button extends Element { // type: primary constructor(title, type = '') { super('div', `${cssPrefix}-button ${type}`); this.child(t(`button.${title}`)); } }