progess.component.ts 318 B

12345678910111213
  1. import { Component, Input } from '@angular/core';
  2. @Component({
  3. selector: 'app-progess',
  4. templateUrl: './progess.component.html',
  5. styleUrls: ['./progess.component.scss'],
  6. })
  7. export class ProgessComponent {
  8. @Input() color: string = 'white';
  9. @Input() value: number = 0;
  10. @Input() showSpan: boolean = false;
  11. }