@rxflow/base
Version:
BaseFlow - 核心 Flow 组件库
23 lines (21 loc) • 575 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getThemeWithDefaultValue = void 0;
/*
* @author: yanxianliang
* @date: 2025-05-17 16:12
* @desc: 默认主题获取函数
*
* Copyright (c) 2025 by yanxianliang, All Rights Reserved.
*/
const getThemeWithDefaultValue = theme => {
return {
...theme,
fontSize: theme?.fontSize ?? 14,
fontFamily: theme?.fontFamily ?? 'Arial, helvetica, sans-serif',
primaryColor: theme?.primaryColor ?? '#5F95FF'
};
};
exports.getThemeWithDefaultValue = getThemeWithDefaultValue;