UNPKG

naive-ui

Version:

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

21 lines (20 loc) 665 B
import type { ThemeCommonVars } from '../../_styles/common'; import type { Theme } from '../../_mixins'; export declare function self(vars: ThemeCommonVars): { borderRadius: string; fontSize: string; border: string; heightTiny: string; heightSmall: string; heightMedium: string; heightLarge: string; heightHuge: string; color: string; colorModal: string; colorPopover: string; }; export type AvatarThemeVars = ReturnType<typeof self>; declare const avatarLight: Theme<'Avatar', AvatarThemeVars>; export default avatarLight; export type AvatarTheme = typeof avatarLight; export type AvatarGroupTheme = typeof avatarLight;