first commit
This commit is contained in:
19
src/app/_layout/blockui/block-template.component.ts
Normal file
19
src/app/_layout/blockui/block-template.component.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-block-temp',
|
||||
styles: [`
|
||||
:host {
|
||||
text-align: center;
|
||||
}
|
||||
`],
|
||||
template: `
|
||||
<div class="block-ui-template">
|
||||
<i class="feather ft-refresh-cw icon-spin font-medium-2" aria-hidden="true"></i>
|
||||
<div><strong>{{message}}</strong></div>
|
||||
</div>
|
||||
`
|
||||
})
|
||||
export class BlockTemplateComponent {
|
||||
message: any;
|
||||
}
|
||||
Reference in New Issue
Block a user