UNPKG

naive-ui

Version:

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

11 lines (10 loc) 424 B
import type { ThemeCommonVars } from '../../../_styles/common'; import type { Theme } from '../../../_mixins'; export declare const self: (vars: ThemeCommonVars) => { color: string; colorHover: string; }; export type ScrollbarThemeVars = ReturnType<typeof self>; declare const scrollbarLight: Theme<'Scrollbar', ScrollbarThemeVars>; export default scrollbarLight; export type ScrollbarTheme = typeof scrollbarLight;