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>
Install the component:
npm i @logo-software/checkbox -s
Once installed, import the component in your application:
@NgModule({
imports: [CommonModule, CheckboxModule],
})