12 lines
316 B
TypeScript
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;
|
|
}
|