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.
30 lines (29 loc) • 577 B
TypeScript
export type ProgressSizeVariant = {
sm: string;
md: string;
lg: string;
xl: string;
"2xl": string;
};
export interface ProgressThemeInterface {
circle: {
root: string;
svg: {
base: string;
circle: string;
g: string;
gCircle: string;
};
};
line: {
root: string;
progress: {
base: string;
bar: string;
};
text: {
base: string;
};
};
}
export declare const progressTheme: ProgressThemeInterface;