UNPKG

naive-ui

Version:

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

12 lines (11 loc) 427 B
import type { ThemeCommonVars } from '../../_styles/common'; import type { Theme } from '../../_mixins'; export declare const self: (vars: ThemeCommonVars) => { textColor: string; color: string; fontWeight: string; }; export type DividerThemeVars = ReturnType<typeof self>; declare const dividerLight: Theme<'Divider', DividerThemeVars>; export default dividerLight; export type DividerTheme = typeof dividerLight;