UNPKG

@deepkit/desktop-ui

Version:

Library for desktop UI widgets in Angular 10+

19 lines (16 loc) 505 B
/* * Deepkit Framework * Copyright (C) 2021 Deepkit UG, Marc J. Schmidt * * This program is free software: you can redistribute it and/or modify * it under the terms of the MIT License. * * You should have received a copy of the MIT License along with this program. */ import { Component } from '@angular/core'; @Component({ selector: 'dui-window-footer', template: '<ng-content></ng-content>', styleUrls: ['./window-footer.component.scss'] }) export class WindowFooterComponent { }