]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/helper/helper.component.ts
0028945ba6ca0fbbc958d008ce413212b3b8e8e3
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / helper / helper.component.ts
1 import { Component, Input } from '@angular/core';
2
3 import { Icons } from '~/app/shared/enum/icons.enum';
4
5 @Component({
6 selector: 'cd-helper',
7 templateUrl: './helper.component.html',
8 styleUrls: ['./helper.component.scss']
9 })
10 export class HelperComponent {
11 @Input()
12 class: string;
13
14 @Input()
15 html: any;
16
17 icons = Icons;
18 }