@hitachivantara/uikit-react-core
Version:
UI Kit Core React components.
16 lines (15 loc) • 534 B
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
import { createClasses } from "@hitachivantara/uikit-react-utils";
//#region src/Pagination/Select.styles.tsx
var { 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 }
});
//#endregion
export { useClasses };