UNPKG

naive-ui

Version:

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

15 lines (14 loc) 492 B
import type { ThemeCommonVars } from '../../_styles/common'; import { type Theme } from '../../_mixins'; declare const self: (vars: ThemeCommonVars) => { color: string; colorEnd: string; borderRadius: string; heightSmall: string; heightMedium: string; heightLarge: string; }; export type SkeletonThemeVars = ReturnType<typeof self>; export declare const skeletonLight: Theme<'Skeleton', SkeletonThemeVars>; export type SkeletonTheme = typeof skeletonLight; export {};