@hitachivantara/uikit-react-lab
Version:
Contributed React components for the NEXT UI Kit.
17 lines (16 loc) • 409 B
JavaScript
import { createClasses, theme } from "@hitachivantara/uikit-react-core";
const { staticClasses, useClasses } = createClasses("HvFlowEmpty", {
root: {
width: "100%",
height: "100%",
alignItems: "center",
justifyContent: "center",
backgroundColor: theme.colors.backgroundColor,
position: "absolute",
zIndex: theme.zIndices.popover
}
});
export {
staticClasses,
useClasses
};