@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
27 lines (26 loc) • 586 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
const { staticClasses, useClasses } = createClasses("HvNavigation", {
root: {
display: "flex",
alignItems: "center",
justifyContent: "space-between",
gap: theme.space.xs
},
icon: {},
disabled: {},
text: {
minWidth: "unset",
flex: 1,
color: theme.colors.text,
fontWeight: theme.typography.body.fontWeight,
padding: 0
},
textWithoutHover: {
pointerEvents: "none"
}
});
export {
staticClasses,
useClasses
};