Skip to main content
Version: next

Type Alias: ModifiersClassNames

ModifiersClassNames = Record<string, string>

Defined in: src/types/shared.ts:301

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
};