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.
22 lines (21 loc) • 467 B
TypeScript
export interface KeepCarouselTheme {
carouselContainer: string;
viewport: string;
controls: {
wrapper: string;
button: {
container: string;
wrapper: string;
svg: string;
};
indicators: {
container: string;
dot: string;
};
};
item: {
container: string;
slide: string;
};
}
export declare const carouselTheme: KeepCarouselTheme;