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