@hitachivantara/uikit-react-lab
Version:
Contributed React components for the NEXT UI Kit.
14 lines (13 loc) • 398 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const uikitStyles = require("@hitachivantara/uikit-styles");
const dotSizes = {
xs: 8,
sm: 10,
md: 12,
lg: 14,
xl: 16
};
const getColor = (state) => state === "Disabled" ? uikitStyles.theme.colors.textDisabled : uikitStyles.theme.colors.text;
exports.dotSizes = dotSizes;
exports.getColor = getColor;