@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
33 lines (32 loc) • 845 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
import { outlineStyles } from "../utils/focusUtils.js";
const { staticClasses, useClasses } = createClasses("HvButtonBase", {
root: {
display: "inline-flex",
cursor: "pointer",
background: "none",
padding: 0,
// Background color common for almost all variants
":where(:not($disabled))": {
":hover, :focus-visible": {
backgroundColor: theme.colors.bgHover
}
},
":focus-visible": {
...outlineStyles
},
// Default button - no size specified
fontFamily: theme.fontFamily.body,
fontSize: "inherit",
color: "inherit"
},
disabled: {
cursor: "not-allowed",
color: theme.colors.textDisabled
}
});
export {
staticClasses,
useClasses
};