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.
20 lines (19 loc) • 461 B
TypeScript
import type { HTMLAttributes } from "vue";
type StyledElement<T = HTMLAttributes["class"]> = {
datePickerHeader?: T;
prevBtn?: T;
datePickerHeading?: T;
nextBtn?: T;
datePickerBody?: T;
MonthContainer?: T;
weekContainer?: T;
weekHeader?: T;
weekLabel?: T;
dateContainer?: T;
dateRow?: T;
dateBody?: T;
dateCell?: T;
dateTrigger?: T;
};
export type classesType = Partial<StyledElement<string>>;
export {};