UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

17 lines (16 loc) 436 B
import { createClasses } from "@hitachivantara/uikit-react-utils"; import { theme } from "@hitachivantara/uikit-styles"; const { useClasses, staticClasses } = createClasses("HvPanel", { root: { position: "relative", padding: theme.space.sm, borderColor: theme.colors.border, backgroundColor: theme.colors.bgContainer, overflow: "auto", borderRadius: "inherit" } }); export { staticClasses, useClasses };