import { Component, Input } from '@angular/core'; @Component({ selector: 'sam-progress-bar', template: '', styles: [` progress[value] { -webkit-appearance: none; appearance: none; height: 18px; border: 1px solid black; padding: 1px; width: 100%; } progress[value]::-webkit-progress-bar { background-color: transparent; } progress[value]::-webkit-progress-value { background-color: dodgerblue; border-color: transparent; } `] }) export class SamProgress { /** * Sets the current progress value */ @Input() value: number = 0; /** * Sets the max progress value */ @Input() max: number = 1; }