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

22 lines
386 B
JavaScript

import { commonLight } from "../../_styles/common/index.mjs";
function self(vars) {
const {
heightSmall,
heightMedium,
heightLarge,
borderRadius
} = vars;
return {
color: '#eee',
colorEnd: '#ddd',
borderRadius,
heightSmall,
heightMedium,
heightLarge
};
}
export const skeletonLight = {
name: 'Skeleton',
common: commonLight,
self
};