videoflix/frontend/src/app/shared/components/buttons/btn-small/btn-small.component.ts
2024-08-14 09:28:09 +02:00

13 lines
324 B
TypeScript

import { Component, Input } from '@angular/core';
@Component({
selector: 'app-btn-small',
standalone: true,
imports: [],
templateUrl: './btn-small.component.html',
styleUrl: './btn-small.component.scss',
})
export class BtnSmallComponent {
@Input() imgPath: string = '';
@Input() disabled: boolean = false;
}