first chrome implementation
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Component, Input } from '@angular/core';
|
||||
import { IconButtonComponent } from "../icon-button/icon-button.component";
|
||||
|
||||
@Component({
|
||||
// eslint-disable-next-line @angular-eslint/component-selector
|
||||
selector: 'lib-nav-item',
|
||||
imports: [IconButtonComponent],
|
||||
templateUrl: './nav-item.component.html',
|
||||
styleUrl: './nav-item.component.scss',
|
||||
})
|
||||
export class NavItemComponent {
|
||||
@Input({ required: true }) text!: string;
|
||||
}
|
||||
Reference in New Issue
Block a user