@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
25 lines (24 loc) • 605 B
JavaScript
import { createClasses, theme } from "@hitachivantara/uikit-react-core";
//#region src/StepNavigation/DefaultNavigation/Step/Step.styles.tsx
var { 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" }
}
});
//#endregion
export { useClasses };