mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
17 lines
467 B
TypeScript
17 lines
467 B
TypeScript
import { Component, Input } from '@angular/core'
|
|
import { StatusRendering } from 'src/app/services/pkg-status-rendering.service'
|
|
|
|
@Component({
|
|
selector: 'status',
|
|
templateUrl: './status.component.html',
|
|
styleUrls: ['./status.component.scss'],
|
|
})
|
|
export class StatusComponent {
|
|
@Input() rendering: StatusRendering
|
|
@Input() size?: string
|
|
@Input() style?: string = 'regular'
|
|
@Input() weight?: string = 'normal'
|
|
@Input() disconnected?: boolean = false
|
|
}
|
|
|