mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-22 13:07:07 +00:00
16 lines
371 B
TypeScript
Executable File
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;
|
|
}
|