All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
17 lines
399 B
TypeScript
17 lines
399 B
TypeScript
import {Component, Input} from '@angular/core';
|
|
import {IStatistics} from '../../../models/color.map';
|
|
|
|
@Component({
|
|
selector: 'fm-map-statistics-details',
|
|
templateUrl: './statistics-details.component.html',
|
|
styles: ['.nopadding{\n' +
|
|
' padding: 0 !important;\n' +
|
|
' margin: 0 !important;\n' +
|
|
'}']
|
|
})
|
|
export class StatisticsDetailsComponent {
|
|
|
|
@Input()
|
|
statistics: IStatistics;
|
|
}
|