first commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import {CYAN_THEME} from "~/theme/LightTheme";
|
||||
|
||||
export type ConfigProps = {
|
||||
Sidebar_drawer: any;
|
||||
Customizer_drawer: boolean;
|
||||
mini_sidebar: boolean;
|
||||
setHorizontalLayout: boolean;
|
||||
setRTLLayout: boolean;
|
||||
actTheme: string;
|
||||
boxed: boolean;
|
||||
setBorderCard: boolean;
|
||||
};
|
||||
|
||||
const config: ConfigProps = {
|
||||
Sidebar_drawer: null,
|
||||
Customizer_drawer: false,
|
||||
mini_sidebar: false,
|
||||
setHorizontalLayout: false, // Horizontal layout
|
||||
setRTLLayout: false, // RTL layout
|
||||
actTheme: 'RSSA_THEME',
|
||||
boxed: true,
|
||||
setBorderCard: false
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user