@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
28 lines (27 loc) • 652 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
const { useClasses, staticClasses } = createClasses(
"HvSnackbarProvider",
{
snackItemRoot: {
backgroundColor: "transparent !important",
boxShadow: "none !important",
"&&": {
color: "inherit",
padding: "0",
fontSize: "inherit",
boxShadow: "none",
alignItems: "center",
fontFamily: "inherit",
fontWeight: "inherit",
lineHeight: "inherit",
borderRadius: 0,
letterSpacing: "inherit",
backgroundColor: "inherit"
}
}
}
);
export {
staticClasses,
useClasses
};