mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
17 lines
344 B
TypeScript
17 lines
344 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-hover-enlarge-image',
|
|
templateUrl: './hover-enlarge-image.component.html',
|
|
styleUrls: ['./hover-enlarge-image.component.scss']
|
|
})
|
|
export class HoverEnlargeImageComponent implements OnInit {
|
|
|
|
showOverlay = false;
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|