]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
5dada0aecb90cecce96c6bf78865247ca9d4c59a
[ceph.git] /
1 import { Component, Input } from '@angular/core';
2
3 @Component({
4   selector: 'cd-warning-panel',
5   templateUrl: './warning-panel.component.html',
6   styleUrls: ['./warning-panel.component.scss']
7 })
8 export class WarningPanelComponent {
9   /**
10    * The title to be displayed. Defaults to 'Warning'.
11    * @type {string}
12    */
13   @Input() title = 'Warning';
14 }