22 lines
388 B
JavaScript
22 lines
388 B
JavaScript
|
import { commonLight } from "../../_styles/common/index.mjs";
|
||
|
const 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
|
||
|
};
|