feat: nitroplus translate. Needs to fix

This commit is contained in:
2024-06-20 16:55:57 +03:00
parent 7cc5cbaac3
commit 0d6a56c9a3
48 changed files with 765 additions and 69 deletions

View File

@@ -0,0 +1,15 @@
import { CommonModule } from '@angular/common';
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
@Component({
selector: 'nwui-button',
templateUrl: './button.component.html',
styleUrls: ['./button.component.scss'],
standalone: true,
imports: [CommonModule],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NWUIButtonComponent {
@Input() disabled = false;
@Input() type = 'button';
}