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.
33 lines (32 loc) • 811 B
TypeScript
export declare const badgeTheme: {
base: string;
color: {
base: {
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
};
border: {
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
};
background: {
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
};
};
};
type BadgeVariants = (options?: {
color?: keyof typeof badgeTheme.color.base;
variant?: keyof typeof badgeTheme.color;
}) => string;
declare const badgeVariants: BadgeVariants;
export { badgeVariants };