@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
23 lines (22 loc) • 578 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
const { staticClasses, useClasses } = createClasses("HvDialog-Action", {
root: {
margin: 0,
padding: theme.space.sm,
backgroundColor: "inherit",
borderTop: `1px solid ${theme.colors.border}`,
height: 65,
maxHeight: 65
},
fullscreen: { position: "fixed", width: "100%", bottom: 0, left: 0 },
spacing: {
"& > :not(:first-of-type)": {
marginLeft: theme.space.xs
}
}
});
export {
staticClasses,
useClasses
};