Files
paperless-ngx/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts

20 lines
348 B
TypeScript
Raw Normal View History

import { Component, Input } from '@angular/core'
2020-11-22 22:35:39 +01:00
@Component({
2023-09-14 14:03:28 -07:00
selector: 'pngx-widget-frame',
2020-11-22 22:35:39 +01:00
templateUrl: './widget-frame.component.html',
styleUrls: ['./widget-frame.component.scss'],
2020-11-22 22:35:39 +01:00
})
2022-12-15 22:48:16 -08:00
export class WidgetFrameComponent {
constructor() {}
2020-11-22 22:35:39 +01:00
@Input()
title: string
@Input()
loading: boolean = false
@Input()
draggable: any
2020-11-22 22:35:39 +01:00
}