UNPKG

naive-ui

Version:

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

11 lines (10 loc) 317 B
import type { Theme } from '../../_mixins'; declare function self(): { gapSmall: string; gapMedium: string; gapLarge: string; }; export type FlexThemeVars = ReturnType<typeof self>; declare const flexLight: Theme<'Flex', FlexThemeVars>; export default flexLight; export type FlexTheme = typeof flexLight;