@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
13 lines (12 loc) • 328 B
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
//#region src/StepNavigation/SimpleNavigation/utils.ts
var dotSizes = {
xs: 8,
sm: 10,
md: 12,
lg: 14,
xl: 16
};
var getColor$1 = (state) => state === "Disabled" ? theme.colors.textDisabled : theme.colors.text;
//#endregion
export { dotSizes, getColor$1 as getColor };