mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { Component, Input } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'text-spinner',
|
|
templateUrl: './text-spinner.component.html',
|
|
styleUrls: ['./text-spinner.component.scss'],
|
|
})
|
|
export class TextSpinnerComponent {
|
|
@Input() text = ''
|
|
}
|