UNPKG

awv3

Version:
13 lines (10 loc) 324 B
import Element from '../element'; export default class Checkbox extends Element { constructor(plugin, options) { super(plugin, { type: Element.Type.Checkbox, value: false, format: Checkbox.Format.Default, ...options }); } static Format = { Default: 'Default', Switch: 'Switch' }; }