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.
9 lines (8 loc) • 405 B
TypeScript
import type { ComputedRef } from "vue";
declare const useProvideTooltip: (color: ComputedRef<"primary" | "secondary" | "success" | "warning" | "error">) => {
color: ComputedRef<"primary" | "secondary" | "success" | "warning" | "error">;
};
declare function useTooltip(): {
color: ComputedRef<"primary" | "secondary" | "success" | "warning" | "error">;
};
export { useProvideTooltip, useTooltip };