Full reformat

This commit is contained in:
2024-03-09 14:05:35 +03:00
parent 9ad38ab3cd
commit 4d09e6ee11
28 changed files with 331 additions and 118 deletions

View 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 = "";
}