UNPKG

ipsos-components

Version:

Material Design components for Angular

17 lines (15 loc) 392 B
import {Component} from '@angular/core'; /** * @title Configurable checkbox */ @Component({ selector: 'checkbox-configurable-example', templateUrl: 'checkbox-configurable-example.html', styleUrls: ['checkbox-configurable-example.css'], }) export class CheckboxConfigurableExample { checked = false; indeterminate = false; align = 'start'; disabled = false; }