react-day-picker
Version:
Customizable Date Picker for React
20 lines • 634 B
JavaScript
import React from "react";
/**
* Render the button for a day in the calendar.
*
* When not interactive, DayPicker will render a `DayContent` component instead
* of a `DayButton` component.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function DayButton(props) {
const { day, modifiers, ...buttonProps } = props;
const ref = React.useRef(null);
React.useEffect(() => {
if (modifiers.focused)
ref.current?.focus();
}, [modifiers.focused]);
return React.createElement("button", { ref: ref, ...buttonProps });
}
//# sourceMappingURL=DayButton.js.map