UNPKG

299 BTypeScriptView Raw
1import React from "react";
2
3/**
4 * Component wrapping the footer.
5 *
6 * @group Components
7 * @see https://daypicker.dev/guides/custom-components
8 */
9export function Footer(props: JSX.IntrinsicElements["div"]) {
10 return <div {...props} />;
11}
12
13export type FooterProps = Parameters<typeof Footer>[0];