11 lines
176 B
TypeScript
11 lines
176 B
TypeScript
import {Directive} from 'angular2/angular2';
|
|
|
|
@Directive({selector: '[md-theme]'})
|
|
export class MdTheme {
|
|
color: string;
|
|
|
|
constructor() {
|
|
this.color = 'sky-blue'
|
|
}
|
|
}
|