@logo-software/checkbox
v11.0.0
Published
Logo Elements Design System Button library is a web component library which is extended from Vaadin Button Web Component.
Downloads
2
Readme
@logo-software/checkbox
A form element that representing a binary choice.
<logo-checkbox [label]="'Checked'" [checked]="true"></logo-checkbox>
<logo-checkbox [label]="'Unchecked'" [checked]="false"></logo-checkbox>
<logo-checkbox [label]="'Disabled'" [disabled]="true"></logo-checkbox>
Installation
Install the component:
npm i @logo-software/checkbox -s
Once installed, import the component in your application:
@NgModule({
imports: [CommonModule, CheckboxModule],
})