@hitachivantara/uikit-react-pentaho
Version:
UI Kit Pentaho React components.
41 lines (40 loc) • 981 B
JavaScript
import { createClasses, theme } from "@hitachivantara/uikit-react-core";
const { staticClasses, useClasses } = createClasses("HvCanvasToolbar", {
root: {
width: `calc(100% - var(--sidepanel-width) - 2 * ${theme.space.sm})`,
height: 54,
display: "flex",
alignItems: "center",
borderRadius: theme.radii.full,
backgroundColor: theme.colors.bgContainer,
position: "absolute",
right: theme.space.sm,
top: 0
},
back: {
borderRadius: `${theme.radii.full} 0 0 ${theme.radii.full}`,
minWidth: 68,
backgroundColor: theme.colors.bgHover,
height: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center"
},
title: {
display: "flex",
alignItems: "center",
padding: theme.spacing(0, "md"),
height: "100%",
flexGrow: 1
},
actions: {
display: "flex",
flexWrap: "nowrap",
overflow: "auto",
paddingRight: theme.space.md
}
});
export {
staticClasses,
useClasses
};