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.
20 lines (19 loc) • 468 B
JavaScript
export const spinnerTheme = {
base: "inline animate-spin text-gray-200",
color: {
failure: "fill-red-600",
gray: "fill-gray-600",
info: "fill-blue-600",
pink: "fill-pink-600",
purple: "fill-purple-600",
success: "fill-green-500",
warning: "fill-yellow-400",
},
size: {
xs: "w-3 h-3",
sm: "w-4 h-4",
md: "w-6 h-6",
lg: "w-8 h-8",
xl: "w-10 h-10",
},
};