keep-vue
Version:
Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.
24 lines (23 loc) • 469 B
TypeScript
export type SpinnerColorVariant = {
failure: string;
gray: string;
info: string;
pink: string;
purple: string;
success: string;
warning: string;
};
export type SpinnerSizeVariant = {
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
};
interface KeepSpinnerTheme {
base: string;
color: SpinnerColorVariant;
size: SpinnerSizeVariant;
}
export declare const spinnerTheme: KeepSpinnerTheme;
export {};