@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
22 lines (21 loc) • 515 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
const { useClasses } = createClasses("HvPaginationSelect", {
root: {},
header: {
backgroundColor: "transparent",
borderColor: theme.colors.textSubtle,
"&:hover": {
borderColor: theme.colors.textSubtle
}
},
selection: {
padding: theme.spacing(0, "md", 0, "xs")
},
headerOpen: {
backgroundColor: theme.colors.bgContainer
}
});
export {
useClasses
};