17 lines
575 B
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import type { ThemeCommonVars } from '../../../_styles/common';
import type { Theme } from '../../../_mixins';
2024-08-02 18:19:39 +08:00
export declare function self(vars: ThemeCommonVars): {
height: string;
width: string;
borderRadius: string;
2024-01-29 09:26:07 +08:00
color: string;
colorHover: string;
2024-08-02 18:19:39 +08:00
railInsetHorizontal: string;
railInsetVertical: string;
railColor: string;
2024-01-29 09:26:07 +08:00
};
export type ScrollbarThemeVars = ReturnType<typeof self>;
declare const scrollbarLight: Theme<'Scrollbar', ScrollbarThemeVars>;
export default scrollbarLight;
export type ScrollbarTheme = typeof scrollbarLight;