UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

31 lines (30 loc) 928 B
import { NeutralColors, PrimaryColors } from "../styles/customTheme.mjs"; import "../styles/index.mjs"; import { CSSProperties } from "react"; import { CustomStylishParams, CustomTokenParams, ThemeProviderProps } from "antd-style"; //#region src/ThemeProvider/type.d.ts interface ThemeProviderProps$1 extends ThemeProviderProps<any> { className?: string; customFonts?: string[]; customStylish?: (theme: CustomStylishParams) => { [key: string]: any; }; customTheme?: { neutralColor?: NeutralColors; primaryColor?: PrimaryColors; }; customToken?: (theme: CustomTokenParams) => { [key: string]: any; }; enableCustomFonts?: boolean; enableGlobalStyle?: boolean; style?: CSSProperties; } interface MetaProps { description?: string; title?: string; withManifest?: boolean; } //#endregion export { MetaProps, ThemeProviderProps$1 as ThemeProviderProps }; //# sourceMappingURL=type.d.mts.map