@hitachivantara/uikit-react-core
Version:
UI Kit Core React components.
21 lines (20 loc) • 564 B
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
import { createClasses } from "@hitachivantara/uikit-react-utils";
//#region src/Drawer/Drawer.styles.tsx
var { staticClasses, useClasses } = createClasses("HvDrawer", {
root: {},
paper: {
backgroundColor: theme.colors.bgContainer,
padding: 0,
overflow: "auto",
boxShadow: theme.colors.shadow
},
background: { backgroundColor: theme.colors.bgOverlay },
closeButton: {
position: "absolute",
top: theme.space.sm,
right: theme.space.sm
}
});
//#endregion
export { staticClasses, useClasses };