@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
32 lines (31 loc) • 614 B
JavaScript
//#region src/dialog/theme.ts
const baseStyle = { closeButton: { "--vui-dismiss-fg": "var(--vui-action-brand-solid)" } };
const defaultProps = { size: "md" };
const parts = [
"container",
"body",
"cancelButton",
"closeButton",
"footer",
"header",
"icon",
"submitButton",
"title"
];
const sizes = {
md: { container: { maxW: 520 } },
lg: { container: { maxW: 640 } },
fullWidth: {}
};
const variants = {};
var theme_default = {
baseStyle,
defaultProps,
parts,
sizes,
variants
};
//#endregion
export { theme_default as default };
globalThis.__vuiVersion__ = "5.3.1"
//# sourceMappingURL=theme.js.map