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.
19 lines (18 loc) • 396 B
TypeScript
export interface ToolTipTheme {
base: string;
color: {
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
};
arrowColor: {
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
};
}
export declare const toolTipTheme: ToolTipTheme;