import { Component, OnInit, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'onguard-info-table', templateUrl: './info-table.component.html', styleUrls: ['./info-table.component.scss'], encapsulation: ViewEncapsulation.None }) export class InfoTableComponent implements OnInit { constructor() { } ngOnInit(): void { } }