@hitachivantara/uikit-react-lab
Version:
Contributed React components for the NEXT UI Kit.
24 lines (23 loc) • 615 B
JavaScript
import { createClasses, theme, outlineStyles } from "@hitachivantara/uikit-react-core";
const { staticClasses, useClasses } = createClasses(
"HvFlowSidebarGroupItem",
{
root: {
display: "flex",
alignItems: "center",
justifyContent: "space-between",
border: `1px solid ${theme.colors.atmo4}`,
padding: theme.spacing(0, 0, 0, "sm"),
cursor: "pointer",
boxShadow: `0 1px 0 ${theme.colors.shad1}`,
"&:focus-visible": {
...outlineStyles
}
},
dragging: { borderColor: theme.colors.primary_80 }
}
);
export {
staticClasses,
useClasses
};