⚒️ Design improvements.

This commit is contained in:
pheralb
2022-07-06 19:52:52 +01:00
parent 4c9b92ba5a
commit 3817e19f53
5 changed files with 30 additions and 12 deletions
+5
View File
@@ -6,11 +6,16 @@ export interface CustomLinkProps {
href: string;
children: React.ReactNode;
external?: boolean;
font?: string;
mr?: string;
ml?: string;
}
export interface CustomIconBtnProps {
title: string;
icon: React.ReactElement;
mr?: string;
ml?: string;
onClick?: () => void;
}