⚒️ Project structure.

This commit is contained in:
pheralb
2022-06-04 23:48:13 +01:00
parent be4eae31af
commit 427f4a2d30
41 changed files with 4732 additions and 302 deletions
+21
View File
@@ -0,0 +1,21 @@
export interface LayoutProps {
children: React.ReactNode;
}
export interface CustomLinkProps {
href: string;
children: React.ReactNode;
external?: boolean;
}
export interface CustomIconBtnProps {
title: string;
icon: React.ReactElement;
onClick?: () => void;
}
export interface SVGCardProps {
title: string;
svg: string;
url: string;
}