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.
14 lines (13 loc) • 390 B
TypeScript
export type NotificationPosition = "topLeft" | "topCenter" | "topRight" | "bottomLeft" | "bottomRight";
interface KeepNotificationTheme {
base: string;
position: {
topLeft: string;
topCenter: string;
topRight: string;
bottomLeft: string;
bottomRight: string;
};
}
export declare const notificationTheme: KeepNotificationTheme;
export {};