@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
15 lines (14 loc) • 489 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-core";
import { theme as theme$1 } from "@hitachivantara/uikit-styles";
//#region src/Wizard/WizardTitle/WizardTitle.styles.tsx
var { staticClasses, useClasses } = createClasses("HvWizardTitle", {
root: {
backgroundColor: theme$1.colors.bgPage,
justifyContent: "space-between",
paddingRight: theme$1.space.sm
},
summaryButton: {},
stepContainer: { margin: "auto" }
});
//#endregion
export { staticClasses, useClasses };