UNPKG

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.

33 lines (32 loc) 738 B
export interface KeepAccordionContainerTheme { base: string; open: string; } export interface KeepAccordionContentTheme { base: string; } export interface KeepAccordionIconTheme { base: string; rotated: { full: string; half: string; }; } export interface KeepAccordionPanelTheme { flush: { on: string; off: string; }; } export interface KeepAccordionTitleTheme { base: string; } interface KeepAccordionTheme { container: KeepAccordionContainerTheme; content: KeepAccordionContentTheme; icon: KeepAccordionIconTheme; panel: KeepAccordionPanelTheme; title: KeepAccordionTitleTheme; } export declare const accordionTheme: KeepAccordionTheme; export {};