UNPKG

naive-ui

Version:

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

24 lines 542 B
import { commonDark } from "../../_styles/common/index.mjs"; const badgeDark = { name: 'Badge', common: commonDark, self(vars) { const { errorColorSuppl, infoColorSuppl, successColorSuppl, warningColorSuppl, fontFamily } = vars; return { color: errorColorSuppl, colorInfo: infoColorSuppl, colorSuccess: successColorSuppl, colorError: errorColorSuppl, colorWarning: warningColorSuppl, fontSize: '12px', fontFamily }; } }; export default badgeDark;