Type Alias: ModifiersClassNames
ModifiersClassNames:
Record
<string
,string
>
The classnames to assign to each day element matching a modifier.
Example​
const modifiersClassNames: ModifiersClassNames = {
today: "today", // Use the "today" class for the today's day
selected: "highlight", // Use the "highlight" class for the selected day
weekend: "weekend" // Use the "weekend" class for the weekend days
};