UNPKG

318 BTypeScriptView Raw
1import React from "react";
2
3/**
4 * Render the button elements in the calendar.
5 *
6 * @group Components
7 * @see https://daypicker.dev/guides/custom-components
8 */
9export function Button(props: JSX.IntrinsicElements["button"]) {
10 return <button {...props} />;
11}
12
13export type ButtonProps = Parameters<typeof Button>[0];