@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
21 lines (20 loc) • 539 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
const { staticClasses, useClasses } = createClasses("HvLoadingContainer", {
root: {
position: "relative",
height: "inherit"
},
loading: {
position: "absolute",
userSelect: "none",
inset: 0,
zIndex: theme.zIndices.overlay,
transition: "background-color .2s ease",
backgroundColor: theme.alpha("bgContainer", "var(--opacity, 80%)")
}
});
export {
staticClasses,
useClasses
};