]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
a7ec87da07993f7d19833dd2bec092a89b12c643
[ceph-ci.git] /
1 import { Component, Input } from '@angular/core';
2 import { Icons } from '~/app/shared/enum/icons.enum';
3
4 @Component({
5   selector: 'cd-rgw-sync-data-info',
6   templateUrl: './rgw-sync-data-info.component.html',
7   styleUrls: ['./rgw-sync-data-info.component.scss']
8 })
9 export class RgwSyncDataInfoComponent {
10   icons = Icons;
11
12   @Input()
13   zone: any = {};
14
15   constructor() {}
16 }