2024-08-02 18:19:39 +08:00

17 lines
575 B
TypeScript

import type { ThemeCommonVars } from '../../../_styles/common';
import type { Theme } from '../../../_mixins';
export declare function self(vars: ThemeCommonVars): {
height: string;
width: string;
borderRadius: string;
color: string;
colorHover: string;
railInsetHorizontal: string;
railInsetVertical: string;
railColor: string;
};
export type ScrollbarThemeVars = ReturnType<typeof self>;
declare const scrollbarLight: Theme<'Scrollbar', ScrollbarThemeVars>;
export default scrollbarLight;
export type ScrollbarTheme = typeof scrollbarLight;