naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
22 lines (21 loc) • 577 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const common_1 = require("../../_styles/common");
function self(vars) {
const { errorColor, infoColor, successColor, warningColor, fontFamily } = vars;
return {
color: errorColor,
colorInfo: infoColor,
colorSuccess: successColor,
colorError: errorColor,
colorWarning: warningColor,
fontSize: '12px',
fontFamily
};
}
const badgeLight = {
name: 'Badge',
common: common_1.commonLight,
self
};
exports.default = badgeLight;
;