nexpi-ui
Version:
An elegant and minimalist Next.js 14 component library
18 lines (17 loc) • 402 B
TypeScript
export interface ThemeOptions {
primaryColor?: string;
secondaryColor?: string;
secondaryLightColor?: string;
backgroundColor?: string;
shadowColor?: string;
secondaryShadowColor?: string;
borderRadius?: string;
lineHeight?: number;
fontFamily?: string;
}
export interface NavItem {
name: string;
icon?: string;
path: string;
subItems?: NavItem[];
}