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.
17 lines (16 loc) • 339 B
TypeScript
export interface KeepEmptyTheme {
root: RootTheme;
title: KeepTitleTheme;
description: KeepDescriptionTheme;
}
export interface KeepDescriptionTheme {
base: string;
}
export interface KeepTitleTheme {
base: string;
}
interface RootTheme {
base: string;
}
export declare const emptyTheme: KeepEmptyTheme;
export {};