12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
import { LitElement } from '@lion/core';
|
|
import { ChoiceGroupMixin, FormGroupMixin } from '@lion/form-core';
|
|
|
|
/**
|
|
* A wrapper around multiple checkboxes
|
|
*/
|
|
export class LionCheckboxGroup extends ChoiceGroupMixin(FormGroupMixin(LitElement)) {
|
|
constructor() {
|
|
super();
|
|
this.multipleChoice = true;
|
|
}
|
|
}
|