UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

34 lines (33 loc) 620 B
import { createClasses } from "@hitachivantara/uikit-react-utils"; const { staticClasses, useClasses } = createClasses( "HvVerticalNavigationHeader", { root: { width: "100%", display: "flex", marginTop: "12px", alignItems: "center" }, minimized: { justifyContent: "center", paddingRight: 0 }, collapseButton: { marginLeft: "auto", color: "inherit", "&$minimized": { marginLeft: 0 } }, backButton: { color: "inherit" }, title: { color: "inherit" } } ); export { staticClasses, useClasses };