@hitachivantara/uikit-react-lab
Version:
Contributed React components for the NEXT UI Kit.
36 lines (35 loc) • 621 B
JavaScript
import { createClasses, theme } from "@hitachivantara/uikit-react-core";
const { staticClasses, useClasses } = createClasses("HvStep", {
root: {
width: "fit-content",
height: "fit-content",
fontWeight: theme.fontWeights.semibold
},
notCurrent: { margin: "-8px" },
xs: {},
sm: {},
md: {},
lg: {},
xl: {},
avatar: {
"&$xs": {
fontSize: "0.625rem"
},
"&$sm": {
fontSize: "1rem"
},
"&$md": {
fontSize: "1.5rem"
},
"&$lg": {
fontSize: "2rem"
},
"&$xl": {
fontSize: "2.5rem"
}
}
});
export {
staticClasses,
useClasses
};