2015-04-28 18:17:00 -07:00
|
|
|
import {Component} from 'angular2/src/core/annotations_impl/annotations';
|
|
|
|
import {View} from 'angular2/src/core/annotations_impl/view';
|
2015-02-17 11:56:24 -08:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'md-progress-circular'
|
|
|
|
})
|
|
|
|
@View({
|
|
|
|
templateUrl: 'angular2_material/src/components/progress-circular/progress_circular.html'
|
|
|
|
})
|
|
|
|
export class MdProgressCircular {
|
|
|
|
constructor() {
|
|
|
|
}
|
|
|
|
}
|