@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
27 lines (26 loc) • 652 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
const { staticClasses, useClasses } = createClasses("HvMonthSelector", {
calendarMonthlyGrid: {
display: "grid",
gridTemplateColumns: "repeat(3, 1fr)",
zIndex: "10",
alignContent: "center"
},
rangeModeWidth: {},
normalWidth: {},
calendarMonthlyCell: {
display: "flex",
justifyContent: "center",
alignItems: "center",
height: "40px",
width: "92px"
},
calendarMonthlyCellSelected: {
backgroundColor: theme.colors.bgPageSecondary
}
});
export {
staticClasses,
useClasses
};