import { ITheme } from "../../types"; export interface IBaseThemeProviderProps { defaultTheme?: ITheme; themeMeta?: Partial; } export interface IThemeTokenMeta { /** * 品牌色 */ colorPrimary: string; /** * 边框圆角 */ borderRadius: number; /** * 疏密度(间距) */ spacing: number; }