Files
fuse-angular/src/assets/angular-material-examples/slide-toggle-configurable/slide-toggle-configurable-example.ts
Sercan Yemen f4636d9a37 Update Angular, Angular Material and Flex Layout to 6
Updated additional project files
Updated Angular Material examples
2018-05-04 19:28:20 +03:00

16 lines
371 B
TypeScript
Executable File

import {Component} from '@angular/core';
/**
* @title Configurable slide-toggle
*/
@Component({
selector: 'slide-toggle-configurable-example',
templateUrl: 'slide-toggle-configurable-example.html',
styleUrls: ['slide-toggle-configurable-example.css'],
})
export class SlideToggleConfigurableExample {
color = 'accent';
checked = false;
disabled = false;
}