@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
17 lines (16 loc) • 435 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
const { staticClasses, useClasses } = createClasses("HvHeader-Brand", {
root: { display: "flex", alignItems: "center" },
separator: {
width: 1,
height: theme.space.sm,
margin: theme.space.xs,
backgroundColor: theme.colors.text
},
brandName: {}
});
export {
staticClasses,
useClasses
};