@cgi-learning-hub/ui
Version:
@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features
36 lines (35 loc) • 782 B
JavaScript
import { styled as t, Box as o } from "@mui/material";
const r = "50px", i = t(o, {
shouldForwardProp: (e) => e !== "maxHeight"
})(({ maxHeight: e }) => ({
maxHeight: typeof e == "number" ? `${e}px` : e,
overflowY: "auto"
})), p = {
display: "flex",
flexDirection: "column"
}, l = {
display: "flex",
alignItems: "center",
width: "100%",
margin: "4px 0",
padding: "8px"
}, a = {
display: "flex",
marginLeft: "auto"
}, d = {
borderLeft: "1px solid var(--theme-palette-divider)",
paddingLeft: "15px",
marginLeft: "18px"
}, x = {
width: "24px",
height: "24px"
};
export {
r as DEFAULT_CHILDREN_INDENT,
i as TreeContainer,
a as arrowContainerStyle,
d as expandedGroupStyle,
x as iconStyle,
l as treeContentStyle,
p as treeItemRootStyle
};