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.
23 lines (22 loc) • 454 B
TypeScript
interface KeepDrawerTheme {
content: {
base: string;
position: {
top: string;
bottom: string;
left: string;
right: string;
};
};
bar: {
base: string;
position: {
top: string;
bottom: string;
left: string;
right: string;
};
};
}
export declare const keepDrawerTheme: KeepDrawerTheme;
export {};