Files
start-os/ui/src/app/components/status/status.component.ts
2022-01-21 20:35:52 -07:00

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
}