@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
14 lines (13 loc) • 409 B
JavaScript
import { createClasses, theme } from "@hitachivantara/uikit-react-core";
//#region src/Flow/Empty/Empty.styles.tsx
var { staticClasses, useClasses } = createClasses("HvFlowEmpty", { root: {
width: "100%",
height: "100%",
alignItems: "center",
justifyContent: "center",
backgroundColor: theme.colors.bgPage,
position: "absolute",
zIndex: theme.zIndices.popover
} });
//#endregion
export { useClasses };