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.
32 lines (31 loc) • 562 B
TypeScript
interface KeepPaginationTheme {
root: {
base: string;
};
list: {
base: string;
};
item: {
base: string;
shape: {
rounded: string;
circle: string;
};
active: {
on: string;
off: string;
};
};
goto: {
base: string;
};
navigator: {
base: string;
shape: {
rounded: string;
circle: string;
};
};
}
export declare const paginationTheme: KeepPaginationTheme;
export {};