UNPKG

@hitachivantara/uikit-react-lab

Version:

Contributed React components to UI Kit by the community.

18 lines (17 loc) 633 B
import { createClasses, outlineStyles, theme } from "@hitachivantara/uikit-react-core"; //#region src/Flow/Sidebar/SidebarGroup/SidebarGroupItem/SidebarGroupItem.styles.tsx var { staticClasses, useClasses } = createClasses("HvFlowSidebarGroupItem", { root: { display: "flex", alignItems: "center", justifyContent: "space-between", border: `1px solid ${theme.colors.border}`, padding: theme.spacing(0, 0, 0, "sm"), cursor: "pointer", boxShadow: `0 1px 0 ${theme.colors.shad1}`, "&:focus-visible": { ...outlineStyles } }, dragging: { borderColor: theme.colors.primaryStrong } }); //#endregion export { useClasses };