⚒️ Improvements & new features.

This commit is contained in:
pheralb
2022-06-24 13:33:12 +01:00
parent 6e31f5d88e
commit 23c85cb8ed
12 changed files with 160 additions and 18 deletions
+13 -2
View File
@@ -15,9 +15,11 @@ export interface CustomIconBtnProps {
}
export interface SVGCardProps {
title: string;
id: number;
svg: string;
url: string;
title: string;
href?: string;
url?: string;
}
export interface SidebarContentProps {
@@ -26,3 +28,12 @@ export interface SidebarContentProps {
borderRight?: string;
children?: React.ReactNode;
}
export interface LoadingProps {
text: string;
}
export interface ErrorProps {
title: string;
description: string;
}