mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
18 lines
344 B
TypeScript
18 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() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|