12345678910111213 |
- import { Component, Input } from '@angular/core';
- @Component({
- selector: 'app-progess',
- templateUrl: './progess.component.html',
- styleUrls: ['./progess.component.scss'],
- })
- export class ProgessComponent {
- @Input() color: string = 'white';
- @Input() value: number = 0;
- @Input() showSpan: boolean = false;
- }
|