UNPKG

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