Full reformat
This commit is contained in:
15
src/app/modules/link/link.component.ts
Normal file
15
src/app/modules/link/link.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { Component, Input } from "@angular/core";
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
selector: "app-link",
|
||||
imports: [CommonModule],
|
||||
templateUrl: "./link.component.html",
|
||||
styleUrls: ["./link.component.less"],
|
||||
})
|
||||
export class LinkComponent {
|
||||
@Input() url: string = "#";
|
||||
@Input() svg: string = "";
|
||||
@Input() text: string = "";
|
||||
}
|
||||
Reference in New Issue
Block a user