Files
wgenerator/src/app/widget-modules/components/button/button.component.ts
2025-01-02 15:01:59 +01:00

13 lines
337 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'],
standalone: false,
})
export class ButtonComponent {
@Input() public icon: IconProp | null = null;
}