@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
10 lines (9 loc) • 332 B
TypeScript
import { GuiTheme } from './guiTheme';
interface WithGuiTheme {
theme?: GuiTheme;
}
declare const guiTheme: (customColor?: any) => any;
declare const createGuiTheme: (customColor?: any) => import("@mui/material/styles").Theme;
export default createGuiTheme;
export { guiTheme, WithGuiTheme };
export type { GuiTheme };