@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
42 lines (41 loc) • 719 B
JavaScript
//#region src/table/theme.ts
const baseStyle = { th: {
fontSize: 14,
fontWeight: 500,
color: "darkBlue.main"
} };
const defaultProps = {
size: "lg",
variant: "bordered"
};
const parts = [
"container",
"sortIcon",
"tbody",
"td",
"tfoot",
"th",
"thead",
"tr"
];
const sizes = {
lg: { tr: { h: 48 } },
md: { tr: { h: 40 } },
sm: { tr: { h: 32 } }
};
const variants = {
bordered: { td: { borderBottom: "1px solid sandstone.90" } },
striped: {},
basic: { td: { borderBottom: "1px solid sandstone.90" } }
};
var theme_default = {
baseStyle,
defaultProps,
parts,
sizes,
variants
};
//#endregion
export { theme_default as default };
globalThis.__vuiVersion__ = "5.3.1"
//# sourceMappingURL=theme.js.map