27 lines
663 B
JavaScript
27 lines
663 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = void 0;
|
||
|
var _internal = require("../../theme/internal");
|
||
|
// =============================== Base ===============================
|
||
|
const genBaseStyle = token => {
|
||
|
const {
|
||
|
componentCls,
|
||
|
colorText,
|
||
|
fontSize,
|
||
|
lineHeight,
|
||
|
fontFamily
|
||
|
} = token;
|
||
|
return {
|
||
|
[componentCls]: {
|
||
|
color: colorText,
|
||
|
fontSize,
|
||
|
lineHeight,
|
||
|
fontFamily
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
// ============================== Export ==============================
|
||
|
var _default = exports.default = (0, _internal.genComponentStyleHook)('App', token => [genBaseStyle(token)]);
|