UNPKG

@hitachivantara/uikit-react-lab

Version:

Contributed React components to UI Kit by the community.

29 lines (28 loc) 783 B
import { createClasses, theme } from "@hitachivantara/uikit-react-core"; //#region src/Flow/Sidebar/SidebarGroup/SidebarGroup.styles.tsx var { staticClasses, useClasses } = createClasses("HvFlowSidebarGroup", { root: { padding: theme.space.sm, borderRadius: theme.radii.round, borderWidth: "1px", borderTopWidth: "3px" }, titleContainer: { display: "flex", justifyContent: "space-between" }, labelContainer: { display: "flex", alignItems: "center" }, icon: { paddingRight: theme.space.xs }, descriptionContainer: { padding: `${theme.space.xs} 0 ${theme.space.sm} calc(32px + ${theme.space.xs})` }, itemsContainer: { display: "flex", flexDirection: "column", gap: theme.space.xs, paddingLeft: theme.space.sm } }); //#endregion export { useClasses };