first commit
This commit is contained in:
37
types/dashboard/index.ts
Executable file
37
types/dashboard/index.ts
Executable file
@@ -0,0 +1,37 @@
|
||||
/*Revenue Projects*/
|
||||
type RevenueProjects={
|
||||
img: string;
|
||||
leadname: string;
|
||||
designation: string;
|
||||
projectname: string;
|
||||
statuscolor: string;
|
||||
statustext: string;
|
||||
money: string;
|
||||
};
|
||||
|
||||
// Daily Activities
|
||||
type DailyActivities = {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
textcolor: string;
|
||||
boldtext: boolean;
|
||||
line: boolean;
|
||||
link: string;
|
||||
url: string;
|
||||
};
|
||||
|
||||
/*Card types*/
|
||||
type BlogCards = {
|
||||
avatar: string;
|
||||
coveravatar: string;
|
||||
read: string;
|
||||
title: string;
|
||||
link: string;
|
||||
category: string;
|
||||
name: string;
|
||||
view: string;
|
||||
comments: string;
|
||||
time: string;
|
||||
};
|
||||
|
||||
export type{RevenueProjects,DailyActivities,BlogCards}
|
||||
31
types/themeTypes/ThemeType.ts
Executable file
31
types/themeTypes/ThemeType.ts
Executable file
@@ -0,0 +1,31 @@
|
||||
export type ThemeTypes = {
|
||||
name: string;
|
||||
dark: boolean;
|
||||
variables?: object;
|
||||
colors: {
|
||||
primary?: string;
|
||||
secondary?: string;
|
||||
info?: string;
|
||||
success?: string;
|
||||
warning?: string;
|
||||
error?: string;
|
||||
lightprimary?: string;
|
||||
lightsecondary?: string;
|
||||
lightsuccess?: string;
|
||||
lighterror?: string;
|
||||
lightinfo?: string;
|
||||
lightwarning?: string;
|
||||
textPrimary?: string;
|
||||
textSecondary?: string;
|
||||
borderColor?: string;
|
||||
hoverColor?: string;
|
||||
containerBg?: string;
|
||||
background?: string;
|
||||
surface?: string;
|
||||
grey100?: string;
|
||||
grey200?: string;
|
||||
darkgray?: string;
|
||||
light?: string;
|
||||
muted?: string;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user