UNPKG

@aplus-frontend/ui

Version:

28 lines (27 loc) 715 B
import { GenStyleFunc } from '../../design-token/interface'; import { ComputedRef } from 'vue'; export type ScrollbarToken = { /** * 滚动条滑块颜色 */ scrollBarBarColor: string; /** * 滚动条轨道颜色 */ scrollBarTrackColor: string; /** * 滚动条轨道禁用时的颜色 */ scrollBarTrackDisabledColor: string; /** * 滚动条滑块宽度(高度) */ scrollBarBarWidth: number; /** * 滚动条轨道宽度(高度) */ scrollBarTrackWidth: number; }; export declare const genScrollbarStyle: GenStyleFunc<ScrollbarToken>; declare const _default: (prefixCls: string) => ComputedRef<string>; export default _default;