UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

18 lines (17 loc) 400 B
import * as React from "react"; import "./style"; export interface INavbarProps { [key: string]: any; maxDate: Date; minDate: Date; month: Date | null; nextMonth: Date | null; onNextClick: () => void; onPreviousClick: () => void; onManuallyChangeMonth?: () => void; } /** * 日期选择 Navbar */ declare const Navbar: React.FC<INavbarProps>; export default Navbar;