Type Alias: ClassNames
ClassNames: { [key in UI | SelectionState | DayFlag]: string }
The CSS classnames to use for the UI elements, the SelectionState and the DayFlag.
Example
const classNames: ClassNames = {
[UI.Root]: "root",
[UI.Outside]: "outside",
[UI.Nav]: "nav"
// etc.
};