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

15 lines
491 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
declare function self(vars: ThemeCommonVars): {
color: string;
colorEnd: string;
borderRadius: string;
heightSmall: string;
heightMedium: string;
heightLarge: string;
};
export type SkeletonThemeVars = ReturnType<typeof self>;
export declare const skeletonLight: Theme<'Skeleton', SkeletonThemeVars>;
export type SkeletonTheme = typeof skeletonLight;
export {};