@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
49 lines (48 loc) • 793 B
JavaScript
//#region src/tabs/theme.ts
const baseStyle = {};
const defaultProps = {};
const parts = ["tabsNavBar"];
const sizes = {
sm: { tabsNavBar: {
borderWidth: "2px",
fontSize: "xs",
h: "20px",
py: "4px"
} },
md: { tabsNavBar: {
borderWidth: "2px",
fontSize: "sm",
h: "32px",
py: "6px"
} },
lg: { tabsNavBar: {
borderWidth: "3px",
fontSize: "md",
h: 40,
py: "8px"
} },
xl: { tabsNavBar: {
borderWidth: "4px",
fontSize: "lg",
h: 48,
py: "10px"
} },
xxl: { tabsNavBar: {
borderWidth: "4px",
fontSize: "lg",
h: 56,
py: "12px"
} }
};
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