16 lines
666 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.self = self;
2024-08-02 18:19:39 +08:00
const common_1 = require("../../../_styles/common");
const common_2 = require("./common");
function self(vars) {
const { scrollbarColor, scrollbarColorHover, scrollbarHeight, scrollbarWidth, scrollbarBorderRadius } = vars;
return Object.assign(Object.assign({}, common_2.commonVars), { height: scrollbarHeight, width: scrollbarWidth, borderRadius: scrollbarBorderRadius, color: scrollbarColor, colorHover: scrollbarColorHover });
}
2024-01-29 09:26:07 +08:00
const scrollbarLight = {
name: 'Scrollbar',
common: common_1.commonLight,
2024-08-02 18:19:39 +08:00
self
2024-01-29 09:26:07 +08:00
};
exports.default = scrollbarLight;