@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
40 lines (39 loc) • 656 B
JavaScript
//#region src/pagination/theme.ts
const base = {
fontWeight: 400,
lineHeight: "125%",
size: "sm",
variant: "tertiary",
intent: "brand"
};
const baseStyle = {
button: {
...base,
minW: 24
},
ellipsis: { ...base },
goToPage: { ...base },
prevNext: { ...base },
results: { color: "sandstone.30" }
};
const defaultProps = {};
const parts = [
"container",
"button",
"ellipsis",
"goToPage",
"navigation",
"prevNext",
"results"
];
const variants = {};
var theme_default = {
baseStyle,
defaultProps,
parts,
variants
};
//#endregion
export { theme_default as default };
globalThis.__vuiVersion__ = "5.3.1"
//# sourceMappingURL=theme.js.map