Files
wgenerator/src/app/widget-modules/components/button/button.component.ts
2022-11-12 14:54:34 +01:00

12 lines
316 B
TypeScript

import {Component, Input} from '@angular/core';
import {IconProp} from '@fortawesome/fontawesome-svg-core';
@Component({
selector: 'app-button',
templateUrl: './button.component.html',
styleUrls: ['./button.component.less'],
})
export class ButtonComponent {
@Input() public icon: IconProp | null = null;
}