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.
43 lines (42 loc) • 985 B
TypeScript
export interface DividerColorVariant {
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
}
export interface DividerSizeVariant {
sm: string;
md: string;
lg: string;
xl: string;
"2xl": string;
}
interface DividerThemeInterface {
withOutChildren: {
base: string;
color: DividerColorVariant;
size: DividerSizeVariant;
};
withChildren: {
base: string;
textColor: DividerColorVariant;
size: {
start: DividerSizeVariant;
center: DividerSizeVariant;
end: DividerSizeVariant;
};
color: {
start: DividerColorVariant;
center: DividerColorVariant;
end: DividerColorVariant;
};
variant: {
start: string;
end: string;
center: string;
};
};
}
export declare const dividerTheme: DividerThemeInterface;
export {};