Finish Project

This commit is contained in:
2026-02-04 11:00:00 +01:00
parent 544fd29a8c
commit 4063d7ac3c
60 changed files with 1573 additions and 103 deletions

View File

@@ -0,0 +1,10 @@
import {LinkProps} from "next/link";
import React, {AnchorHTMLAttributes} from "react";
import {Url} from "next/dist/shared/lib/router/router";
export interface CustomLinkProps extends LinkProps, Omit<AnchorHTMLAttributes<HTMLAnchorElement>, keyof LinkProps> {
children?: React.ReactNode
type?: "button" | "submit" | "reset"
typeStyle?: "primary" | "secondary" | "tertiary"
link?: Url
}