@flanksource/clicky-ui
Version:
Flanksource Clicky UI — React component library built on shadcn/ui with light/dark and density theming.
15 lines (14 loc) • 411 B
JavaScript
const SIZE_TOKENS = ["xs", "sm", "md", "lg", "xl"];
const SIZE_SCALE = {
compact: { xs: 14, sm: 18, md: 24, lg: 36, xl: 48 },
comfortable: { xs: 16, sm: 20, md: 28, lg: 40, xl: 56 },
spacious: { xs: 20, sm: 24, md: 32, lg: 48, xl: 64 }
};
function resolveSize(size, density = "comfortable") {
return SIZE_SCALE[density][size];
}
export {
SIZE_TOKENS,
resolveSize
};
//# sourceMappingURL=size.js.map