UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

25 lines 481 B
import { commonLight } from "../../_styles/common/index.mjs"; 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: commonLight, self }; export default badgeLight;